forked from adewg/ICAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icarFeedResource.json
44 lines (41 loc) · 1.17 KB
/
icarFeedResource.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
{
"description": "Feeds available on a location.",
"allOf": [{
"$ref": "../resources/icarResource.json"
},
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier in the source system for this resource."
},
"category": {
"$ref": "../enums/icarFeedCategoryType.json",
"description": "The scheme and the id of the category of the feed."
},
"type": {
"$ref": "../types/icarFeedIdentifierType.json",
"description": "The scheme and the id of the type of the feed. ICAR recommends the use of the list of the scheme org.fao"
},
"name": {
"type": "string",
"description": "Name of the feed as it is known on the location."
},
"properties": {
"type": "array",
"items": {
"$ref": "../types/icarFeedPropertyType.json"
}
},
"active": {
"type": "boolean",
"description": "indicates whether the feed is or was available on the location."
}
}
}
]
}