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

{
    "ob_id": 39804,
    "uuid": "91d1fbc572224b9c86f6c14ba9109479",
    "title": "ESA Sea Level Climate Change Initiative (Sea_Level_cci): Regional coastline profile of Vertical Land Motions in Europe and SE Asia/Oceania,  v1",
    "abstract": "This dataset contains a regional coastline profile of Vertical Land Motions in Europe and SE Asia/Oceania  produced as part of the ESA Climate Change Initiative Sea Level project.\r\n\r\nVertical Land Motions have been estimated as the difference between the altimeter coastal sea level v1.1 dataset (available from https://catalogue.ceda.ac.uk/uuid/222cf11f49a94d2da8a6da239df2efc4 ) and tide gauge measurements from the Permanent Service for Mean Sea Level (PMSML) network. Spatial interpolation has allowed the production of a regularly spaced coastline profile of vertical land movements together with their uncertainties.\r\n\r\nThe altimeter input data are from the Jason-1, Jason-2 and Jason-3 missions during the period Jan. 2002 - May 2018.",
    "keywords": "ESA CCI, SLA",
    "publicationState": "citable",
    "dataPublishedTime": "2023-08-03T16:43:59",
    "doiPublishedTime": "2023-08-04T12:26:25",
    "updateFrequency": "",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/40269/?format=api",
        "dataPath": "/neodc/esacci/sea_level/data/Vertical_Land_Motions_TUM/maps/v1/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 639063,
        "numberOfFiles": 2,
        "fileFormat": "Data are in NetCDF format"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/11145/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/2716/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/66825/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/66826/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/66827/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/66828/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/66829/?format=api"
    ],
    "dataLineage": "The product has been developed within the sea level project of the extension phase of the European Space Agency (ESA) Climate Change Initiative (SL_cci+).    A copy has been transferred to CEDA as part of the ESA CCI Open Data Portal project.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/12667/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/13331/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/12684/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193875/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193868/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193873/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/196275/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193869/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193872/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193871/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193870/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/196276/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://api.catalogue.ceda.ac.uk/api/v2/computations/40270/?format=api",
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2584/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/specific_licences/esacci_sealevel_terms_and_conditions.pdf",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1140,
            "name": "ESACCI"
        }
    ]
}