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

{
    "ob_id": 6560,
    "uuid": "fb4182ed7419c0b62940d86a9e30f4f3",
    "title": "APPRAISE CLOUDS: black carbon mass loading measurements from the University of Manchester Multi-Angle Absorption Photometer deployed at the Chilbolton Observatory, Hampshire",
    "abstract": "Data were collected on the 27th of November 2008 and on 5th of January 2009 by the University of Manchester multi-angle absorption photometer at Chilbolton site in support of the FAAM campaign in the South-West of the UK. The dataset contains measurements of concentrations of black carbon mass loadings based on aerosol optical absorption.\r\n\r\nThe data were collected for use in the CLOUDS project, which is one of multiple projects within the APPRAISE (Aerosol Properties, PRocesses And Influences on the Earth's climate) programme.",
    "keywords": "appraise, cloud, black carbon",
    "publicationState": "published",
    "dataPublishedTime": "2011-06-16T11:41:54",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/6561/?format=api",
        "dataPath": "/badc/appraise/data/clouds/man-maap-bc",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 10113393,
        "numberOfFiles": 3,
        "fileFormat": "Nasa Ames"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/1927/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/92/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/83004/?format=api"
    ],
    "dataLineage": "Data for the period 2005 to 2010, provided as is by the APPRAISE campaign participants for archiving at the BADC.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/4285/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/6527/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/12229/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28339/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28341/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28342/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28343/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/44512/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/44516/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/46831/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28340/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/44513/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28345/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/71568/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/6562/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2526/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}