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

{
    "ob_id": 8428,
    "uuid": "1105a30c49a01dde0032515cadb056ad",
    "title": "Advanced Very High Resolution Radiometer (AVHRR) Global Area Coverage (GAC) Level 1B data",
    "abstract": "4km resolution Global Area Coverage (GAC) Advanced Very High Resolution Radiometer (AVHRR) Level 1B data are available from 1978 - 2013 for the whole globe from NOAA satellites 06 through 12, 14 through 19 and Tiros-N, and from Metop A and B.",
    "keywords": "",
    "publicationState": "published",
    "dataPublishedTime": "2014-09-10T15:15:05",
    "doiPublishedTime": null,
    "updateFrequency": "daily",
    "status": "ongoing",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/8429/?format=api",
        "dataPath": "/neodc/avhrr_gac/data/l1b/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 25445099878997,
        "numberOfFiles": 842261,
        "fileFormat": "&lt;div property=\"cedacat:formats\"&gt;\r\n&lt;div class=\"formats\"&gt;Data availability and file format&lt;/div&gt;\r\n&lt;p&gt;NOAA Level 1B (following FGGE terminology) is raw data that have been quality controlled, assembled into discrete data sets, and to which Earth location and calibration information have been appended (but not applied).&lt;/p&gt;\r\n\r\n&lt;p&gt;Software is available, free of charge, which may assist you in viewing data from AVHRR instruments:\r\n&lt;/p&gt;&lt;ul&gt;\r\n&lt;li&gt;&lt;a href=\"http://www.brockmann-consult.de/cms/web/beam\"&gt;BEAM&lt;/a&gt;: BEAM is an open-source toolbox and development platform for viewing, analysing and processing of remote sensing raster data. Originally developed to facilitate the utilisation of image data from Envisat's optical instruments, BEAM now supports a growing number data formats of other EO sensors such as &lt;strong&gt;AVHRR&lt;/strong&gt;.&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p /&gt;\r\n&lt;/div&gt;"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/2413/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were obtained directly from the NOAA Comprehensive Large Array-Data Stewardship System (CLASS).",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/5382/?format=api"
    ],
    "projects": [],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/8427/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/30129/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33534/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33535/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33536/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33537/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33540/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41247/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33533/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41249/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41248/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": "https://api.catalogue.ceda.ac.uk/api/v2/composites/8435/?format=api",
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2658/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "registered",
            "accessRoles": null,
            "label": "registered: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/specific_licences/NOAA%20Open%20Access%20Data.pdf",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}