wildlifeInteractionType
Description
Used to record interactions with or observations of wildlife.
Properties
Name | Description | Required | Type |
---|---|---|---|
SpeciesObserved | Identifies the wildlife species observed and optionally their quantity. | Yes | Array of speciesQuantityType |
AnimalsObserved | Records details of the individual wildlife animals observed. | No | Array of observedAnimal |
Observer | The observer on board. | No | string |
GearCode | The code of the gear. | No | string |
Examples
Example 1
{
"speciesObserved": [
{
"species": "species",
"grade": "grade",
"weight": {
"units": "KGM",
"measurement": 0.0,
"resolution": 0.0
},
"count": 0
}
],
"animalsObserved": [
{
"species": "species",
"natureInteraction": "natureInteraction",
"status": "Alive",
"fate": "Injured",
"bandOrTag": "bandOrTag",
"comments": "comments"
}
],
"observer": "observer",
"gearCode": "gearCode"
}