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

{
    "ob_id": 44885,
    "uuid": "d9e29477c4914e70af19ee467c6864ab",
    "title": "EOCIS: CHUK Coastal Zone Water Colour (OLCI) V1.0",
    "abstract": "This dataset contains daily gridded water colour data for the coastal waters around the UK, derived from the OLCI (Ocean and Land Colour Insturment) on the Sentinel 3A and 3B satellites.   It was produced within the Earth Observation Climate Inforemation Service (EOCIS) project as one of their high resolution UK (CHUK) datasets.   \r\n\r\nData are provided on a 0.0026 degree (300m) latitude, longitude grid.",
    "keywords": "CHUK, Coastal, Water Colour, Sentinel, estuaries, bays, lagoons, optical, chlorophyll, Reflectance, OLCI",
    "publicationState": "preview",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "pending",
    "result_field": {
        "ob_id": "https://catalogue.ceda.ac.uk/api/v2/observations/45897/?format=api",
        "dataPath": "/neodc/eocis/data/CHUK/coastal_zone_watercolour/olci_300m/v1.0/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 775,
        "numberOfFiles": 1,
        "fileFormat": "Data are in NetCDF format"
    },
    "timePeriod": "https://catalogue.ceda.ac.uk/api/v2/times/12176/?format=api",
    "geographicExtent": "https://catalogue.ceda.ac.uk/api/v2/bboxes/4720/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "This dataset was produced by Plymouth Marine Laboratory in the context of the Earth Observation Climate Information Service project.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://catalogue.ceda.ac.uk/api/v2/projects/43216/?format=api"
    ],
    "observationcollection_set": [],
    "responsiblepartyinfo_set": [
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215224/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215030/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215031/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215032/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215033/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215034/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215035/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215036/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/215037/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/217126/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/217127/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/217128/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": "https://catalogue.ceda.ac.uk/api/v2/composites/45896/?format=api",
    "procedureComputation": null,
    "permissions": [],
    "discoveryKeywords": []
}