Table of Contents

tripStartObservation

Description

Observation to record the start of a fishing trip. Mainly used when data is being delivered incrementally.

The tripStartObservation schema inherits from fisheriesTripObservationType.

Properties

Name Description Required Type
Trip Identifies the trip on which the observations were made. Yes fisheriesTripType
ObservationDate UTC Date (required) and time (optional) the observation was taken Yes date-time
PhenomenonStartTime ISO UTC DateTime. The start time of the phenomenon being observed. No date-time
PhenomenonEndTime ISO UTC DateTime. The end time of the phenomenon being observed. No date-time
Responsible Identifier of the person responsible for the observation No string
Remark Notes or remarks field No string
Id Unique identifier (UUID) used within the current server to identify the resource. Yes string
Identifiers Identifiers for the resource (see well-known/schemes... for example identity schemes). No Array of  identifierType
Links Linked resources that are related to the current resource. No Array of  relationType
Meta Meta-data for the resource. Mandatory if you wish to support synchronisation. Yes metaDataType
Name A user-readable name for the resource. No string
Self Uniform resource identifier (URI) of the resource (rel=self). No string

Examples

Example 1

{
  "resourceType": "tripStartObservation",
  "id": "e3cd80dc-2894-4b16-b19e-7daacdc070d3",
  "meta": {
    "sourceId": {
      "scheme": "com.deckhand.report",
      "id": "cb1d3f48-610c-4157-9bec-54387b91bbf2"
    },
    "modified": "2023-10-31T12:40:00Z"
  },
  "name": "Blue Doris trip start, 31/10/23 start 12:38, Trip S999123456A",
  "observationDate": "2023-10-31T12:38:00Z",
  "responsible": "Fabio Capello",
  "trip": {
    "tripId": {
      "scheme": "com.deckhand.trip",
      "id": "S999231004A"
    },
    "skipper": "Jack Smith",
    "vesselName": "Blue Doris",
    "vesselIdentifier": {
      "scheme": "com.deckhand.vessel",
      "id": "V88810000A"
    },
    "licences": [
      "S999"
    ],
    "startDateTime": "2023-10-31T12:38:00Z",
    "fishery": "ABC123"
  }
}