summaryrefslogtreecommitdiff
path: root/test/schemas/country.json
blob: 730eb0d6376ff68b3b6d5d48b674614ce9a436b3 (plain)
1
2
3
4
5
6
7
8
9
10
{
    "$schema": "http://json-schema.org/draft-04/schema",
    "name": "Country",
    "properties": {
        "name": {"type": "string"},
        "population": {"type": "integer"},
        "overlord": { "$ref": "person.json#" }
    },
    "additionalProperties": false
}