summaryrefslogtreecommitdiff
path: root/tests/schemas/country.json
blob: 3b6b06cbf82a5b097b9dc9a2c348e943c05913ab (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
}