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

{
    "ob_id": 39598,
    "uuid": "db032a49ac10480c84f3844656f8f7f2",
    "title": "Caption for FAQ 7.3, Figure 1 from Chapter 7 of the Working Group I (WGI) Contribution to the Intergovernmental Panel on Climate Change (IPCC) Sixth Assessment Report (AR6)",
    "abstract": "Equilibrium climate sensitivity and future warming. (left) Equilibrium climate sensitivities for the current generation (Coupled Model Intercomparison Project Phase 6, CMIP6) climate models, and the previous (CMIP5) generation. The assessed range in this Report (AR6) is also shown. (right) Climate projections of CMIP5, CMIP6 and AR6 for the very high-emissions scenarios RCP8.5, and SSP5-8.5, respectively. The thick horizontal lines represent the multi-model average and the thin horizontal lines represent the results of individual models. The boxes represent the model ranges for CMIP5 and CMIP6 and the range assessed in AR6.",
    "keywords": "",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}