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

{
    "ob_id": 7890,
    "uuid": "b99744be18e0490634870c54e016797e",
    "title": "NCAVEO: ASD Field spectra N4406 data collected from Brockley field, near Chilbolton on the 15th June 2006",
    "abstract": "The reflectance spectra of the spring barley of field Brockley, near Chilbolton was collected as part of the Network for Calibration and Validation of Earth Observation data (NCAVEO) 2006 Field Campaign. This dataset compromises the data which was collected on the 15th June. Measurements were also taken on the 18th at this location, the dataset record for which is available through linked documentation. Measurements were recorded using an ASD N4406 FieldSpec Pro, measurements having been taken at 5 flags within the field. After the exclusion of noisy bands, the spectra contains 1926 bands, covering the wavelengths 350-1354 nm, 1409-1811 nm and 1952-2496 nm. For further information on the processing of the raw data please see the dataset's metadata pdf in linked documentation. Please note that all raw spectra files collected during the NCAVEO campaign with ASD N4406 have incorrect dates. The laptop computer used with the ASD had the month accidently set to JULY instead of June. The DAY of month and TIME (UTC) are correct in all cases. All other files (FSF spreadsheets and Excel/ENVI summary outputs) are marked with the correct 15-18th June 2006 dates.  ",
    "keywords": "NCAVEO, ASD FIELDSPEC PRO, BROCKLEY, CHILBOLTON",
    "publicationState": "published",
    "dataPublishedTime": "2007-10-17T14:13:46",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/7891/?format=api",
        "dataPath": "/neodc/ncaveo_field/data/Field_spectra/BK_060615",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 2609892,
        "numberOfFiles": 11,
        "fileFormat": "The associated pdf file ‘BK_060615_abs_10.pdf’ contains a plot of all 30 spectra with the noisy bands excluded. All the bands for the flag sites have been saved into an ENVI spectral library (‘BK_060615_abs_10’) and out from ENVI as a text file (‘BK_060615_abs_10.txt’). "
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/2258/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/172/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "These data were provided to NEODC by university of Southampton, who carried out work to convert formats to NASA-Ames, and write metadata documents. The metadata documents describing the processing are archived alongside the data as PDF files.",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/5129/?format=api"
    ],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/7827/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/7824/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/30128/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32454/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32453/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32456/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32457/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32458/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32459/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32460/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32455/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/7893/?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"
        }
    ]
}