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

{
    "ob_id": 38888,
    "uuid": "7215de211e5b4c5a830f6db7beedb863",
    "title": "Caption for Box TS.2, Figure 1 from the Technical Summary of the Working Group I (WGI) Contribution to the Intergovernmental Panel on Climate Change (IPCC) Sixth Assessment Report (AR6)",
    "abstract": "Paleoclimate and recent reference periods, with selected key indicators. The intent of this figure is to list the paleoclimate reference periods used in the WGI report, to summarize three key global climate indicators, and compare CO2 with global temperature over multiple periods. (a) Three large-scale climate indicators (atmospheric CO2, global surface temperature relative to 1850-1900, and global mean sea level relative to 1900), based on assessments in Chapter 2, with confidence levels ranging from low to very high. (b) Comparison between global surface temperature (relative to 1850-1900) and atmospheric CO2 concentration for multiple reference periods (mid-points with 5–95% ranges). {2.2.3, 2.3.1.1, 2.3.3.3, Figure 2.34}",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}