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

{
    "ob_id": 25947,
    "uuid": "5587614793674fa680a8e6e5b93c6bff",
    "title": "QA4ECV DHR-FAPAR (1982-2006)",
    "abstract": "The Joint Research Centre (JRC) are currently producing a new Fraction of Absorbed Photosynthetically Active Radiation (FAPAR) product which ingests Advanced Very High Resolution Radiometer (AVHRR) data. The estimation of a state variable from the signals measured by a given sensor is constructed from sensor-specific simulated data sets, representative of various land surfaces, using radiative transfer models of the coupled surface atmosphere system. This approach defines a large number of simulated radiance fields, which can be sampled by a virtual instrument similar to the actual one in terms of the spectral and angular observing schemes. Similarly, the corresponding FAPAR values for the various terrestrial systems under investigation can be simultaneously estimated. The simulations of FAPAR values have been made by assuming that the spectral properties of leaves and soil correspond to the Photosynthesis Active Radiation (PAR) region which is between 400 nm and 700 nm. In this case, simulations are made with a homogeneous canopy model (Gobron et al. 1997) representing land surfaces.",
    "keywords": "",
    "publicationState": "preview",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "pending",
    "result_field": null,
    "timePeriod": null,
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/529/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "These data",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/25937/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/25946/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/25978/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/108474/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/108475/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/200395/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/200396/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/200397/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/200398/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/200399/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/200400/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/108481/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/108482/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/108483/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [],
    "discoveryKeywords": []
}