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

{
    "ob_id": 27691,
    "uuid": "bf5eae2a052848aab2abf93d96e7e9aa",
    "title": "ESA Aerosol Climate Change Initiative (Aerosol_cci): Level 3 aerosol products from ATSR-2 (ensemble product), Version 2.6",
    "abstract": "In the early period, it also contains data from the ATSR-2 instrument on the ERS-2 satellite.The ESA Climate Change Initiative Aerosol project has produced a number of global aerosol Essential Climate Variable (ECV) products from a set of European satellite instruments with different characteristics.   This dataset comprises Level 3 daily, monthly and yearly aerosol products from the ATSR-2 instrument on the ERS-2 satellite. The data is an uncertainty-weighted ensemble of the outputs of three separate algorithms (the SU, ADV, and ORAC algorithms.) This product is version 2.6 of the ensemble product. Data is provided for the period 1995 to 2002.    In 2002, it also contains data from the AATSR instrument on the ENVISAT satellite. A separate AATSR product covering the period 2002-2012 is also available, and together these form a continuous timeseries from 1995-2012.\r\n\r\nFor further details about these data products please see the documentation.",
    "keywords": "ESA, CCI",
    "publicationState": "published",
    "dataPublishedTime": "2020-08-27T16:05:17",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/31817/?format=api",
        "dataPath": "/neodc/esacci/aerosol/data/ATSR2_ENS/L3/v2.6/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 1807060331,
        "numberOfFiles": 2341,
        "fileFormat": "Data are in NetCDF format"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/8715/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/529/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/6645/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/6646/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/30174/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/30175/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/30176/?format=api"
    ],
    "dataLineage": "Data were processed by the ESA CCI Aerosol project team and supplied to CEDA in the context of the ESA CCI Open Data Portal Project.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/13341/?format=api"
    ],
    "observationcollection_set": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115798/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115793/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115794/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115795/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115796/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115797/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/140337/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115792/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/140338/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/140339/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2555/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/specific_licences/esacci_aerosol_terms_and_conditions.pdf",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        },
        {
            "ob_id": 1140,
            "name": "ESACCI"
        }
    ]
}