-
Notifications
You must be signed in to change notification settings - Fork 27
/
icarCarcassObservationsEventResource.json
41 lines (40 loc) · 1.7 KB
/
icarCarcassObservationsEventResource.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
{
"description": "An individual animal event in which a set of observations on a carcass, side or primal are recorded by an operator at a specified date-time.",
"allOf": [
{
"$ref": "../resources/icarAnimalEventCoreResource.json"
},
{
"type": "object",
"properties": {
"carcass": {
"description": "The carcass being observed.",
"$ref": "../types/icarCarcassType.json"
},
"observations": {
"type": "array",
"description": "The array of observations performed in this event",
"items": {
"$ref": "../types/icarCarcassObservationType.json"
}
},
"side": {
"description": "The side of the carcass observed in this event (use Both if not split).",
"$ref": "../enums/icarCarcassSideType.json"
},
"primal": {
"description": "Identifies the primal being observed (`Total` if not split).",
"$ref": "../enums/icarCarcassPrimalType.json"
},
"carcassState": {
"description": "Indicates whether the observation event is on the hot or cold (chilled) carcass.",
"$ref": "../enums/icarCarcassStateType.json"
},
"device": {
"description": "Identifies the device used for performing the observations in this event.",
"$ref": "../resources/icarDeviceResource.json"
}
}
}
]
}