-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathicarReproParturitionEventResource.json
49 lines (47 loc) · 1.7 KB
/
icarReproParturitionEventResource.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
{
"description": "Event for recording parturition (calving, lambing, kidding, fawning).",
"allOf": [{
"$ref": "../resources/icarAnimalEventCoreResource.json"
},
{
"type": "object",
"properties": {
"isEmbryoImplant": {
"type": "boolean",
"description": "True if the progeny is the result of an embryo implant."
},
"damParity": {
"type": "integer",
"description": "The calving, litter, or other parturition number for the dam"
},
"liveProgeny": {
"type": "integer",
"description": "The number of live offspring from the parturition. Important if progeny are not identified."
},
"totalProgeny": {
"type": "integer",
"description": "The total number of offspring from the parturition, including those born dead."
},
"calvingEase": {
"$ref": "../enums/icarReproCalvingEaseType.json",
"description": "Calving ease (enum corresponds to traditional 1-5 values)."
},
"progenyDetails": {
"type": ["array","null"],
"items": {
"$ref": "../resources/icarProgenyDetailsResource.json"
},
"description": "List of progeny details. May not be fully identified, but recommend that gender and status are supplied at least."
},
"progeny": {
"type": ["array", "null"],
"deprecated": true,
"items": {
"$ref": "../resources/icarAnimalCoreResource.json"
},
"description": "List of progeny. May not be fully identified, but recommend that gender and status are supplied at least."
}
}
}
]
}