-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathicarGroupEventCoreResource.json
37 lines (34 loc) · 1.35 KB
/
icarGroupEventCoreResource.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
{
"description": "Extends icarEventCoreResource to support event observations on groups of animals.",
"allOf": [
{
"$ref": "../resources/icarEventCoreResource.json"
},
{
"type": "object",
"required": ["groupMethod"],
"properties": {
"groupMethod": {
"$ref": "../enums/icarGroupEventMethodType.json",
"description": "Indicates whether the event references an existing animal set, has an embedded animal set, or an inventory classification."
},
"countObserved": {
"type": "integer",
"description": "Summarises the number of animals observed in the event. Generally the number of animals in the group, but sometimes a sample."
},
"inventoryClassification": {
"$ref": "../types/icarInventoryClassificationType.json",
"description": "Describe the group of animals by their characteristics rather than animal identifiers."
},
"embeddedAnimalSet": {
"$ref": "../resources/icarAnimalSetResource.json",
"description": "Specifies the set of animals as a list of member animal identifiers."
},
"animalSetReference": {
"$ref": "../types/icarAnimalSetReferenceType.json",
"description": "Reference an existing animal set by ID and optionally URI"
}
}
}
]
}