@poseidat/schemas
Version:
The core schemas for the PoseiDAT data interchange formats
31 lines (30 loc) • 999 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://poseidat.org/schema/core/fishing-gear-shot.json",
"description": "A gear shot event details",
"title": "Fishing gear shot",
"properties": {
"date": {
"description": "The datetime the gear shot took place. GBR: DATI, NLD2: DA + TI, NLD3: DA",
"type": "string",
"format": "date-time"
},
"location": {
"$ref": "https://poseidat.org/schema/core/measurement/position.json",
"description": "The geographical location where the gear shot took place"
},
"identifier": {
"description": "The identification tag attached to the retrieved gear. NLD: NI, GBR: GBRGNFN",
"type": "string"
},
"country_zones": {
"description": "Indicator of where zone fishing will be commencing. Data recorded in accordance with Norwegian requirements. Known as GBRZO",
"type": "string"
}
},
"required": [
"data",
"location"
],
"type": "object"
}