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

{
    "ob_id": 16936,
    "uuid": "5eaa52b890dd48c1b9efd2dcb8012e78",
    "title": "FAAM B624 BORTAS flight, number 7: Airborne atmospheric measurements from core and non-core instrument suites on board the BAE-146 aircraft",
    "abstract": "Airborne atmospheric measurements from core and non-core instrument suites data on board the FAAM BAE-146 aircraft during flight 7 for BORTAS: Quantifying the impact of BOReal forest fires on Tropospheric oxidants over the Atlantic using Aircraft and Satellites project.",
    "keywords": "BORTAS, FAAM, airborne, atmospheric measurments",
    "publicationState": "published",
    "dataPublishedTime": "2014-07-14T13:38:13.187510",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/16935/?format=api",
        "dataPath": "/badc/faam/data/2011/b624-jul-21",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 2385296215,
        "numberOfFiles": 59,
        "fileFormat": "Data are netCDF and NASA-Ames formatted. Ancillary files may be plain ASCII or PDF formatted. Image files may be PNG formatted."
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/4426/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1240/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/54018/?format=api"
    ],
    "dataLineage": "Data were collected by instrument scientists during the flight before preparation and delivery for archiving at the NCAS British Atmospheric Data Centre.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/11991/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/5782/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/6204/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64760/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64756/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64757/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64751/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64752/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64753/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64758/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64759/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64754/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/64755/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/16937/?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"
        }
    ]
}