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

{
    "ob_id": 41600,
    "uuid": "7d7cf5d115074fe5a3f70e174adff824",
    "title": "Meteorological data from the  TCCON site at Harwell, Oxfordshire (UK)",
    "abstract": "This repository contains the meteorological data associated to the Harwell TCCON observatory, UK. The dataset includes time in UTC, pressure, temperature, relative humidity, wind speed and direction, rainfall rate, shortwave downwelling flux and duration of sunshine, along other technical parameters, such as the time adjustment from GPS signal.\r\nThe data are operationally used as part of the Harwell TCCON data processing.\r\nContact information can be found in the metadata file 'harwell_weather_metadata'.",
    "keywords": "pressure, relative humidity, temperature, wind speed, wind direction, rainfall, downwelling flux, sunshine, UTC time",
    "publicationState": "preview",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "ongoing",
    "result_field": null,
    "timePeriod": null,
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/914/?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": [],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/41060/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202740/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202741/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202742/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202743/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202744/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202745/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202746/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202747/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202748/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202749/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/41609/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [],
    "discoveryKeywords": []
}