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

{
    "ob_id": 19849,
    "uuid": "e80f28ccb0504c32b403eee654a8a5b3",
    "title": "ESA Land Cover Climate Change Initiative (Land_Cover_cci):  MERIS Surface Reflectance",
    "abstract": "This dataset consists of time series of surface reflectance from the MERIS instrument on the ENVISAT satellite, produced as part of the ESA Land Cover Climate Change Initiative (CCI) project. \r\n\r\nThe time series are a temporal syntheses obtained over a 7-day compositing period, and encompass 13 of the 15 MERIS spectral channels (not including bands 11 and 15).   The spatial resolution is 300m for the Full Resolution (FR) data and 1000m for the Reduced Resolution (RR) data.\r\n\r\nGiven the amount and size of the MERIS surface reflectance archive (10 To), the Land Cover CCI team make the data available on request, through your own disks. Please contact contact@esa-landcover-cci.org",
    "keywords": "Land Cover, CCI, Surface Reflectance, MERIS",
    "publicationState": "published",
    "dataPublishedTime": "2016-08-12T09:16:43",
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/19850/?format=api",
        "dataPath": "http://maps.elie.ucl.ac.be/CCI/viewer/download.php",
        "oldDataPath": [],
        "storageLocation": "external",
        "storageStatus": "offline",
        "volume": 0,
        "numberOfFiles": 0,
        "fileFormat": "Unknown"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/5197/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/529/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were processed by the ESA CCI Land Cover project and catalogued here as part of the CCI Open Data Portal Project",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/14431/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/14430/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75334/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75335/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75337/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75338/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75336/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75340/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/143300/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/143301/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75339/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/8344/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2629/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "",
            "licenceClassifications": ""
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1140,
            "name": "ESACCI"
        }
    ]
}