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

{
    "ob_id": 43974,
    "uuid": "d69d2c00013b474384df1dab9b9f61e9",
    "title": "Forest Degradation Experiment (FODEX), Ogooué-Ivindo (FGC-02), Gabon, post-logging, January 2020",
    "abstract": "This dataset is comprised of raw data from the EC-funded FODEX project to collect full waveform terrestrial laser scanner (TLS). Plots were scanned prior to and following logging at different intensities to quantify the impact of logging intensity on rate of recovery of carbon stocks. Plots FGC-02 is located in Ogooué-Ivindo, Gabon and owned and managed by commercial logging company Rougier Ivindo.  \r\n\r\nTLS data was collected on a 10 m x 10 m grid where at each position the scanner captured data in an upright and tilted position. The scanner was set to an angular step of 0.04 degrees and 0.02 degrees for upright and tilted scans respectively.  In between each scan position a set of retro-reflective targets were positioned to be used as tie-points between scans. For more information on TLS acquisition refer to Wilkes et al. (2017). Scan data was coregistered using RiSCAN Pro, the 4x4 rotation transformation matrices to transform the point cloud data into a common reference coordinate system can be found in the \"matrix\" directory.",
    "keywords": "terrestrial laser scanner, FODEX, Gabon,Ogooué-Ivindo, FGC-02, Biomass",
    "publicationState": "published",
    "dataPublishedTime": "2025-04-09T14:48:42",
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/43975/?format=api",
        "dataPath": "/neodc/tls/data/raw/gabon/FGC-02/2020-01-28.001.riproject",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 63196768288,
        "numberOfFiles": 2464,
        "fileFormat": "Point cloud data in RIEGL proprietary .rxp format, image data in .jpg format and matrix data in text file."
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/12288/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/4744/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were produced by the 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/43969/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/30128/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210264/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210265/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210266/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210267/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210268/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210269/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210270/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210271/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210272/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/210273/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/43937/?format=api",
    "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": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}