summaryrefslogtreecommitdiffstats
path: root/verigraph/src/main/webapp/json/webclient.json
blob: dfbc55ec4a02ee1af9679489ba95fda70e3cbb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "Web client",
    "description": "Polito Web Client",
    "type": "array",
    "items": {
        "type": "object",
        "properties": {
            "webserver": {
                "description": "Web server name",
                "type": "string"
            }
        },
        "additionalProperties": false,
        "required": [
            "webserver"
        ]
    },
    "minItems": 1,
    "maxItems": 1,
    "uniqueItems": true
}