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

{
    "ob_id": 10949,
    "uuid": "6e3e699fa0d3479b96dd990c0ce417ba",
    "title": "Ditton Park Archive: radio research physical record collection (1898-1981)",
    "abstract": "This dataset contains of records chronicling the pioneering radio research work that was carried out at Ditton Park in Slough from 1924 to 1979.\r\n\r\nIn 1920 the Department of Scientific and Industrial Research formed the Radio Research Board (which located at Ditton Park in 1924) to undertake valuable research into radio science. This was the beginning of a high-quality scientific establishment that was led by a team of enthusiastic and expert scientists including Admiral of the Fleet Sir Henry Jackson, Sir Edward Appleton, Sir Robert Watson-Watt, Robert Naismith and Reginald Leslie Smith-Rose.\r\n\r\nThe records in the archive include 1930s Appleton ionogram graphs, ionospheric recording books and correspondence between the Station and its employees working at Tromso in Norway for the 1932 International Polar Year.",
    "keywords": "Ditton Park, radio, ionogram graphs",
    "publicationState": "working",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/19777/?format=api",
        "dataPath": "http://www.ukssdc.ac.uk/contact.html",
        "oldDataPath": [],
        "storageLocation": "external",
        "storageStatus": "offline",
        "volume": 0,
        "numberOfFiles": 0,
        "fileFormat": "The archive consists of paper records"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3041/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/494/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "needed",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19808/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/10948/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39410/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39418/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39415/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39416/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39408/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39407/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39409/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39413/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39411/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39412/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39414/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39417/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2528/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "http://creativecommons.org/licenses/by/4.0/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": []
}