@poseidat/schemas
Version:
The core schemas for the PoseiDAT data interchange formats
36 lines (35 loc) • 1.04 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://poseidat.org/schema/core/fishing-gear-loss.json",
"description": "A gear loss event details",
"title": "Fishing gear loss",
"properties": {
"date": {
"description": "The datetime the gear loss took place",
"type": "string",
"format": "date-time"
},
"location": {
"$ref": "https://poseidat.org/schema/core/measurement/position.json",
"description": "The geographical location where the gear loss took place"
},
"identifier": {
"description": "The identification tag attached to the lost gear. NLD: NI, GBR: GBRGNFN",
"type": "string"
},
"remarks": {
"description": "Free form text to describe the reason of the gear loss. NLD: VT, GBR: GBRCOM",
"type": "string"
},
"amount_lost": {
"description": "The amount of gear items lost, GBR: NN",
"type": "number"
}
},
"required": [
"data",
"location",
"identifier"
],
"type": "object"
}