Table of Contents

catchLandingObservation

Description

Observation to record details of a catch landing.

The catchLandingObservation schema inherits from fisheriesTripObservationType.

Properties

Name Description Required Type
Processor The name or code of the processor. No string
Port The port where the catch is landed. No string
NumberShots The number of shots or trawls for the catch. No Integer
NumberBins The number of bins from the catch. No Integer
PotsPulled The number of pots pulled. No Integer
NumberTakeHome The number taken home. No Integer
TagRangeStart The first tag in the range applied. No string
TagRangeEnd The last tag in the range applied. No string
Catch The quantity landed of the species and optionally of the grade caught. No Array of  speciesQuantityType
Bycatch The quantity landed of the bycatch species and optionally of the grade caught. No Array of  speciesQuantityType
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": "catchLandingObservation",
  "id": "05a3810f-57c8-463f-afe6-e1c5f7d94dcc",
  "meta": {
    "sourceId": {
      "scheme": "com.deckhand.report",
      "id": "a3ded5a9-1151-4b3f-8619-6ff05e85a167"
    },
    "modified": "2023-10-31T15:20:00Z"
  },
  "name": "Catch landing, 31/10/23 start 12:38, Trip S999123456A",
  "observationDate": "2023-10-31T16:25:00Z",
  "phenomenonStartTime": "2023-10-31T16:25:00Z",
  "phenomenonEndTime": "2023-10-31T17:17:00Z",
  "responsible": "Fabio Capello",
  "remark": "Poor catch",
  "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-31T11:49:28Z",
    "fishery": "ABC123"
  },
  "processor": "ABC99999",
  "port": "Gablehead West",
  "numberShots": 5,
  "numberBins": 5,
  "potsPulled": 7,
  "tagRangeStart": "XY123456",
  "tagRangeEnd": "XY123465",
  "numberTakeHome": 0,
  "catch": [
    {
      "species": "Rock lobster",
      "grade": "Size",
      "weight": {
        "measurement": 40,
        "units": "KGM"
      },
      "count": 20
    },
    {
      "species": "Rock lobster",
      "grade": "1.5-2kgs",
      "weight": {
        "measurement": 12.3,
        "units": "KGM"
      },
      "count": 9
    },
    {
      "species": "Rock lobster",
      "grade": "2-2.5kgs",
      "count": 11
    },
    {
      "species": "Spencer Gulf King Prawns",
      "grade": "Total",
      "weight": {
        "measurement": 950,
        "units": "KGM",
        "resolution": 1
      }
    },
    {
      "species": "Spencer Gulf King Prawns",
      "grade": "U10",
      "weight": {
        "measurement": 100,
        "units": "KGM"
      }
    },
    {
      "species": "Spencer Gulf King Prawns",
      "grade": "U10-15",
      "weight": {
        "measurement": 200,
        "units": "KGM"
      },
      "count": 453
    }
  ],
  "bycatch": [
    {
      "species": "Octopus",
      "grade": "High",
      "weight": {
        "measurement": 58,
        "units": "KGM"
      },
      "count": 20
    }
  ]
}