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

{
    "ob_id": 24826,
    "uuid": "8eca7c6aa50a465c96a7e201ca1b0ad0",
    "title": "ESA Antarctic Ice Sheet Climate Change Initiative (Antarctic_Ice_Sheet_cci): Grounding Line Locations for the Jutulstraumen, Nivlisen & Belgium Glaciers, Antarctica, 1994 - 2016, v1.0",
    "abstract": "Grounding line locations (GLL) data for the Jutulstraumen, Nivlisen and Belgium Glaciers in Antarctica, produced by the ESA Antarctic Ice Sheet Climate Change Initiative (CCI) project. The grounding lines  have been derived from satellite observations from the ERS-1/2, TerraSAR-X and Copernicus Sentinel-1 instruments, acquired between 1994 and 2016.",
    "keywords": "",
    "publicationState": "removed",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "deprecated",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/24827/?format=api",
        "dataPath": "/neodc/esacci/ice_sheets_antarctica/data/grounding_line_locations/Jutulstraumen-Nivlisen-Belgium/v1.0/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 1108,
        "numberOfFiles": 1,
        "fileFormat": "ESRI Shapefile"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/6733/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1838/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were produced by DLR in the context of the ESA CCI Antarctic Ice Sheet project team and are archived on the ENVEO Cryoportal (http://cryoportal.enveo.at/data/)  They have been supplied to CEDA in the context of the ESA CCI Open Data Portal Project.",
    "removedDataTime": "2018-05-15T16:28:41",
    "removedDataReason": "Request of data provider",
    "language": "English",
    "identifier_set": [],
    "projects": [],
    "observationcollection_set": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101635/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101633/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101629/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101634/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101632/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101630/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101631/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193989/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193990/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/193991/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2534/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/specific_licences/esacci_icesheets_antarctic_terms_and_conditions.pdf",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}