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

{
    "ob_id": 14193,
    "uuid": "7d10c0d556de478eacc84ecb4b75e6c1",
    "title": "MRF A749 ACTO flight: Airborne atmospheric and chemistry measurements taken on board the Met Office C-130 Hercules aircraft",
    "abstract": "The Meteorological Research Flight (MRF) was a Met Office facility, which flew a well-instrumented C-130 Hercules aircraft for atmospheric research purposes.\r\n\r\nThis dataset contains airborne atmospheric and chemistry measurements taken on board the Met Office C-130 Hercules aircraft flight A749 for the Atmospheric Chemistry and Transport of Ozone in the upper troposphere-lower stratosphere (UTLS) (ACTO) campaign. ",
    "keywords": "UTLS, ACTO, Chemistry, temperature, pressure, wind",
    "publicationState": "published",
    "dataPublishedTime": "2000-12-10T02:35:02",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/14194/?format=api",
        "dataPath": "/badc/ukmo-mrf/data/a749",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 3010527,
        "numberOfFiles": 7,
        "fileFormat": "Data are NASA Ames formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/5102/?format=api",
    "geographicExtent": null,
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/79823/?format=api"
    ],
    "dataLineage": "Data collected by instruments on-board the MRF C-130 during flight A749. Data acquired by BADC for archiving during the ACTO project.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/14435/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/431/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/2322/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55052/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55048/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55050/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55053/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55054/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55055/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55049/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55051/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55056/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55057/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/14507/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2522/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "registered",
            "accessRoles": null,
            "label": "registered: None group",
            "licenceURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}