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

{
    "ob_id": 26181,
    "uuid": "8ed84f3c770544c49329df9b068ab662",
    "title": "APHH: Laser induced fluorescence (LIF) OH reactivity measurements made at the IAP-Beijing site during the winter and summer campaigns",
    "abstract": "This dataset contains Laser induced fluorescence (LIF) OH reactivity measurements made at the Institute of Atmospheric Physics land station (IAP), Beijing site during the winter and summer APHH-Beijing campaigns for the Atmospheric Pollution & Human Health in a Chinese Megacity (APHH) programme. \r\n\r\nThe Leeds OH reactivity instrument measures OH reactivity by photolysing ozone at 266 nm to produce OH, decay of OH with ambient air is measured with LIF (laser induced fluorescence) at 308 nm. The results generate a bi-exponential curve and a line of best fit can be used to calculate OH lifetime. The instrument is calibrated by flowing air zero through the instrument. The units for OH reactivity is in s-1. The data has been filtered for instrument instabilities such as pressure, laser power, high background (laser scatter) and laser alignment",
    "keywords": "OH, China, pollution, APHH",
    "publicationState": "published",
    "dataPublishedTime": "2018-07-26T15:43:30",
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/26217/?format=api",
        "dataPath": "/badc/aphh/data/beijing/leeds-lif",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 594072,
        "numberOfFiles": 3,
        "fileFormat": "Data are NASA Ames formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/7072/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/1856/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/3356/?format=api"
    ],
    "dataLineage": "Data produced by Atmospheric Pollution & Human Health (APHH) project participants at University of Leeds and uploaded to Centre for Environmental Data Anaylsis (CEDA) archive.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/24808/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/24817/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109540/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109541/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109532/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109534/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109535/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109536/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109537/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109538/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109539/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/109533/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/26182/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2522/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "registered",
            "accessRoles": null,
            "label": "registered: None group",
            "licenceURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}