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

{
    "ob_id": 13405,
    "uuid": "acd355453a9e43b2917abc96cb7c2c1e",
    "title": "ADIREX: O3 outputs from the TOMCAT model",
    "abstract": "The Aerosol Direct Radiative Impact Experiment (ADRIEX) was a joint UK Met Office/Natural Environment Research Council (NERC)/UK Royal Society/University of Oslo project aiming at improving our understanding of the radiative effects of anthropogenic aerosol and gases (ozone and methane) in the troposphere.\r\n\r\nThis dataset contains O3 outputs from the TOMCAT model. \r\n\r\n“Chemical attributes” are found by interpolating chemical distributions (in space and time) from a global chemical transport model to the origin of each trajectory (using its full length). During the ICARTT campaign the TOMCAT global CTM is being run in near-real time (about 19 hours behind present) driven by wind analyses from the ECMWF. The back trajectories are sufficiently long that a TOMCAT chemical analysis exists even at the origin of forecast trajectories. For example, the longest forecast lead time for the Azores domain is 5 days but the back trajectories are 7 days long so that the TOMCAT fields dating from 2 days before the latest meteorological analysis are used to find the attributes. For the US East Coast domain the back trajectories are shorter (3 days long) but the longest lead time is also 3 days so that the chemical attributes can be calculated as soon as TOMCAT has been brought up to date with the latest ECMWF analyses.",
    "keywords": "ADRIEX, TOMCAT",
    "publicationState": "published",
    "dataPublishedTime": "2016-04-13T15:10:34",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/13406/?format=api",
        "dataPath": "/badc/adriex/data/forecasts/tomcat-o3",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 4630405,
        "numberOfFiles": 97,
        "fileFormat": "Images are PNG formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/798/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/51/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data provided by TOMCAT",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/2968/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/2965/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51218/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51217/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51226/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51215/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51225/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51216/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51220/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51222/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51219/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51221/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51223/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51224/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://api.catalogue.ceda.ac.uk/api/v2/computations/2984/?format=api",
    "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"
        }
    ]
}