Get a list of ProcedureComputation objects. ProcedureComputations have a 1:1 mapping with Observations.

### Available end points:

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

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `uuid`
- `title`
- `keywords`
- `abstract`

### How to use filters:

These filters can be used like django query filters using __ for related model relationships.

- `/computations/?uuid=d594d53df2612bbd89c2e0e770b5c1a0`
- `/computations/?title__startswith!=DETAILS NEEDED - COMPUTATION CREATED FOR SATELLITE COMPOSITE`
- `/computations/?abstract__contains=HadCM3 model`

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

{
    "ob_id": 43043,
    "uuid": "dbc82a13416647ffba38688918acf3dd",
    "title": "Catchment metrics were calculated from daily flow datasets from two hydrological models: SHETRAN and HBV.",
    "abstract": "Catchment metrics were calculated from daily flow datasets from two hydrological models: SHETRAN and HBV. Both models were developed using historical data and then driven using bias corrected Met Office UKCP18 datasets to simulate river flows under climate change scenarios. Two different land use changes were applied: (1) natural flood management (provided by Sayers and Partners) and (2) storylined urban development (Provided by the Urban Development Model team at Newcastle University).",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}