-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathicarGroupFeedingEventResource.json
48 lines (47 loc) · 1.84 KB
/
icarGroupFeedingEventResource.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
{
"description": "Event for recording group or mob feeding. Allowances represent averages so this cannot be used to populate individual animal events.",
"type": "object",
"allOf": [
{
"$ref": "../resources/icarGroupEventCoreResource.json"
}
],
"properties": {
"feedingEndDateTime": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC moment from which animals could no longer consume the feed (eventDateTime represents the start of feed availability)."
},
"feedPerAnimal": {
"type": "array",
"items": {
"$ref": "../types/icarConsumedFeedType.json",
"description": "Gives the feed offered to and consumed per animal (average)."
}
},
"feedTotal": {
"description": "Gives the feed offered to and consumed (total for all animals).",
"type": "array",
"items": {
"$ref": "../types/icarConsumedFeedType.json"
}
},
"rationPerAnimal": {
"type": "array",
"items": {
"$ref": "../types/icarConsumedRationType.json",
"description": "Gives the ration offered to and consumed per animal (average)."
}
},
"rationTotal": {
"description": "Gives the feed offered to and consumed (total for all animals).",
"type": "array",
"items": {
"$ref": "../types/icarConsumedRationType.json"
}
},
"device": {
"$ref": "../types/icarDeviceReferenceType.json",
"description": "Optional information about a device used for the feeding, if relevant."
}
}
}