-
Notifications
You must be signed in to change notification settings - Fork 6
/
Place.json
54 lines (54 loc) · 1.21 KB
/
Place.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
51
52
53
54
{
"$schema": "http://json-schema.org/schema#",
"title": "Place",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"address": {
"$ref": "#/definitions/PostalAddress"
},
"url": {
"type": "string",
"format": "uri"
},
"image": {
"type": "string",
"format": "uri"
},
"geo": {
"type": "object",
"anyOf": [
{
"elevation": { "type": "number"},
"latitude": { "type": "number"},
"longitude": { "type": "number"}
}, {
"box": { "type": "string"},
"circle": { "type": "string"},
"line": { "type": "string"},
"polygon": { "type": "string"}
}
]
}
},
"required": ["name"],
"definitions": {
"PostalAddress": {
"type": "object",
"properties": {
"streetAddress": { "type": "string" },
"addressRegion": { "type": "string" },
"addressLocality": { "type": "string" },
"addressCountry": { "type": "string" },
"postalCode": { "type": "string" }
},
"additionalProperties": false
}
},
"additionalProperties": false
}