-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathicarStatisticsResource.json
50 lines (48 loc) · 1.43 KB
/
icarStatisticsResource.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
{
"description": "Describes the statistics for a certain location.",
"allOf": [
{
"$ref": "../resources/icarResource.json"
},
{
"type": "object",
"required": [
"id",
"location",
"purpose",
"dateFrom",
"dateTo",
"group"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier on location level in the source system for this statistics."
},
"location": {
"$ref": "../types/icarLocationIdentifierType.json",
"description": "Unique location scheme and identifier combination."
},
"purpose": {
"$ref": "../enums/icarStatisticsPurposeType.json",
"description": "Defines the purpose for these statistics."
},
"dateFrom": {
"$ref": "../types/icarDateType.json",
"description": "The start of the period for which statistics are calculated."
},
"dateTo": {
"$ref": "../types/icarDateType.json",
"description": "The end of the period for which statistics are calculated."
},
"group": {
"description": "An array of groups for which statistics are calculated, each of which has statistics for that group.",
"type": "array",
"items": {
"$ref": "../types/icarStatisticsGroupType.json"
}
}
}
}
]
}