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