-
Notifications
You must be signed in to change notification settings - Fork 27
/
icarGroupTreatmentEventResource.json
56 lines (54 loc) · 2.09 KB
/
icarGroupTreatmentEventResource.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
50
51
52
53
54
55
56
{
"description": "Defines a health treatment applied to a group of animals.",
"allOf": [
{
"$ref": "../resources/icarGroupEventCoreResource.json"
},
{
"type": "object",
"properties": {
"medicine": {
"$ref": "../types/icarMedicineReferenceType.json",
"description": "A reference to the medicine used (where applicable)."
},
"procedure": {
"type": "string",
"description": "Medicine application method or a non-medicine procedure."
},
"batches": {
"type": "array",
"items": {
"$ref": "../types/icarMedicineBatchType.json"
},
"description": "Batches and expiry details for the medicine administered."
},
"withdrawals": {
"type": "array",
"items": {
"$ref": "../types/icarMedicineWithdrawalType.json"
},
"description": "Withholding details for the treatment administered."
},
"dosePerAnimal": {
"$ref": "../types/icarMedicineDoseType.json",
"description": "The actual or average medicine dose administered per animal."
},
"totalMedicineUsed": {
"$ref": "../types/icarMedicineDoseType.json",
"description": "The total amount of medicine used."
},
"site": {
"type": "string",
"description": "Body site where the treatment was administered."
},
"positions": {
"type": "array",
"items": {
"$ref": "../types/icarPositionType.json"
},
"description": "The positions to be treated"
}
}
}
]
}