forked from adewg/ICAR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicarMovementDeathEventResource.json
More file actions
49 lines (47 loc) · 1.71 KB
/
icarMovementDeathEventResource.json
File metadata and controls
49 lines (47 loc) · 1.71 KB
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
{
"description": "Event for recording animal death on farm.",
"allOf": [{
"$ref": "../resources/icarAnimalEventCoreResource.json"
},
{
"type": "object",
"properties": {
"deathReason": {
"$ref": "../enums/icarDeathReasonType.json",
"description": "Coded reasons for death including disease, parturition complications, consumption by humans or animals."
},
"explanation": {
"type": "string",
"description": "Free text explanation of the reason for death."
},
"disposalMethod": {
"$ref": "../enums/icarDeathDisposalMethodType.json",
"description": "Coded disposal methods including approved service, consumption by humans or animals, etc."
},
"disposalOperator": {
"type": "string",
"description": "Disposal operator official name (should really be schema.org/organization)."
},
"disposalReference": {
"type": "string",
"description": "Reference (receipt, docket, or ID) for disposal."
},
"consignment": {
"$ref": "../types/icarConsignmentType.json",
"description": "Identifies the consignment of the animal from the holding."
},
"deathMethod": {
"$ref": "../enums/icarDeathMethodType.json",
"description": "Defines the method of death, including an accident, natural causes, or euthanised."
},
"extendedReasons": {
"description": "Extended reason codes why this animal has died.",
"type": "array",
"items": {
"$ref": "../types/icarReasonIdentifierType.json"
}
}
}
}
]
}