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

{
    "ob_id": 41356,
    "uuid": "25e39573126840d5bbb843902afc729b",
    "title": "Differential Mobility Particle Sizer (DMPS) data from SASSO project - Version 0",
    "abstract": "This dataset contains number size distribution data from the University of Manchester Differential Mobility Particle Sizer (DMPS). The custom-built DMPS measured the evolution of size distribution for polydisperse particles formed from the ozonolysis of α-pinene (13/01/2020) or cresol (10/01/2020) in the Manchester aerosol chamber. Additionally, similar measurements were conducted under the same conditions but with black carbon (BC) as the seed (23/01/2020: BC + α-pinene; 22/01/2020: BC + cresol). These data were collected at the University of Manchester, between January and February 2020 as part of the Soot Aerodynamic Size Selection for Optical properties (SASSO) project. This information can reveal the evolution of the particles inside the chamber.\r\n\r\nThis version 0 dataset contains particle size distribution. The DMPS is operated by University of Manchester scientists.",
    "keywords": "DMPS, Particle size distribution, SASSO",
    "publicationState": "published",
    "dataPublishedTime": "2024-09-04T14:08:17",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/43070/?format=api",
        "dataPath": "/badc/deposited2024/SASSO/SASSO_MAN_DMPS_LABdata",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 91925,
        "numberOfFiles": 5,
        "fileFormat": "Data are BADC-CSV formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/11498/?format=api",
    "geographicExtent": null,
    "nonGeographicFlag": true,
    "phenomena": [],
    "dataLineage": "Data were produced by the SASSO project team and supplied for archiving at the Centre for Environmental Data Analysis (CEDA).",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/38101/?format=api"
    ],
    "observationcollection_set": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/201330/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/201331/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/201332/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/201333/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/201334/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/201335/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/201337/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/204556/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/41357/?format=api",
    "procedureCompositeProcess": null,
    "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": []
}