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

{
    "ob_id": 41659,
    "uuid": "83ba8d0333ba4ccd99c9d3df3096df24",
    "title": "Surface level turbulence derived from FAAM and MASIN flight measurements for the Aerosol Cloud Coupling and Climate Interactions in the Arctic (ACCACIA) project",
    "abstract": "This dataset contains surface layer turbulent fluxes and meteorological variables derived from instruments on board the Facility for Airborne Atmospheric Measurement (FAAM) and Meteorological Airborne Science Instrumentation (MASIN) instrumentation measurements onboard the British Antarctic Survey (BAS) Twin Otter aircraft. These data were based on measurements made during the Aerosol Cloud Coupling and Climate Interactions in the Arctic (ACCACIA) project.",
    "keywords": "ACCACIA, FAAM, MASIN, turbulence",
    "publicationState": "published",
    "dataPublishedTime": "2024-06-06T13:56:20",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/41780/?format=api",
        "dataPath": "/badc/accacia/data/turbulence_SL",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 238799,
        "numberOfFiles": 3,
        "fileFormat": "plain text"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/11661/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1991/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "These data were produced by the project team and the output data were then supplied to CEDA for archiving.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/12286/?format=api"
    ],
    "observationcollection_set": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202979/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202980/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202981/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202982/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202983/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202984/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202985/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202986/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202987/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/202988/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": "https://api.catalogue.ceda.ac.uk/api/v2/composites/43422/?format=api",
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.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"
        }
    ],
    "discoveryKeywords": []
}