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

{
    "ob_id": 4817,
    "uuid": "21db29857564ee26927077b51ff3932a",
    "title": "Convective Storm Initiation Project (CSIP): temperature, humidity and wind profiles from the University of Leeds Sodar 1 at the Chilbolton Observatory, Hampshire",
    "abstract": "The University of Leeds Sodar 1 dataset contains measurements of the scattering of sound waves by atmospheric turbulence at Chilbolton Observatory, Hampshire over the periods from the 6th of July to the 27th of July 2004 and from the 10th of June 2005 to the 19th of August 2005. The dataset contains measurements of wind speed at various heights above the ground, and the thermodynamic structure of the lower layer of the atmosphere.",
    "keywords": "Sodar, CSIP, UFAM",
    "publicationState": "published",
    "dataPublishedTime": "2007-02-06T15:53:47",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/4818/?format=api",
        "dataPath": "/badc/csip/data/leeds-sodar1",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 454368936,
        "numberOfFiles": 859,
        "fileFormat": "Data are netCDF formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/1387/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/812/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/50416/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/52682/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/52683/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/53069/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/53070/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/53071/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/53072/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/55182/?format=api"
    ],
    "dataLineage": "Data were collected by the collected by the instrument scientist before preparation and delivery to the Convective Storm Initiation Project (CSIP) participants and then to the BADC for archiving.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/3223/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/4614/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/4611/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/11685/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21908/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21907/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21909/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21910/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21911/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21913/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41509/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41512/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50234/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/4819/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2543/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "registered",
            "accessRoles": null,
            "label": "registered: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/missing_licence.pdf",
            "licenceClassifications": "unstated"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}