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/53ea6a67-7754-42e4-818b-9b69375c5cf0/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "https://demo.lizard.net/dd/api/v2/observationtypes/53ea6a67-7754-42e4-818b-9b69375c5cf0/?format=api",
    "id": "53ea6a67-7754-42e4-818b-9b69375c5cf0",
    "quantity": "Neerslag",
    "unit": "mm",
    "parameterCode": "Neerslag",
    "compartment": "NT",
    "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": ""
    }
}