summaryrefslogtreecommitdiffstats
path: root/verigraph/src/main/webapp/json/vpnaccess.json
blob: 907118dcf5e635002625648c10783e94caa2a9fe (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": "Vpn Access",
    "description": "Polito Vpn Access",
    "type": "array",
    "items": {
        "type": "object",
        "properties": {
            "vpnexit": {
                "description": "Vpn Exit",
                "type": "string"
            }
        },
        "additionalProperties": false,
        "required": [
            "vpnexit"
        ]
    },
    "minItems": 1,
    "maxItems": 1,
    "uniqueItems": true
}