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

{
    "ob_id": 8121,
    "uuid": "3c3336df1dbad3ff98962734db843c2d",
    "title": "ATSR-2: Gridded Brightness Temperature/Reflectance (GBTR) Product (AT2_TOA_1P), v2.1",
    "abstract": "Along-Track Scanning Radiometer (ATSR) mission was funded jointly by the UK Department of Energy and Climate Change External Link (DECC) and the Australian Department of Innovation, Industry, Science and Research External Link (DIISR).\r\n\r\nThis dataset contains the Along-Track Scanning Radiometer on ESA ERS-2 satellite (ATSR-2) Gridded Brightness Temperature/Reflectance (GBTR) Product. These data are the Level 1B product that consists of Top of Atmosphere (TOA) radiance measurements and brightness temperatures at full resolution for both the nadir and forward views. The product was calibrated for instrumental and atmospheric effects and re-sampled to a fixed grid aligned to the sub-satellite track. This product were derived from the Level 0 product and auxiliary data, and serves as the input data for all Level 2 products. The third reprocessing was done to implement the updated algorithms, processors, and auxiliary files.",
    "keywords": "ATSR, Gridded Brightness Temperature/Reflectance, GBTR ",
    "publicationState": "published",
    "dataPublishedTime": "2014-07-04T08:47:51",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/8122/?format=api",
        "dataPath": "/neodc/aatsr_multimission/atsr2-v2.1/data/at2_toa_1p",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 34850919348738,
        "numberOfFiles": 273970,
        "fileFormat": "Data are Envisat binary formatted, type \".E2\"."
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/2324/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "The data were acquired by the European Space Agency's (ESA) Envisat satellite, and the NERC Earth Observation Data Centre (NEODC) mirrors the data for UK users.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/5259/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19910/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/19730/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/19731/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32974/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32976/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32977/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32978/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32980/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41788/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41789/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32975/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": "https://api.catalogue.ceda.ac.uk/api/v2/composites/8124/?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"
        }
    ]
}