# Les paramètres occurrence

Les occurences sont obligatoire, elles permettent d'indiquer le nombre de règle à vérifier et valider, il est donc indispensables de les mettre. Dans nos deux exemple ci dessous, la première condition est présente 12 fois dans le dataset. et le ddeuxieme condition est présente 7394 fois dans le dataset.

```yaml
[
    {
        "conditions": {
            "all": [
                {
                    "name": "bool1",
                    "operator": "is_false",
                    "value" : true
                }
            ]
        },
        "actions": [
            {
                "name": "nothing"
            }
        ],
        "occurrences": 12
    },
    
    {
        "conditions": {
            "all": [
                {
                    "name": "bool1",
                    "operator": "is_false",
                    "value" : true
                }
            ]
        },
        "actions": [
            {
                "name": "nothing"
            }
        ],
        "occurrences": 7394
    }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dataset-generation-doc.gitbook.io/dataset-generation-doc/moteur-de-regle-en-json/les-parametres-occurrence.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
