summaryrefslogtreecommitdiff
path: root/test/schemas/person.json
blob: e517a535fe6a84ef1b0680db304b0760a61c57b3 (plain)
1
2
3
4
5
6
7
8
9
10
{
    "$schema": "http://json-schema.org/draft-04/schema",
    "name": "Person",
    "type" : "object",
        "properties": {
            "title": { "type": "string" },
            "firstname": { "type": "string" },
            "lastname": { "type": "string" }
        }
}