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

{
    "ob_id": 37713,
    "uuid": "83951253e83b4d4dadc4b07a79a76b0e",
    "title": "Derivation of ESA Water Vapour Climate Change Initiative (Water_Vapour_cci): Vertically resolved water vapour - stratosphere (CCI WV-strato, CDR-3), v3.3",
    "abstract": "CCI WV-strato is based on multiple limb satellite sounders (SAGE II, UARS-MLS, HALOE, POAM III, SMR, SAGE III, SCIAMACHY, MIPAS, ACE-FTS, ACE-MAESTRO, Aura-MLS and SAGE III/ISS) merged using a chemistry-climate model in specified dynamics mode as transfer function following the methodology established in Hegglin et al. (2014).",
    "keywords": "",
    "inputDescription": 23,
    "outputDescription": null,
    "softwareReference": 38318,
    "identifier_set": []
}