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

{
    "ob_id": 27577,
    "uuid": "2503df629a8a485e8582e5150876b210",
    "title": "Thunderstorm occurrence at ten sites across the UK digitsied from the UK Met Office Monthly Weather Records (1884-1993)",
    "abstract": "This dataset contains UK Met Office Daily Weather Reports (DWR) from ten sites from the UK Met Office Monthly Weather Records (1884-1993), using the recently-scanned UK Met Office Monthly Weather Reports (MWR). The data are presented as is, with no attempt to provide any corrections  or calibration. Approximately half the stations exhibit sharp drops in thunderdays at various points between 1960 and 1990. Comparison with nearby Met Office Integrated Data Archive System (MIDAS) stations suggests the low thunderdays are the result of changes in observing practice, rather than genuine changes in thunderstorm  occurrence. These potential  data issues limit  interpretation of the long-term  trends. \r\n\r\n DWR  contain extensive logs of UK thunderstorm activity, in the form of thunderday observations.  To date, only a very small fraction of these data have been digitised as part of the MIDAS dataset, and exclusively after 1950.",
    "keywords": "Thunderstorms, UK, Weather reports",
    "publicationState": "citable",
    "dataPublishedTime": "2019-08-12T08:06:09",
    "doiPublishedTime": "2019-08-12T08:30:09",
    "updateFrequency": "",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/27576/?format=api",
        "dataPath": "/badc/deposited2019/uk-thunder-days/data/v1/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 160411,
        "numberOfFiles": 2,
        "fileFormat": "Data are netCDF formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/7393/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/2404/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/1319/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/1320/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/4385/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/68302/?format=api"
    ],
    "dataLineage": "Data originates from the Met Office it has been digitised by the data provider without further QC by the Met Office and therefore the Met Office is currently unable to confirm the accuracy of the keying. They have been digitised and deposited at the Centre for Environmental Data Analysis (CEDA) for archiving.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/10550/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/4/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/1186/?format=api"
    ],
    "observationcollection_set": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115302/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115304/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115305/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115306/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115309/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115310/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115311/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115308/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/168886/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/115303/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://api.catalogue.ceda.ac.uk/api/v2/computations/27650/?format=api",
    "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"
        }
    ]
}