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

{
    "ob_id": 7941,
    "uuid": "41a8097a36a2c26b316952bbec60b695",
    "title": "NCAVEO: Microtops II sun photometer data from the Cowdown Farm, Hampshire Golf club and Chilbolton Observatory field sites, Hampshire, UK",
    "abstract": "Sunphotometer data was collected on 17th June 2006 using three identical Microtops II instruments, as part of the Network for Calibration and Validation of Earth Observation data (NCAVEO) 2006 field experiment. The instruments were operated at three locations near Chilbolton: the roof of Chilbolton Facility for Atmospheric and Radio Research's (CFARR) main building, the Hampshire Golf Club and Cowdown Farm. \r\n\r\nOn using the three instruments together on the roof of the CFARR main building, results showed differences between the three instruments, with data from s/n 8407 being closest to that measured by the Cimel sunphotometer at the same location. Note that the date of s/n 8407 was set incorrectly to 2005, but has been corrected in the NASA Ames formatted file. This should not affect the data collected. The same instrument also did not record the water vapour amount, so this is shown as -999.0 in the data file. On the ‘golden day’, 17th June 2006, measurements were made with all three instruments every five minutes between 09:30 and 11:30 GMT. Sporadic measurements were also made at earlier and later times. The s/n 8407 did not make a reading at 11.15 as anticipated. A large number of parameters and calibration constants were used to achieve these readings and are included alongside the main data. For further information please refer to the Microtops II User’s Guide.",
    "keywords": "NCAVEO, SUN PHOTOMETER, CHILBOLTON, MICROTOPS II",
    "publicationState": "published",
    "dataPublishedTime": "2007-10-17T15:17:57",
    "doiPublishedTime": null,
    "updateFrequency": "notPlanned",
    "status": "completed",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/12740/?format=api",
        "dataPath": "/neodc/ncaveo_field/data/Microtops",
        "oldDataPath": [],
        "storageLocation": "internal",
        "storageStatus": "online",
        "volume": 155834,
        "numberOfFiles": 6,
        "fileFormat": "Data are NASA-Ames formatted"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/2272/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/172/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [
        "https://api.catalogue.ceda.ac.uk/api/v2/phenomona/86151/?format=api"
    ],
    "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/5161/?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/32584/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32589/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32583/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32586/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32587/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32588/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32590/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/32585/?format=api"
    ],
    "procedureAcquisition": "https://api.catalogue.ceda.ac.uk/api/v2/acquisitions/7943/?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"
        }
    ]
}