-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathicarReproPregnancyCheckEventResource.json
45 lines (43 loc) · 1.33 KB
/
icarReproPregnancyCheckEventResource.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
{
"description": "Pregnancy diagnosis or check event.",
"allOf": [{
"$ref": "../resources/icarAnimalEventCoreResource.json"
},
{
"type": "object",
"properties": {
"method": {
"$ref": "../enums/icarReproPregnancyMethodType.json",
"description": "Method by which diagnosis was carried out."
},
"result": {
"$ref": "../enums/icarReproPregnancyResultType.json",
"description": "Result - unknown, empty, pregnant."
},
"foetalAge": {
"type": "integer",
"description": "Assessed age of the foetus or length of the pregnancy (in days)."
},
"foetusCount": {
"type": "integer",
"description": "If specified, contains the number of foetuses observed."
},
"foetusCountMale": {
"type": "integer",
"description": "If specified, contains number of foetuses observed as male."
},
"foetusCountFemale": {
"type": "integer",
"description": "If specified, contains number of foetuses observed as female."
},
"exceptions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Additional local observations - such as ABNORMAL CALF"
}
}
}
]
}