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

{
    "ob_id": 24273,
    "uuid": "888412afde0e461188550cdf8bea3f61",
    "title": "AWI-POLAR5 EUFAR SRMGLACIERS Flight, 2011-01-23: in situ atmospheric and hyperspectral remote sensing measurements",
    "abstract": "In situ atmospheric and hyperspectral remote sensing measurements using the Ice Radar on the AWI-polar5 aircraft and Ice Radar on the AWI-polar5 aircraft instrument onboard the POLAR 5 - AWI aircraft for the SRMGlaciers- Geological and glaciological controls on ice flux to the ocean from Sør Rondane Mountains, East Antarctica (SRMGLACIERS) project (flight reference: awi-polar5_20110123_f3_srmglaciers).\n\nData were collected over the Sor Rondane Mountains, Antarctica area.\n",
    "keywords": "SRMGLACIERS, EUFAR, aircraft, hyperspectral, remote sensing, atmospheric",
    "publicationState": "citable",
    "dataPublishedTime": "2017-01-30T11:43:19.267184",
    "doiPublishedTime": "2018-01-17T09:51:39.634634",
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/24272/?format=api",
        "dataPath": "/badc/eufar/data/projects/srmglaciers/awi-polar5_20110123_f3_srmglaciers",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 9694376720,
        "numberOfFiles": 2449,
        "fileFormat": "Data are netCDF and ENVI Binary formatted. Ancillary files may be plain ASCII or PDF formatted. Image files may be PNG or JPG formatted."
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/6600/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1900/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were collected by instrument scientists during the flight before preparation and delivery for archiving at the Centre for Environmental Data Analysis (CEDA).",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/9437/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19943/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/6382/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/24263/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/99449/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/99443/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/99445/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/99446/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/99447/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/99448/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106205/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/99442/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106206/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105952/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106207/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/24270/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2528/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "http://creativecommons.org/licenses/by/4.0/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}