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

{
    "ob_id": 30088,
    "uuid": "3d2ed346f82d4532a4b792a5d6b61b7d",
    "title": "Intermediate General Circulation Model version 4 (IGCM4)",
    "abstract": "The IGCM4 (Intermediate Global Circulation Model version 4) is a global spectral primitive equation climate model whose predecessors have extensively been used in areas such as climate research, process modelling and atmospheric dynamics. The IGCM4's niche and utility lies in its speed and flexibility allied with the complexity of a primitive equation climate model. Moist processes such as clouds, evaporation, atmospheric radiation and soil moisture are simulated in the model, though in a simplified manner compared to state-of-the-art global circulation models (GCMs). IGCM4 is a parallelised model, enabling both very long integrations to be conducted and the effects of higher resolutions to be explored. It has also undergone changes such as alterations to the cloud and surface processes and the addition of gravity wave drag. These changes have resulted in a significant improvement to the IGCM's representation of the mean climate as well as its representation of stratospheric processes such as sudden stratospheric warmings. The IGCM4's physical changes and climatology are described in the paper linked in the documentation section.",
    "keywords": "IGCM4, Climate, Atmosphere, Global Circulation, Parallel Computing",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": [
        "https://catalogue.ceda.ac.uk/api/v2/identifiers/13964/?format=api"
    ]
}