-
Notifications
You must be signed in to change notification settings - Fork 27
/
icarFeedRecommendationResource.json
51 lines (48 loc) · 1.64 KB
/
icarFeedRecommendationResource.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
{
"description": "An overview of the recommended feeding of animals",
"allOf": [{
"$ref": "../resources/icarResource.json"
},
{
"type": "object",
"required": [
"id",
"animal"
],
"properties": {
"id": {
"$ref": "../types/icarFeedRecommendationIdType.json",
"description": "Unique identifier in the source system for this recommendation."
},
"animal": {
"$ref": "../types/icarAnimalIdentifierType.json",
"description": "Unique animal scheme and identifier combination."
},
"recommendationDateTime ": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC timestamp of the recommendation (see https://ijmacd.github.io/rfc3339-iso8601/ for format guidance)."
},
"startDateTime": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC date of the beginning of the recommendation (see https://ijmacd.github.io/rfc3339-iso8601/ for format guidance)."
},
"endDateTime": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC end date of the recommendation (see https://ijmacd.github.io/rfc3339-iso8601/ for format guidance)."
},
"recommendedFeed": {
"type": "array",
"items": {
"$ref": "../types/icarRecommendedFeedType.json"
}
},
"recommendedRation": {
"type": "array",
"items": {
"$ref": "../types/icarRecommendedRationType.json"
}
}
}
}
]
}