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

{
    "ob_id": 8042,
    "uuid": "658b424abf423b0be4c60e99a6ac8100",
    "title": "Bluesky 5m resolution Digital Terrain Model (DTM) for England and Wales",
    "abstract": "A Digital Terrain Model (DTM) for most of England and Wales provided by Bluesky and made available via the Landmap service, at 5m resolution. The 5m DTM is a photogrammetrically derived product from stereo aerial photography collected between 1999 and 2008. The aerial photography was captured at a resolution of between 10cm and 25cm. A digital elevation model is a digital model or 3D representation of a terrain's surface and, in contrast to a Digital Surface Model (DSM), represents the bare ground surface without any objects like plants and buildings. The Joint Information Systems Committee (JISC) funded Landmap service which ran from 2001 to July 2014 collected and hosted a large amount of earth observation data for the majority of the UK, part of which was elevation data. After removal of JISC funding in 2013, the Landmap service is no longer operational, with the data now held at the NEODC.\r\n\r\nWhen using these data please also add the following copyright statement: © GeoPerspectives supplied by Bluesky yyyy",
    "keywords": "Landmap, DTM",
    "publicationState": "published",
    "dataPublishedTime": "2014-08-14T12:04:35",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/8043/?format=api",
        "dataPath": "/neodc/landmap/data/elevation/dtm5/England_and_Wales",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 104863530374,
        "numberOfFiles": 622110,
        "fileFormat": "Data are img and ecw (Enhanced Compression Wavelet) formatted."
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/2302/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/173/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data collected and prepared by the Landmap team before a copy of the data were obtained by NEODC directly from Landmap.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/5229/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/8044/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/8041/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32821/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32822/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/42384/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32820/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/42386/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32823/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32824/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/108860/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/42385/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/8048/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2588/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "restricted",
            "accessRoles": "landmap",
            "label": "restricted: landmap group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/specific_licences/landmap.pdf",
            "licenceClassifications": "academic, specific"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}