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/26796/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 26796,
    "uuid": "37b19e34e2bc4a8c8fd5e0f700c76e69",
    "title": "UKCP18 Derived Climate Projections for a 2°C global warming level on a 60km grid of the UK",
    "abstract": "This dataset was produced using an emulation technique. The technique is based on applying the time shift methodology to the UKCP18 Global Climate Projections, along with some other statistical techniques, to produce time series of climate variables for the UK region only. Each realisation provides an example of climate variability in a changing climate. The dataset cover the time period of 50 years and comprises of monthly time series of near surface air temperature, precipitation rate, relative humidity, near surface wind, northward near surface wind speed, eastward near surface wind speed and net surface short wave flux. Daily time series of near surface temperature and precipitation also exist",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}