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

{
    "ob_id": 27504,
    "uuid": "a8a2432b702c482d86c6d4f299c0c110",
    "title": "Derivation of the EUSTACE Global daily air temperature combining surface and satellite data, with uncertainty estimates, for 1850-2015, v1.0",
    "abstract": "Global mean surface air temperature measurements have been derived daily for the period between 1850-2015 based on combined information from satellite and in-situ data sources. This data has been derived using a statistical method to estimate air temperatures at all places and times. It takes into account uncertainty in the input data sets covering errors in the in situ measurements, land station homogenisation and errors in the air temperatures estimated from satellite data . Although the statistical model estimates temperatures at all locations, the product is not globally complete, as areas with too few data to provide a reliable air temperature estimate have been masked out.   The derivation of this dataset and the statistical model used has been described further in the EUSTACE Scientific and Product User Guides.",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}