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

{
    "ob_id": 4766,
    "uuid": "0a6910dde9de1db7e3f82763696235bc",
    "title": "Convective Storm Initiation Project (CSIP): University of Salford Photograph Data",
    "abstract": "The University of Salford photograph data are digital photographs taken approximately every 30 minutes at the Faccombe wind turbine site, Hampshire. The dataset contains photographs taken on four days between the 11th of August 2005 and 25th of August 2005.\r\n\r\nThe latitude and longitude of the field site is N 51°19.51’ and W 1°26.46’ respectively. Photographs were taken approximately every 30 minutes and the pictures are orientated to a bearing of 310°.",
    "keywords": "CSIP, UFAM, AMF",
    "publicationState": "published",
    "dataPublishedTime": "2006-08-17T08:34:10",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/4767/?format=api",
        "dataPath": "/badc/csip/data/salford-photograph",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 50105708,
        "numberOfFiles": 81,
        "fileFormat": "Images are jpg formatted.\r\n\r\n"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/1357/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/811/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "Data were collected by the collected by the instrument scientist before preparation and delivery to the Convective Storm Initiation Project (CSIP) participants and then to the BADC for archiving.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/3197/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/4614/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/4611/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21776/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21775/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21777/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21778/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21779/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41118/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/41121/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/21781/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/54569/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/4769/?format=api",
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2543/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "registered",
            "accessRoles": null,
            "label": "registered: None group",
            "licenceURL": "https://artefacts.ceda.ac.uk/licences/missing_licence.pdf",
            "licenceClassifications": "unstated"
        }
    ],
    "discoveryKeywords": [
        {
            "ob_id": 1138,
            "name": "NDGO0003"
        }
    ]
}