-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathicarBreedingValueResource.json
41 lines (38 loc) · 1.12 KB
/
icarBreedingValueResource.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
{
"description": "Breeding values 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."
},
"base": {
"$ref": "../types/icarBVBaseIdentifierType.json",
"description": "The scheme and the id of the base of the breeding value."
},
"version": {
"type": "string",
"description": " string which sets the version for the breeding value estimation - this can be a date, or a version name, or something the calculation center is using to identify their seperate runs."
},
"breedingValues": {
"type": "array",
"items": {
"$ref": "../types/icarBreedingValueType.json"
}
}
}
}
]
}