summaryrefslogtreecommitdiffstats
path: root/verigraph/src/main/webapp/json/mailclient.json
blob: cacfd5f8862ef83b7b65a39c1ee0ebe7a31bd72b (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": "Mail Client",
    "description": "Polito Mail Client",
    "type": "array",
    "items": {
        "type": "object",
        "properties": {
            "mailserver": {
                "description": "Mail server name",
                "type": "string"
            }
        },
        "additionalProperties": false,
        "required": [
            "mailserver"
        ]
    },
    "minItems": 1,
    "maxItems": 1,
    "uniqueItems": true
}