List of observation types.

Digitale Delta uses a different lookup field. Defining lookup_field on the serializer was not enough to get things working, it needs to be defined to the ViewSet as well.

** Query Parameters:**

code Optional text filter on code

parameter Optional text filter on parameter

unit Optional text filter on unit

id Text filter on uuid. Supports id__icontains and id__iexact as default. For example: ?id=c410d5a7-0f9c-4518-9089-e0d7a91591bB and ?id__icontains=c410d5a7-0

GET /dd/api/v2/observationtypes/0beeaa71-f261-49d2-a840-2e8fac446151/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "https://demo.lizard.net/dd/api/v2/observationtypes/0beeaa71-f261-49d2-a840-2e8fac446151/?format=api",
    "id": "0beeaa71-f261-49d2-a840-2e8fac446151",
    "quantity": "Luchttemperatuur",
    "unit": "oC",
    "parameterCode": "Luchttemperatuur",
    "compartment": "LT",
    "node": {
        "url": "https://demo.lizard.net/dd/api/v2/nodes/6be7b0dd-b65b-4e33-adcc-80ef1e28b4b5/?format=api",
        "uuid": "6be7b0dd-b65b-4e33-adcc-80ef1e28b4b5",
        "name": "Lizard",
        "description": "",
        "baseUrl": ""
    }
}