Get a list of Observation objects.

### Available end points:

- `/observations/` - Will list all Results in the database
- `/observations.json` - Will return all Results in json format. This can
also be achieved by using the accept header. `application/json`
- `/observations/<object_id>/` - Returns Results object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `title`
- `uuid`
- `keywords`
- `status`
- `result_field`
- `discoveryKeywords`
- `updateFrequency`
- `nonGeographicFlag`
- `publicationState`
- `permissions`

### How to use filters:

These filters can be used like django query filters using __ for related model relationships.

- `/observations/?uuid=d594d53df2612bbd89c2e0e770b5c1a0`
- `/observations/?status=completed`
- `/observations/?results_field__dataPath__startswith=/neodc/esacci`
- `/observations/?discoveryKeywords__name=ESACCI`
- `/observations/?nonGeographicFlag=True`

Filters can be stacked to build an 'AND' relationship. E.g.

- `/observations/?publicationState__in=published,citable&nonGeographicFlag=True`
- `/observations/?publicationState__in=published,citable&discoveryKeyword__name=NDGO0003`

GET /api/v2/observations/43009/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 43009,
    "uuid": "2e98ece54bf74911bf0b63a7d1354274",
    "title": "Modelled water mass of PM2.5 components at Manchester Air Quality site",
    "abstract": "The modelled data valid at the location of the Manchester Air Quality site was extracted from the domain at 3 km x 3 km resolution. The relative humidity (from WRF) and the chemical composition (from EMEP4UK) were then used to calculate the water mass associated with the components of PM2.5 using the method by Snider et al. (2016).",
    "keywords": "",
    "publicationState": "working",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "pending",
    "result_field": null,
    "timePeriod": "https://catalogue.ceda.ac.uk/api/v2/times/11803/?format=api",
    "geographicExtent": "https://catalogue.ceda.ac.uk/api/v2/bboxes/4566/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were produced by the project team and supplied for archiving at the Centre for Environmental Data Analysis (CEDA).",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://catalogue.ceda.ac.uk/api/v2/projects/43010/?format=api"
    ],
    "observationcollection_set": [
        "https://catalogue.ceda.ac.uk/api/v2/observationcollections/45670/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204348/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204349/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204350/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204351/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204352/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204353/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204354/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204355/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204356/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/204357/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://catalogue.ceda.ac.uk/api/v2/computations/43011/?format=api",
    "permissions": [],
    "discoveryKeywords": []
}