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

{
    "ob_id": 5079,
    "uuid": "17b49dadc38ad340fcd927c232088d4b",
    "title": "SOLAS-SLATEA: Green House Gas measurements from the Cambridge microDirac instrument on board the NERC-ARSF Dornier aircraft - Cape Verde",
    "abstract": "The overall aim of the UK Surface Ocean / Lower Atmosphere Study (UK SOLAS) is to advance understanding of environmentally significant interactions between the atmosphere and ocean, focusing on material exchanges that involve ocean productivity, atmospheric composition and climate. The knowledge obtained will improve the predictability of climate change and give insights into the distribution and fate of persistent pollutants. The dataset contains biological and chemical measurements such as: major nutrients and trace metal concentrations in aerosol and rain samples, chemical analyses of inorganic micro-nutrients, dissolved and particulate trace metal and carbon analyses, dissolved nitrogen and organic phosphate, biological measurements including phytoplankton pigments, bacteria, picoplankton and larger phytoplankton abundance.",
    "keywords": "SLATEA, SOLAS, microDirac, GHG",
    "publicationState": "published",
    "dataPublishedTime": "2008-07-25T18:50:20",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/5080/?format=api",
        "dataPath": "/badc/solas/data/slatea/cam-diracfmw/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 26389,
        "numberOfFiles": 7,
        "fileFormat": "Data are NASA Ames formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/1464/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/777/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/58215/?format=api"
    ],
    "dataLineage": "Data supplied by campaign participants.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/3359/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/13599/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/13605/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22721/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22727/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22719/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22722/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22723/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22724/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22726/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22720/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75427/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/5083/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2526/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}