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

{
    "ob_id": 26016,
    "uuid": "9b204cb345994797b9197744d0ef619c",
    "title": "UKCP18 Future Simulations of Gridded Sea Surface Elevation around the UK for 2007-2100",
    "abstract": "The data are simulated instantaneous sea surface elevations above time-mean sea level due to tides alone (tideAnom) and due to tide and meteorological surge (tideSurgeAnom). The data were produced by the Met Office Hadley Centre, using data made available by the Swedish Meteorological and Hydrological Institute (SMHI) and the Climate Model Intercomparison Project, phase 5 (CMIP5). The data were produced to investigate the impact of simulated atmospheric storminess change on extreme sea levels. To produce the data, atmospheric winds and pressure from the SMHI Regional Atmospheric Model RCA4 was used to drive the CS3 continental shelf model. The data are the resulting simulated sea surface elevations. Five CMIP5 RCP8.5 simulations were downscaled in this way: EC-EARTH, HadGEM2-ES, MPI-ESM-LR, IPSL-CM5A-MR, CNRM-CM5. The data covers the period 2007 to 2099, and applies to the UK coast.\r\n\r\nFurther information on this dataset and UKCP18 can be found in the documentation section.",
    "keywords": "UKCP18, Marine, Tide Surge, Projections, RCP8.5",
    "publicationState": "published",
    "dataPublishedTime": "2018-11-26T09:00:00",
    "doiPublishedTime": null,
    "updateFrequency": "asNeeded",
    "status": "ongoing",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/26146/?format=api",
        "dataPath": "/badc/ukcp18/data/marine-sim/bulk-proj/rcp85",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 390557078739,
        "numberOfFiles": 559,
        "fileFormat": "Data are NetCDF formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/7058/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/2209/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/50512/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/56584/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/56585/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/56586/?format=api"
    ],
    "dataLineage": "Data provided by the UK Met Office",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/26015/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/26018/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193359/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/111102/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/111103/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/111104/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/111106/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/110955/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/111108/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/111105/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/111107/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://api.catalogue.ceda.ac.uk/api/v2/computations/26147/?format=api",
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2522/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "registered",
            "accessRoles": null,
            "label": "registered: None group",
            "licenceURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}