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

{
    "ob_id": 14262,
    "uuid": "70eae17a47e64c8597defcb0ed155dea",
    "title": "ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Greenland Calving Front Locations, v1.1",
    "abstract": "The data set provides calving front locations of major outlet glaciers of the Greenland Ice Sheet from SAR data from various sensors, produced as part of the ESA Greenland Ice Sheets Climate Change Initiative (CCI) project.  Version 1.1 of the dataset has been updated to include information from Sentinel 1 data.\r\n\r\nThe Calving Front Location (CFL) of outlet glaciers from ice sheets is a basic parameter for ice dynamic modelling, for computing the mass fluxes at the calving gate, and for mapping glacier area change. From the ice velocity at the calving front and the time sequence of Calving Front Locations the iceberg calving rate can be computed which is of relevance for estimating the export of ice mass to the ocean.\r\n\r\nThe calving front location has been derived by manual delineation based on SAR or optical satellite data.  The CFL product is a collection of ESRI shapefile in latitude and longitude, on WGS84 projection. The basic data are vector line files (not polygons).",
    "keywords": "Greenland Ice Sheet, ESA, CCI",
    "publicationState": "published",
    "dataPublishedTime": "2016-04-11T15:58:34",
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "superseded",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/14318/?format=api",
        "dataPath": "/neodc/esacci/ice_sheets_greenland/data/greenland_calving_front_locations/v1.1",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 114407414,
        "numberOfFiles": 469,
        "fileFormat": "Data are Esri Shape file formatted.  (See greenland_cfl_v1_1_meta.pdf for further information)"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3782/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/895/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were processed by the ESA CCI Greenland Ice Sheet project team and supplied to CEDA in the context of the ESA CCI Open Data Portal Project.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/14317/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/14316/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55317/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55318/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55319/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55597/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105266/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55320/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/104873/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105086/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55598/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55599/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2553/?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_greenland_terms_and_conditions.pdf",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}