-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathicarLocationResource.json
38 lines (35 loc) · 1.29 KB
/
icarLocationResource.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
{
"description": "A location scheme / location id combination.",
"allOf": [
{
"$ref": "icarResource.json"
},
{
"type": "object",
"required": [
"identifier"
],
"properties": {
"identifier": {
"$ref": "../types/icarLocationIdentifierType.json",
"description": "Unique location scheme and identifier combination."
},
"alternativeIdentifiers": {
"type": "array",
"items": {
"$ref": "../types/icarLocationIdentifierType.json"
},
"description": "Alternative identifiers for the location. Must be a 1:1 mapping, meaning that when querying resources with an alternative identifier (instead of the 'main' identifier), the response may not be different."
},
"name": {
"type": "string",
"description": "The human readable name of the location."
},
"timeZoneId": {
"type": "string",
"description": "The time zone ID of the location according to the IANA time zone database (https://www.iana.org/time-zones), e.g. Europe/Paris. Can be used to convert UTC times in events, resources etc. back to the locations time zone while also taking daylight saving times into account."
}
}
}
]
}