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

{
    "ob_id": 24685,
    "uuid": "f5f5d72d28a54b648f27fb4ead63530b",
    "title": "UKCP09 data computation with POLCOMS model",
    "abstract": "These UKCP09 data were generated using outputs from a Met-Office Hadley Centre (MOHC) regional climate model simulation to drive the Atlantic Margin application shelf sea model of the Proudman Oceanographic Laboratory Coastal Ocean Modelling System (POLCOMS) (now the National Oceanography Centre Liverpool; NOCL).\r\n\r\nThe POLCOMS shelf sea model is well established having been used operationally by the UK Met Office since 2002 and used in many scientific projects by NOCL (formerly POL) and the UK research community. It has been validated with observations from marine weather stations.\r\n\r\nSee the marine and coastal projections report for full details.",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}