@poseidat/schemas
Version:
The core schemas for the PoseiDAT data interchange formats
28 lines (27 loc) • 836 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://poseidat.org/schema/core/fishing-gear-retrieve.json",
"description": "A gear retrieve event details",
"title": "Fishing gear retrieve",
"properties": {
"date": {
"description": "The datetime the gear retrieve 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 retrieve took place"
},
"identifier": {
"description": "The identification tag attached to the retrieved gear. NLD: NI, GBR: GBRGNFN",
"type": "string"
}
},
"required": [
"data",
"location",
"identifier"
],
"type": "object"
}