Table of Contents

tripEndObservation

Description

Observation to record the end of a fishing trip.

The tripEndObservation 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": "tripEndObservation",
  "id": "5e4bb193-fadc-4dcb-a864-13b4fa95ea48",
  "meta": {
    "sourceId": {
      "scheme": "com.deckhand.report",
      "id": "61202dff-b8ff-48cc-9148-527cfe961c52"
    },
    "modified": "2023-10-31T17:51:00Z",
    "created": "2023-10-31T17:51:00Z"
  },
  "name": "Blue Doris trip end, 31/10/23 17:51, Trip S999123456A",
  "observationDate": "2023-10-31T17:51:00Z",
  "phenomenonStartTime": "2023-10-31T12:38:00Z",
  "phenomenonEndTime": "2023-10-31T17:51:00Z",
  "responsible": "Fabio Capello",
  "remark": "Inclement weather",
  "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",
    "manDays": 1.0,
    "effortActive": 3.0,
    "effortNets": 2.0,
    "environmentalObservations": [
      {
        "metric": {
          "scheme": "com.metdata.metric",
          "id": "WaterTemperature"
        },
        "value": 23.3,
        "units": "CEL",
        "aggregation": "Max"
      }
    ]
  }
}