GET /api/bluebridge/v6/management_units
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, country (ISO 3166-1 3alpha), geographical_coverage and subdivision (ISO 3166-2 2alpha) 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
fishing_areas An array of Fishing Areas associated with the tree. Each element specifies the id, name, type and code of the Fishing Area.
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": "ARG",
        "geographical_coverage": "International",
        "subdivision": null 
      }
    ],
    "stock": {
      "id": 1626,
      "name": "Argentine shortfin squid - SW Atlantic"
    },
    "exploiting_fisheries": [
      3728,
      3729
    ],
    "fishing_areas": [
      {
        "id": 191,
        "name": "FAO 41.3.1",
        "type": "fao",
        "code": "41.3.1"
      },
      {
        "id": 110,
        "name": "FAO 41.2.3",
        "type": "fao",
        "code": "41.2.3"
      },
      {
        "id": 188,
        "name": "FAO 41.3.3",
        "type": "fao",
        "code": "41.3.3"
      }
    ]
  },
  ...
]