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

{
    "ob_id": 12745,
    "uuid": "eb2c076501fe40048665244999446dc5",
    "title": "ECMWF ERA-40: 6-hourly monthly average reduced N80 Gaussian gridded potential temperature level analysis data (ggat)",
    "abstract": "This dataset contains 6-hourly monthly average, N80 Gaussian gridded, potential temperature level, analysis timestep model data from the European Centre for Medium-Range Weather Forecasts (ECMWF) Re-Analysis (ERA) 40 programme from September 1957 to August 2002. ERA-40 on from the ERA-15 re-analysis project. Access limited to UK based academic researchers only. These data are GRIB formatted.",
    "keywords": "ECMWF, ERA, ERA-40, reanalysis, surface, model, Gaussian, N256, analysis, potential temperature level",
    "publicationState": "published",
    "dataPublishedTime": "2006-12-10T03:17:46",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/12746/?format=api",
        "dataPath": "/badc/ecmwf-e40/data/mm/gg/at",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 6830050500,
        "numberOfFiles": 6337,
        "fileFormat": "Data are GRIB formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3447/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/6242/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/8491/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/10463/?format=api"
    ],
    "dataLineage": "Data were generated by the ERA-40 project at European Centre for Medium-Range Weather Forecasts (ECMWF) and stored within ECMWF's archives. The BADC then obtained a copy from the ECMWF archived and ingested into the BADC archives to aid wider academic use of these data.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/3809/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/3806/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48726/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48727/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48723/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48724/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48722/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48728/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48729/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48725/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": "https://api.catalogue.ceda.ac.uk/api/v2/computations/6659/?format=api",
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2536/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "registered",
            "accessRoles": null,
            "label": "registered: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/specific_licences/ecmwf-era-products.pdf",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}