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

{
    "ob_id": 41565,
    "uuid": "7b1c3cc934a840c2b522d847e921c5be",
    "title": "Met Office Watnall station high resolution radiosonde data v2",
    "abstract": "Met Office high resolution (2 second) radiosonde data from the Watnall station from 2000 to 2013. 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.\r\n\r\nThis updated version of this dataset contains additional information in the filenames to aid identifying changes in sonde instrumentation and ground station. Awareness of the overall sonde ascent set-up is important when adjusting these data for any identified changes in the resulting data products. The filenaming convention therefore follows the following naming convention:\r\n\r\nsonde-type_station_launch-date-time_sonde-serial_ground-station.ext\r\n\r\nwhere:\r\n - sonde-type indicates the radiosonde model used\r\n - station gives a lower-case site name from where the sonde was launched\r\n - launch-date-time is the date-time in UTC of the sonde's launch\r\n - sonde serial numbers can be cross referenced with Vaisala fact sheets to determine the specific sub-model instrumentation and thus any changes from earlier sondes of the same model \r\n - ground-staiton details the ground software used for processing sonde raw data into resulting archived files.",
    "keywords": "Met Office, radiosonde",
    "publicationState": "preview",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "asNeeded",
    "status": "ongoing",
    "result_field": null,
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3551/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/665/?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. For sites in continued operation ascent files are then delivered to CEDA for ingesting into the archive approximately 1 month in arrears. Historic archive of data were provided by the Met Office as required. In both cases the files are examined with internal metadata cross-referenced with additional metadata tables to establish required metadata that have been included in filenames for the the archived files.",
    "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/202603/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202605/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202606/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202604/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202607/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202608/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202609/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202610/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/13086/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [],
    "discoveryKeywords": []
}