GET /api/bluebridge/v1/management_units DEPRECATED
View information on all Management Units

Provides information on all Management Units that are not Salmon related. Draft information is not returned by this endpoint.

The response is an array of JSON objects, each summarising information about a single Management Unit.

Description of response elements

Element Description
id The internal FishSource identifier for the Management Unit
name The name of the Management Unit. This is often shared amongst several records, which are each specific to a given Stock and Fishing Areas
type The type of the Management Unit. One of ‘Industrial’, ‘Artesenal’ or null
organisations An array of JSON hashes describing the id, name, acronym, and country for each Organisation associated with the Management Unit.
stock A JSON hash documenting the id and name of the root StockOrAssessmentUnit record for the Profile tree containing the Management Unit
species A JSON hash documenting the fao_name, order, family, genus, specific_descriptor and code_3a of the Species associated with the Fishery Profile Tree.
fishing_areas An array of Fishing Areas associated with the tree. Each element specifies the name of the Fishing Area and whether it’s an FAO defined area or Other
exploiting_fisheries An array of internal FishSource identifiers for all Fisheries contained within the Fishery Profile tree under the current Management Unit

Examples

[
  {
    "id": 1923,
    "name": "Argentina North of 44°S",
    "type": null,
    "organisations": [
      {
        "id": 3296,
        "name": "Consejo Federal Pesquero",
        "acronym": "CFP",
        "country": "AR"
      }
    ],
    "stock": {
      "id": 1626,
      "name": "Argentine shortfin squid - SW Atlantic"
    },
    "exploiting_fisheries": [
      3728,
      3729
    ],
    "fishing_areas": [
      {
        "name": "FAO 41.3.1",
        "type": "FAO"
      },
      {
        "name": "FAO 41.3.2",
        "type": "FAO"
      },
      ...
      {
        "name": "FAO 41.2.3",
        "type": "FAO"
      }
    ]
  },
  ...
]