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

{
    "ob_id": 27453,
    "uuid": "c6b7896243de4f4c91eed735e61d4b69",
    "title": "Derivation of the EUSTACE globally gridded clear-sky daily air temperature estimates from satellites with uncertainty estimates for land, ocean and ice, 1995-2016",
    "abstract": "Surface air temperature estimates have been calculated from satellite-derived surface skin temperature measurements within the EUSTACE project.   Research was done to investigate the relationship between these air and skin temperatures based on temporally and spatially collocated observations, and empirical relationships have been derived.   These have then been applied to the satellite skin temperatures used in the EUSTACE project to estimate surface air temperatures.   The relationships have been derived separately for the land, ice and ocean regions, and are described further in the EUSTACE Scientific and Product User Guides.",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}