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

{
    "ob_id": 3621,
    "uuid": "ff76146a93f4e5911c9b05f4e69c069b",
    "title": "ERBE: ERBE instrument measurements on aboard the NOAA-9 satellite",
    "abstract": "This dataset consists of data from the Earth Radiation Budget Experiment (ERBE) instrument on the 9th NOAA Sun-synchronous operational satellites (NOAA-9). NOAA-9 operated at an altitude of 852-km, with an equatorial crossing local time of 1430, having been launched in December 1984. \r\n\r\nThe ERBE instrument's main aim was to provide accurate measurements of incoming solar energy and shortwave and longwave radiation reflected or emitted from the Earth back into space. \r\n\r\nThis dataset contains colour images (shortwave/longwave/net radiation, albedo, clear-sky albedo, clear-sky shortwave/longwave/net radiation, and shortwave/longwave/net cloud forcing) from scanning radiometer on the NOAA-9 satellite. \r\n\r\nMonthly average values are included for the time periods during which the scanners were operational.\r\n\r\nThis dataset is public, though NASA noted that this is intended for research purposes and the data has no commercial value.",
    "keywords": "ERBE, albedo, radiation, cloud forcing",
    "publicationState": "published",
    "dataPublishedTime": "1990-12-10T16:32:36",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/3622/?format=api",
        "dataPath": "/badc/CDs/erbe/erbedata/noaa9/",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 29447282,
        "numberOfFiles": 327,
        "fileFormat": "Data are GIF formatted\r\n\r\n"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3270/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/22796/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/25846/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/25863/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/25875/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/25884/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/25892/?format=api"
    ],
    "dataLineage": "Data collected by NASA using the Earth Radiation Budget Satellite (ERBS), processed and prepared by NASA. A copy of the data were then obtained by the BADC to be made available through the BADC archive.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/2460/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/3618/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/3615/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15239/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15243/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15246/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15238/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15237/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15240/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15241/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15242/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15244/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/15245/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": "https://api.catalogue.ceda.ac.uk/api/v2/composites/3624/?format=api",
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2521/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/missing_licence.pdf",
            "licenceClassifications": "unstated"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}