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

{
    "ob_id": 7688,
    "uuid": "773949b1edd59bd348267eb9fef53cc9",
    "title": "NAMBLEX: Vertical Profile of Pressure, Height, Temperature, Specific Humidity and Eastward and Northward Wind Components from Interpolation from the ECMWF Analyses by UGAMP",
    "abstract": "The North Atlantic Marine Boundary Layer Experiment (NAMBLEX) campaign was conducted at Mace Head in Ireland from 24 July 2002 to 3 September 2002. During this campaign a suite of instruments, including several from the Universities Facility for Atmospheric Measurements (UFAM). This dataset contains vertical profiles of pressure, height, temperature, specific humidity and eastward and northward wind components from the ground-level to mid-troposphere. The ECMWF analyses data were truncated, were transformed onto a global grid with 320 longitudes and 160 latitudes and then linearly interpolated along 21 model levels to the location of Mace Head. The data processing was done by the UK Universities Global Atmospheric Modelling Programme (UGAMP) to support the NAMBLEX project.",
    "keywords": "NAMBLEX, UGAMP, Atmospheric Chemistry, Boundary Layer",
    "publicationState": "published",
    "dataPublishedTime": "2007-02-25T05:43:23",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/12980/?format=api",
        "dataPath": "/badc/namblex/data/ugamp-ecprof",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 239172,
        "numberOfFiles": 3,
        "fileFormat": "Data are NASA-Ames 1001 formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3526/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/508/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/21787/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/22320/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/22321/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/22383/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/22386/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/23052/?format=api"
    ],
    "dataLineage": "Data were derived through interpolation from ECMWF data by UK Universities Global Atmospheric Modelling Project. Data provided as is by the NAMBLEX campaign participants to the BADC for archiving.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/4976/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/7595/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/7592/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31958/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31953/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31952/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31955/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31956/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31957/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31959/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/31954/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://api.catalogue.ceda.ac.uk/api/v2/computations/3829/?format=api",
    "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"
        }
    ]
}