summaryrefslogtreecommitdiffstats
path: root/tests/auto/daemon/json-validation/required-schema.json
blob: 881e295bdcdf135e64c39ae373041e071e76edaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
    "description": "check if a required property exists",
    "type": "object",
    "properties": {
        "important": {
            "required": true
        },
        "notimportant": {
            "required": false
        }
    }
}