@poseidat/schemas
Version:
The core schemas for the PoseiDAT data interchange formats
35 lines (34 loc) • 941 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://poseidat.org/schema/entry/fishing-activity.json",
"title": "Fishing activity",
"description": "Notification of intent to cease all fishing activity for the trip",
"properties": {
"entry_type": {
"description": "The journal entry type identifier",
"type": "string",
"enum": [
"fishing-activity"
],
"default": "fishing-activity"
},
"trip": {
"description": "Trip related details for this entry",
"$ref": "https://poseidat.org/schema/core/trip-entry.json"
},
"tow": {
"description": "The fishing tow details",
"$ref": "https://poseidat.org/schema/core/fishing-tow.json"
}
},
"required": [
"entry_type",
"trip",
"tow"
],
"allOf": [
{ "$ref": "https://poseidat.org/schema/core/base-entry.json" }
],
"type": "object",
"additionalProperties": true
}