@poseidat/schemas
Version:
The core schemas for the PoseiDAT data interchange formats
79 lines (78 loc) • 2.16 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://poseidat.org/schema/core/measurement/trawl-tension.json",
"title": "Trawl tension",
"description": "A combination of sensor measurements for the trawl tension",
"properties": {
"shooted_length_starboard": {
"description": "The shooted length at starboard side",
"type": "number"
},
"shooted_length_port": {
"description": "The shooted length at port side",
"type": "number"
},
"shooted_length_center": {
"description": "The shooted length at center side",
"type": "number"
},
"traction_starboard": {
"description": "The traction at starboard side",
"type": "number"
},
"traction_port": {
"description": "The traction at port side",
"type": "number"
},
"traction_center": {
"description": "The traction at center side",
"type": "number"
},
"speed_starboard": {
"description": "The speed at starboard side",
"type": "number"
},
"speed_port": {
"description": "The speed at port side",
"type": "number"
},
"speed_center": {
"description": "The speed at center side",
"type": "number"
},
"pressure_starboard": {
"description": "The pressure at starboard side",
"type": "number"
},
"pressure_port": {
"description": "The pressure at port side",
"type": "number"
},
"pressure_center": {
"description": "The pressure at center side",
"type": "number"
},
"drum_rotations_starboard": {
"description": "The drum rotations at starboard side",
"type": "number"
},
"drum_rotations_port": {
"description": "The drum rotations at port side",
"type": "number"
},
"drum_rotations_center": {
"description": "The drum rotations at center side",
"type": "number"
}
},
"required": [
"shooted_length_starboard",
"shooted_length_port",
"shooted_length_center",
"traction_starboard",
"traction_port",
"traction_center"
],
"type": "object",
"additionalProperties": false
}