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

{
    "ob_id": 41564,
    "uuid": "ab4e611de78c4bcf90a5e174d1c44df7",
    "title": "Met Office Aberporth High Resolution Radiosonde Data v2",
    "abstract": "Met Office high resolution (2 second) radiosonde data from the Aberporth airfield, Mid Wales from 1990 to present. The data consist of vertical profiles of pressure, temperature, relative humidity, humidity mixing ratio, sonde position, wind speed and wind direction. Measurements are taken at 2 second intervals and the ascents extend to heights of approximately 20-30 km. An ASCII formatted set of files are also available from 1990 to 2000 within this dataset.",
    "keywords": "Met Office, radiosonde",
    "publicationState": "working",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "asNeeded",
    "status": "ongoing",
    "result_field": null,
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3529/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/511/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data are collected by the stations carrying out the radiosonde ascents and then transmitted back to the Met Office headquarters in Exeter. The ascent files are then delivered to CEDA for ingesting into the archive approximately 1 month in arrears. The ASCII version of the data were provided in support of operations of the MST radar facility near Aberystwyth and are included in this dataset as provided at that time.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/13005/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/6722/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202600/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202601/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202595/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202594/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202596/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202597/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202598/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202599/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202602/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/6726/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [],
    "discoveryKeywords": []
}