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

{
    "ob_id": 6703,
    "uuid": "42fa98a8beb598e41aea8cc0c4d459ac",
    "title": "Met Office Northern Hemisphere Gridded Mean Sea Level Pressure (MSLP) Daily Series (1881-2005)",
    "abstract": "This dataset holds Northern Hemisphere (north of 15N) gridded (5° latitude by 10° longitude grid) series of daily Mean Sea Level Pressure fields. The data are available for the period 1881 to 2005. The data was supplied by the Met Office, Hadley Centre.\r\n\r\n\r\nNOTE: 202607: Review of this dataset was unable to provide more detail on the provenance of this dataset, nor how it may relate to subsequent products. As such use of this dataset is strongly discouraged and more recent global mean sea level pressure datasets should be used instead. This record is retained purely for historical purposes where it may have been cited in the open literature.",
    "keywords": "Met Office, Hadley,MSLP, hemisphere",
    "publicationState": "published",
    "dataPublishedTime": "2007-02-03T04:53:58",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "obsolete",
    "result_field": {
        "ob_id": "https://catalogue.ceda.ac.uk/api/v2/observations/6704/?format=api",
        "dataPath": "/badc/ukmo-mslp/data/daily/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 214930432,
        "numberOfFiles": 142,
        "fileFormat": "ASCII"
    },
    "timePeriod": "https://catalogue.ceda.ac.uk/api/v2/times/1963/?format=api",
    "geographicExtent": "https://catalogue.ceda.ac.uk/api/v2/bboxes/156/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/13194/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/phenomona/25956/?format=api"
    ],
    "dataLineage": "Data produced by the Met Office Hadley Centre for the period 1873 to 2005, and then obtained by the BADC for archiving for wider community use.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://catalogue.ceda.ac.uk/api/v2/identifiers/4403/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/identifiers/8747/?format=api"
    ],
    "projects": [
        "https://catalogue.ceda.ac.uk/api/v2/projects/13164/?format=api"
    ],
    "observationcollection_set": [
        "https://catalogue.ceda.ac.uk/api/v2/observationcollections/6702/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28826/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28827/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28829/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28822/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28825/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28824/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28828/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/28823/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/53187/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/55467/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/169576/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://catalogue.ceda.ac.uk/api/v2/computations/6705/?format=api",
    "permissions": [
        {
            "ob_id": "https://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, attribution required"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}