Table of Contents

potObservation

Description

Observation to record details of a pot catch.

The potObservation schema inherits from fisheriesTripObservationType.

Properties

Name Description Required Type
DepthRange The depth range of the pot in metres. No string
TargetSpecies The primary species being targetted. No string
NumberSize The number of the target species of the required size. No Number
Catch The quantity of the species and optionally of the grade caught in the trawl. No Array of  speciesQuantityType
Bycatch The quantity of the bycatch species and optionally of the grade caught in the trawl. No Array of  speciesQuantityType
Wildlife Details of the wildlife encountered during the trawl. No wildlifeInteractionType
Comments Comments on the trawl or shot. No string
Location The location of the pot using the geojson Point feature (with its geometry). No geoJsonFeature
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": "potObservation",
  "id": "8011287c-8061-4b0d-bd72-879149e9f088",
  "meta": {
    "sourceId": {
      "scheme": "com.deckhand.report",
      "id": "08312cfa-b1f7-4206-851d-4de7ce4da20a"
    },
    "modified": "2023-10-31T15:20:00Z"
  },
  "name": "Blue Doris pot 16, 31/10/23 start 12:38, Trip S999123456A",
  "observationDate": "2023-10-31T13:25:00Z",
  "responsible": "Fabio Capello",
  "trip": {
    "tripId": {
      "scheme": "com.deckhand.trip",
      "id": "S999231004A"
    },
    "vesselName": "Blue Doris",
    "vesselIdentifier": {
      "scheme": "com.deckhand.vessel",
      "id": "V88810000A"
    },
    "startDateTime": "2023-10-31T11:49:28Z",
    "fishery": "ABC123"
  },
  "depthRange": "34-49",
  "targetSpecies": "Rock lobster",
  "numberSize": 20,
  "comments": "Good condition",
  "catch": [
    {
      "species": "Rock lobster",
      "grade": "Size",
      "count": 20
    },
    {
      "species": "Rock lobster",
      "grade": "1.5-2kgs",
      "count": 9
    },
    {
      "species": "Rock lobster",
      "grade": "2-2.5kgs",
      "count": 11
    },
    {
      "species": "Rock lobster",
      "grade": "Undersize",
      "count": 2
    },
    {
      "species": "Rock lobster",
      "grade": "Dead",
      "count": 2
    }
  ],
  "bycatch": [
    {
      "species": "Octopus",
      "count": 1
    },
    {
      "species": "Leather Jacket",
      "count": 2
    }
  ],
  "wildlife": {
    "observer": "Nat Brown",
    "speciesObserved": [
      {
        "species": "Short-beaked common dolphin",
        "count": 4
      }
    ]
  },
  "location": {
    "geometry": {
      "coordinates": [
        -122.09771,
        37.34013
      ]
    }
  }
}