-
Notifications
You must be signed in to change notification settings - Fork 6
/
Person.json
50 lines (50 loc) · 933 Bytes
/
Person.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "http://json-schema.org/schema#",
"title": "Person",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"image": {
"type": "string",
"format": "uri"
},
"email": {
"type": "string",
"format": "email"
},
"birthDate": {
"type": "string",
"format": "date-time"
},
"birthPlace": {
"$ref": "Place.json"
},
"deathDate": {
"type": "string",
"format": "date-time"
},
"deathPlace": {
"$ref": "Place.json"
},
"affiliation": {
"$ref": "Organization.json"
},
"address": {
"oneOf": [
{ "type": "string" },
{ "$ref": "Place.json#/definitions/PostalAddress" }
]
}
},
"required": ["name"],
"additionalProperties": false
}