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

{
    "ob_id": 26667,
    "uuid": "88d02eb5a6c14952aa88028894d8a69c",
    "title": "ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Optical ice velocity of the Døcker Smith Glacier between 2016-05-08 and 2016-05-18, generated using Sentinel-2 data, v1.0",
    "abstract": "This dataset contains an optical ice velocity time series for the Døcker Smith Glacier in Greenland, derived from intensity-tracking of Sentinel-2 data acquired between 2016-05-08 and 2016-05-18.  It is part of the ESA Greenland Ice Sheet CCI project.\r\n\r\nThe data are provided on a polar stereographic grid (EPSG 3413:Latitude of true scale 70N, Reference Longitude 45E) with 50m grid spacing.   The horizontal velocity is provided in true meters per day, towards EASTING (x) and NORTHING (y) direction of the grid.   \r\n\r\nThe product was generated by S[&]T Norway.",
    "keywords": "Greenland, Ice sheet, CCI, ESA",
    "publicationState": "published",
    "dataPublishedTime": "2019-02-08T14:36:42",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/26802/?format=api",
        "dataPath": "/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_iv_50m_s2_docker_smith/v1.0/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 282395217,
        "numberOfFiles": 5,
        "fileFormat": "Data is in NetCDF format. The file provides components of the ice velocity and includes all measurements and annotations."
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/7193/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1650/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/6023/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/12066/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/50547/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/50548/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/79908/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/79909/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/79910/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/79911/?format=api"
    ],
    "dataLineage": "Data were produced by S[&]T Norway as part of the ESA CCI Greenland Ice Sheet project and were 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/14317/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/14316/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112173/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112172/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112174/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112175/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112176/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112179/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112178/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/112177/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": "https://api.catalogue.ceda.ac.uk/api/v2/composites/26805/?format=api",
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2553/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/specific_licences/esacci_icesheets_greenland_terms_and_conditions.pdf",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        },
        {
            "ob_id": 1140,
            "name": "ESACCI"
        }
    ]
}