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

{
    "ob_id": 25425,
    "uuid": "de37c54e59a548ccb9f168ee724f3769",
    "title": "APHH: Volatile organic compound (VOC) mixing ratios made at the IAP-Beijing site during the summer and winter campaigns",
    "abstract": "This dataset contains volatile organic compound (VOC) mixing ratios recorded during two intensive field campaigns in Beijing (winter: 12/11/2016 - 10/12/2016; and summer: 15/05/2017 - 24/06/2017) as part of the Atmospheric Pollution & Human Health in a Chinese Megacity (APHH) programme. \r\n\r\nThe species recorded include methanol, acetonitrile, acetaldehyde, acrolein, acetone, isoprene, methyl vinyl ketone and methacrolein, methyl ethyl ketone, benzene, toluene, C2-benzenes, C3-benzenes and monoterpenes. The data were recorded using a proton transfer reaction-time of flight-mass spectrometer (PTR-ToF-MS) from a sampling height of 100m.",
    "keywords": "Volatile Organic Compounds, VOCs, APHH, Beijing",
    "publicationState": "published",
    "dataPublishedTime": "2018-01-11T14:05:37",
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/25424/?format=api",
        "dataPath": "/badc/aphh/data/beijing/lanc-gas",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 298161,
        "numberOfFiles": 4,
        "fileFormat": "Data are NASA Ames formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/6881/?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/52526/?format=api"
    ],
    "dataLineage": "Data produced by APHH project participants at University of Lancaster and uploaded to 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/105659/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105657/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105658/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105660/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105661/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105662/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105663/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105655/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105656/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105664/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105665/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/105666/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/25427/?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"
        }
    ]
}