UNPKG

@poseidat/schemas

Version:

The core schemas for the PoseiDAT data interchange formats

36 lines (35 loc) 998 B
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://poseidat.org/schema/entry/end-of-fishing.json", "title": "End of 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": [ "end-of-fishing" ], "default": "end-of-fishing" }, "trip": { "description": "Trip related details for this entry", "$ref": "https://poseidat.org/schema/core/trip-entry.json" }, "activity_date": { "description": "The datetime of end of fishing in UTC. GBR: DATI, NLD2: DA + TI, NLD3: DA", "type": "string", "format": "date-time" } }, "required": [ "entry_type", "trip", "activity_date" ], "allOf": [ { "$ref": "https://poseidat.org/schema/core/base-entry.json" } ], "type": "object", "additionalProperties": true }