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

{
    "ob_id": 3955,
    "uuid": "3d2da921dd0246bf8488829666bda2b7",
    "title": "FORTE (Fast Ocean Rapid Troposphere Experiment) model deployed on National Oceanographic Centre Southampton (NOCS)",
    "abstract": "This computation involved: FORTE (Fast Ocean Rapid Troposphere Experiment) model deployed on National Oceanographic Centre Southampton (NOCS).   The centre is the country's focus for oceanography and represents an unparalleled investment in marine and earth sciences and technology in the UK. The centre opened in 1995 in a purpose-built, 50 million waterfront campus on the city Empress Dock. A collaboration between the Natural Environment Research Council and the University of Southampton, the centre houses around 500 staff and 750 undergraduate and postgraduate students.",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/2714/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/2715/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/2716/?format=api"
    ]
}