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

{
    "ob_id": 10943,
    "uuid": "710ec325988347e5bff6499c04b4beb8",
    "title": "Viking Spectrogram Summary Data",
    "abstract": "Viking was Sweden's first satellite, aimed at monitoring the interaction of the solar with with the Earth's magnetosphere, and the resulting behaviour of the aurora borealis. The satellite hosted a variety of instruments. The datum held by the UK Solar System Data Centre are ion spectrograms from the V-3 instrument. \r\n\r\nThis dataset collection contains plots and summary plots of hot plasma spectrograms from the Swedish mission Viking. Datum covers 1986 in slide format.\r\n\r\nSpectrogram slides are available from 1986-06-02 to 1986-10-01. \r\nLower resolution summary plots are available from 1986-04-24 to 1986-11-26.\r\n\r\n",
    "keywords": "Viking, spectograms, slides, plots",
    "publicationState": "working",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/19771/?format=api",
        "dataPath": "http://www.ukssdc.ac.uk/contact.html",
        "oldDataPath": [],
        "storageLocation": "external",
        "storageStatus": "offline",
        "volume": 0,
        "numberOfFiles": 0,
        "fileFormat": "Sildes"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3038/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/529/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "needed",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19804/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/10942/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/19772/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39358/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39362/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39356/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39357/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39360/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39361/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74821/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39359/?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": []
}