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/2dcc9754-7fcb-400e-b939-4b25c7e86e8f/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "https://demo.lizard.net/dd/api/v2/observationtypes/2dcc9754-7fcb-400e-b939-4b25c7e86e8f/?format=api",
    "id": "2dcc9754-7fcb-400e-b939-4b25c7e86e8f",
    "quantity": "Debiet",
    "unit": "m3/d",
    "parameterCode": "Debiet",
    "compartment": "AW",
    "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": ""
    }
}