-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathicarLactationResource.json
70 lines (67 loc) · 2.43 KB
/
icarLactationResource.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"description": "Lactation information of an animal.",
"allOf": [{
"$ref": "icarResource.json"
},
{
"type": "object",
"required": [
"id",
"animal"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier in the source system for this event."
},
"animal": {
"$ref": "../types/icarAnimalIdentifierType.json",
"description": "Unique animal scheme and identifier combination."
},
"beginDate": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC date of the beginning of the lactation (see https://ijmacd.github.io/rfc3339-iso8601/ for format guidance)."
},
"endDate": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC end date of the the lactation. This occurs when the animal is dried off, dies or calves again."
},
"parity": {
"type": "number",
"description": "The parity of the animal during this lactation."
},
"lactationLength": {
"type": "number",
"description": "The length of the lactation until this moment."
},
"milkAmount": {
"$ref": "../types/icarTraitAmountType.json",
"description": "The amount of milk produced in this lactation."
},
"fatAmount": {
"$ref": "../types/icarTraitAmountType.json",
"description": "The amount of fat produced in this lactation."
},
"proteinAmount": {
"$ref": "../types/icarTraitAmountType.json",
"description": "The amount of protein produced in this lactation."
},
"lactosisAmount": {
"$ref": "../types/icarTraitAmountType.json",
"description": "The amount of lactosis produced in this lactation."
},
"lastTestDay": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RCF3339 UTC date of the last test day in the lactation (see https://ijmacd.github.io/rfc3339-iso8601/ for format guidance)."
},
"lactationType": {
"$ref": "../enums/icarLactationType.json",
"description": "This type of lactation based on lactation length that is delivered."
},
"milkRecordingMethod": {
"$ref": "../types/icarMilkRecordingMethodType.json"
}
}
}
]
}