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

{
    "ob_id": 43476,
    "uuid": "ccf69c5ea5184721906eb312d37d0673",
    "title": "EOCIS: CHUK Aerosol Optical Depth, Daily L3C Product, v1.14",
    "abstract": "This dataset contains Climate High resolution UK (CHUK) Aerosol Optical Depth data produced within the Earth Observation Climate Information Service (EOCIS) project.\r\n\r\nThese data are derived from Swansea University Global Aerosol retrievals (v1.14) for the Sea and Land Surface Temperature Radiometers (SLSTR) on the Sentinel-3A and Sentinel-3B satellites (https://catalogue.ceda.ac.uk/uuid/17d83baf50a644d89a4fb78ca6cccec1/) Original level 2 retrievals in the UK region have been re-projected from the instrument swath onto the Climate High-resolution grid for the UK at 100m resolution and composited on a daily timescale. They contain the aerosol optical depth and the fine-mode aerosol optical depth at 550nm. Two versions of each variable are included: with and without the post-processing filtering that is used in the global dataset.",
    "keywords": "Aerosol,Optical,depth,UK,SLSTR,Sea,Surface,Temperature,Radiometer,High-resolution,EOCIS",
    "publicationState": "preview",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://catalogue.ceda.ac.uk/api/v2/observations/45888/?format=api",
        "dataPath": "/neodc/eocis/data/CHUK/aerosol_optical_depth/SLSTR/L3C/daily/v1.14",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 89723789776,
        "numberOfFiles": 5588,
        "fileFormat": "The data are in NetCDF format."
    },
    "timePeriod": "https://catalogue.ceda.ac.uk/api/v2/times/12069/?format=api",
    "geographicExtent": "https://catalogue.ceda.ac.uk/api/v2/bboxes/4693/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/74919/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/74920/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/74921/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/74922/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/93314/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/93315/?format=api"
    ],
    "dataLineage": "This dataset was produced by Swansea University 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": [
        "https://catalogue.ceda.ac.uk/api/v2/observationcollections/45880/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://catalogue.ceda.ac.uk/api/v2/rpis/207002/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/206996/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/206997/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/206998/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/206999/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/207000/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/206995/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/207001/?format=api"
    ],
    "procedureAcquisition": "https://catalogue.ceda.ac.uk/api/v2/acquisitions/43477/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://catalogue.ceda.ac.uk/api/v2/observations/2528/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "http://creativecommons.org/licenses/by/4.0/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": []
}