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

{
    "ob_id": 4116,
    "uuid": "ea896298dc458e0cab1a393f6b75130a",
    "title": "Ozone Monitoring Instrument (OMI) measurements from EOS-AURA (2004-present)",
    "abstract": "The Total Ozone Mapping Spectrometer (TOMS) is an instrument built and operated by the National Aeronautics and Space Administration (NASA). The instrument uses backscattered ultraviolet radiance to infer total column ozone measurements. The dataset consists of daily gridded averages of total ozone covering the entire globe, in the form of images, from NASA NIMBUS 7, Meteor-3, Earth Probe and ADEOS satellites. Data is from 1978 to 2006. The Ozone Monitoring Instrument (OMI) on the AURA spacecraft, OMI data of ozone are now available for the entire OMI mission. In addition to ozone data, OMI data for aerosol and reflectivity are available. These datasets are public.",
    "keywords": "TOMS, Ozone",
    "publicationState": "published",
    "dataPublishedTime": "2007-01-15T22:03:36",
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "ongoing",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/4117/?format=api",
        "dataPath": "/badc/toms/data/omi",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 1030887158,
        "numberOfFiles": 5331,
        "fileFormat": "Data are ASCII formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/1166/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/529/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/21771/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/22890/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/25394/?format=api"
    ],
    "dataLineage": "Total Ozone Mapping Spectrometer (TOMS) data were mirrored from GSFC NASA until saturday December 2, 2006, when contact with Earth Probe was lost.\r\nOzone Monitoring Instrument (OMI) data are continuously being mirrored at the BADC from NASA (since 2004).",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/2816/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/456/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/4099/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19824/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19829/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19826/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19827/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19828/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19830/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19823/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/19825/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": "https://api.catalogue.ceda.ac.uk/api/v2/composites/4121/?format=api",
    "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"
        }
    ]
}