Get a list of Platform objects. Platforms have a 1:1 mapping with Observations.

### Available end points:

- `/platforms/` - Will list all Platforms in the database
- `/platforms.json` - Will return all Platforms in json format
- `/platforms/<object_id>/` - Returns Platforms object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `title`
- `uuid`
- `keywords`
- `platformType`

### How to use filters:

- `/platforms/?title__startwith!=Instrument.title: DETAILS NEEDED`
- `/platforms/?uuid=ca06054a34a6f4a72a87e3390a8136492`
- `/platforms.json?instrumentType=radiometer`

GET /api/v2/platforms/5805/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 5805,
    "uuid": "4670dc315f084c1e8a0d5538f53d8b1c",
    "title": "Antarctic stations",
    "abstract": "Antarctic stations: Halley Bay, McMurdo, Palmer Station, and the South Pole.",
    "keywords": "",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/3798/?format=api"
    ],
    "platformType": "station_group",
    "parentPlatform": [],
    "childPlatform": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/24878/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/24877/?format=api"
    ]
}