@poseidat/schemas
Version:
The core schemas for the PoseiDAT data interchange formats
24 lines (23 loc) • 620 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://poseidat.org/schema/core/journal.json",
"title": "Journal",
"description": "A trip journal",
"properties": {
"journal_id": {
"type": "string",
"format": "uuid",
"description": "The unique identifier for the journal (UUID v4)"
},
"vessel": {
"description": "The identification details of the vessel this journal belongs to",
"$ref": "https://poseidat.org/schema/core/vessel.json"
}
},
"required": [
"journal_id",
"vessel"
],
"type": "object",
"additionalProperties": false
}