UNPKG

@poseidat/schemas

Version:

The core schemas for the PoseiDAT data interchange formats

99 lines (98 loc) 3.53 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://poseidat.org/schema/core/fishing-gear-deployment.json", "description": "Fishing gear deployment details", "title": "Fishing gear deployment", "properties": { "duration": { "description": "Number of minutes the gear was deployed. Known as DU", "type": "number" }, "unit_of_time": { "description": "The unit of time for measuring gear deployment. NLD: ET", "type": "string" }, "fishing_operations": { "description": "Number of fishing operations per 24 hour period: number of times gear is shot - does not apply to hooks, lines and pots. If no fishing operations took place then report 0. Known as FO", "type": "number" }, "fishing_depth": { "description": "Fishing depth. The distance from the water surface to the lowest part of the fishing gear, measured in meters. Applies to vessels working under deep sea permit and using towed gear, long lines or fixed nets. Known as FD", "type": "number" }, "gear_component_count": { "description": "Additional information relating to certain gear types e.g. liners = hooks, dredger = number of dredges. GBR: GBRFOX", "type": "number" }, "gear_specification": { "description": "Norwegian requirement - gear specification (trawls: 1=single, 2=double, 3=triple). GBR: GBRGS", "enum": [ 1, 2, 3 ], "type": "number" }, "gear_problems": { "description": "Norwegian requirement - gear problems (1=empty net, 2=net burst, 3=net split, 4=broken meshes, 5=lost gear, 6=other). GBR: GBRGP", "enum": [ 1, 2, 3, 4, 5, 6 ], "type": "number" }, "gill_net": { "description": "Deep Sea Permit requirements when using gill nets", "$ref": "https://poseidat.org/schema/core/fishing-gear-gill-net.json" }, "gear_capacity": { "description": "The capacity or dimensions of the deployed gear. NLD: GC", "type": "string" }, "gear_hook_count": { "description": "Additional information relating to certain gear types: liners = hooks. NLD: NH", "type": "number" }, "gear_dredger_count": { "description": "Additional information relating to certain gear types: dredger = number of dredges. NLD: NN", "type": "number" }, "gear_shot": { "description": "All gear shot event details. NLD: GES, GBR: GES", "title": "Gear shot details", "items": { "$ref": "https://poseidat.org/schema/core/fishing-gear-shot.json" }, "type": "array" }, "gear_retrieve": { "description": "All gear retrieve even details. NLD: GER, GBR: GER", "title": "Gear retrieve details", "items": { "$ref": "https://poseidat.org/schema/core/fishing-gear-retrieve.json" }, "type": "array" }, "gear_loss": { "description": "All gear loss even details. NLD: GLS, GBR: GLS", "title": "Gear loss details", "items": { "$ref": "https://poseidat.org/schema/core/fishing-gear-loss.json" }, "type": "array" }, "partnered_fishing_vessel": { "description": "Details of partner vessels for pair fishing. BR: PFP, NLD: NLSPN", "title": "Partnered fishing vessels", "items": { "$ref": "https://poseidat.org/schema/core/vessel-partner.json" }, "type": "array" } }, "type": "object" }