Endpoint for interacting with locations.

Query parameters

uuid: Text filter on uuid. Field filter method exact is supported.

name: Text filter on name. Field filter methods exact, startswith are supported.

code: Text filter on code. Field filter methods exact, startswith are supported.

access_modifier Filter on access_modifier, options are 'Public', 'Private', 'Common', or 'Hidden'.

created: Temporal filter on created. Supports various lookup types (exact, lt, lte, gt, gte; created__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

last_modified: Temporal filter on last_modified. Supports various lookup types (exact, lt, lte, gt, gte; last_modified__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

timeseries__start: Temporal filter on start field of the related timeseries. Supports various lookup types (exact, lt, lte, gt, gte; timeseries__start__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

timeseries__end: Temporal filter on end field of the related timeseries. Supports various lookup types (exact, lt, lte, gt, gte; timeseries__end__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

organisation__uuid Text filter on organisation__uuid. Field filter method exact is supported.

geom_isnull: Boolean filter on geometry.

geom_within: Spatial filter on geometry. Supports WKT, HEXEWKB, and GeoJSON.

object_id: Number filter on the id attribute of an object. Field filter method exact is supported. To be used in combination with object_type.

object__id: Numerical filter on object__id. Field filter method exact is supported.

object__type: Text filter on object__type. Field filter methods exact is supported.

ordering: Offers basic ordering functionality on the name and last_modified attribute of locations. Orderings may be reversed by prefixing the attribute with '-'.

page: To prevent system overloads, list-view results are paginated. This parameter specifies which page to return.

page_size: The maximum number of results to return in list-view. The default is 10.

Examples

?name__startswith=gemaal

?name=gemaal

?code=ABC

?code__startswith=A

?timeseries__start__gte=2017-01-01T00:00:00Z

?timeseries__end__lt=2018-01-01T00:00:00Z

?organisation__uuid=b10eaf1f-2867-4ffb-8f4a-5eb9bd37dbf1

?access_modifier=Private

?access_modifier=100

?created__gte=2017-01-01T00:00:00Z

?last_modified__lt=2018-01-01T00:00:00Z

?geom_isnull=false

?geom_within=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79, 4.98 52.73,
4.87 52.73))

?geom_within={"type": "Polygon", "coordinates": [[[4.87, 52.73],
[4.87, 52.79], [4.98, 52.79], [4.98, 52.73], [4.87, 52.73]]]}

?object__id=1

?object__type=building

?ordering=name
GET /api/v4/locations/?format=api&page=5961
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 59876,
    "next": "https://demo.lizard.net/api/v4/locations/?format=api&page=5962",
    "previous": "https://demo.lizard.net/api/v4/locations/?format=api&page=5960",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/locations/82b70fff-47af-4d58-a1c9-0547e17e5201/?format=api",
            "uuid": "82b70fff-47af-4d58-a1c9-0547e17e5201",
            "name": "28HM001001",
            "code": "28HM001001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    6.82175613774008,
                    52.27427353676049,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": {
                "id": 124214,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28782,
                    "glue": "geen",
                    "aquifer": 0,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T05:21:06Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-05-14T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:40Z",
                            "referenceLevel": 21.44,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 18.28,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 14.68,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-05-14T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 14.68,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:36:34.209787Z",
            "last_modified": "2024-09-27T07:10:37.206867Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/da65cabe-e7be-4463-aaa9-6529dc8033f1/?format=api",
            "uuid": "da65cabe-e7be-4463-aaa9-6529dc8033f1",
            "name": "29AM004",
            "code": "29AM004",
            "geometry": null,
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "crs": "RD",
                    "owner": null,
                    "nitgCode": null,
                    "wellCode": null,
                    "broEvents": [],
                    "broid_gmw": null,
                    "coordinates": [
                        268029.05,
                        490630.85
                    ],
                    "dateCreated": "2024-09-12T10:25:40Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-18T06:34:35Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-07-03T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:40Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 24.87,
                            "localVerticalReferencePoint": "NAP",
                            "groundLevelPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "wellStability": null,
                    "actueel_in_bro": false,
                    "deliver_to_bro": "leveren",
                    "deliveryContext": "publiekeTaak",
                    "initialFunction": "kwaliteitStand",
                    "groundLevelStable": "ja",
                    "constructionStandard": "geen",
                    "date_to_be_corrected": null,
                    "wellConstructionDate": "2024-07-04T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "29AM004",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:36:35.594848Z",
            "last_modified": "2024-09-26T14:36:35.718858Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/22b2de9a-23fe-4894-8a06-636a10c3c269/?format=api",
            "uuid": "22b2de9a-23fe-4894-8a06-636a10c3c269",
            "name": "29AM004001",
            "code": "29AM004001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    7.047766211343673,
                    52.39186414145284,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": {
                "id": 124215,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28783,
                    "glue": "geen",
                    "aquifer": 0,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T06:34:35Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-07-04T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:40Z",
                            "referenceLevel": 25.71,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 22.47,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 21.47,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-07-04T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 21.47,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:36:36.066041Z",
            "last_modified": "2024-09-27T07:10:37.135596Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/48d10a5d-40b5-4535-b0c5-bfefa89c2ded/?format=api",
            "uuid": "48d10a5d-40b5-4535-b0c5-bfefa89c2ded",
            "name": "29CM004",
            "code": "29CM004",
            "geometry": null,
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "crs": "RD",
                    "owner": null,
                    "nitgCode": null,
                    "wellCode": null,
                    "broEvents": [],
                    "broid_gmw": null,
                    "coordinates": [
                        261163.77,
                        476171.47
                    ],
                    "dateCreated": "2024-09-12T10:25:40Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-18T07:04:48Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-06-19T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:40Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 49.673,
                            "localVerticalReferencePoint": "NAP",
                            "groundLevelPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "wellStability": null,
                    "actueel_in_bro": false,
                    "deliver_to_bro": "leveren",
                    "deliveryContext": "publiekeTaak",
                    "initialFunction": "kwaliteitStand",
                    "groundLevelStable": "ja",
                    "constructionStandard": "geen",
                    "date_to_be_corrected": null,
                    "wellConstructionDate": "2024-06-20T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "29CM004",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:36:37.465111Z",
            "last_modified": "2024-09-26T14:36:37.586425Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/baf98858-9064-4659-91d6-ec3c0212e3d0/?format=api",
            "uuid": "baf98858-9064-4659-91d6-ec3c0212e3d0",
            "name": "29CM004001",
            "code": "29CM004001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    6.942383804741182,
                    52.26331891248297,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": {
                "id": 124216,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28784,
                    "glue": "geen",
                    "aquifer": 0,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T07:04:48Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-06-20T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:40Z",
                            "referenceLevel": 50.46,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 47.17,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 46.17,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-06-20T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 46.17,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:36:37.939603Z",
            "last_modified": "2024-09-27T07:10:37.052075Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/659da1c3-6d71-434e-ae27-fd7f7e0796ed/?format=api",
            "uuid": "659da1c3-6d71-434e-ae27-fd7f7e0796ed",
            "name": "34BM002",
            "code": "34BM002",
            "geometry": null,
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "crs": "RD",
                    "owner": null,
                    "nitgCode": null,
                    "wellCode": null,
                    "broEvents": [],
                    "broid_gmw": null,
                    "coordinates": [
                        235272.48,
                        465132.14
                    ],
                    "dateCreated": "2024-09-12T10:25:40Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-12T11:24:48Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-06-16T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:41Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 14.954,
                            "localVerticalReferencePoint": "NAP",
                            "groundLevelPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "wellStability": null,
                    "actueel_in_bro": false,
                    "deliver_to_bro": "leveren",
                    "deliveryContext": "publiekeTaak",
                    "initialFunction": "kwaliteitStand",
                    "groundLevelStable": "ja",
                    "constructionStandard": "geen",
                    "date_to_be_corrected": null,
                    "wellConstructionDate": "2024-06-17T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "34BM002",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:36:57.718235Z",
            "last_modified": "2024-09-26T14:36:57.859631Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/1cda08c6-d14c-4a77-9bab-86b39415f7be/?format=api",
            "uuid": "1cda08c6-d14c-4a77-9bab-86b39415f7be",
            "name": "34BM002001",
            "code": "34BM002001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    6.560577740431924,
                    52.16849946896652,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": {
                "id": 124217,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28785,
                    "glue": "geen",
                    "aquifer": null,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-12T11:24:48Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-06-17T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:41Z",
                            "referenceLevel": 15.7,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 12.95,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 11.95,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-06-17T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 11.95,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:36:58.240905Z",
            "last_modified": "2024-09-27T07:10:37.851788Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/37788577-4cf6-4e9e-8d7b-b1906debca0d/?format=api",
            "uuid": "37788577-4cf6-4e9e-8d7b-b1906debca0d",
            "name": "34BM003",
            "code": "34BM003",
            "geometry": null,
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "crs": "RD",
                    "owner": null,
                    "nitgCode": null,
                    "wellCode": null,
                    "broEvents": [],
                    "broid_gmw": null,
                    "coordinates": [
                        236285.05,
                        464281.2
                    ],
                    "dateCreated": "2024-09-12T10:25:41Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-12T11:25:03Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-05-13T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:41Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 15.23,
                            "localVerticalReferencePoint": "NAP",
                            "groundLevelPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "wellStability": null,
                    "actueel_in_bro": false,
                    "deliver_to_bro": "leveren",
                    "deliveryContext": "publiekeTaak",
                    "initialFunction": "kwaliteitStand",
                    "groundLevelStable": "ja",
                    "constructionStandard": "geen",
                    "date_to_be_corrected": null,
                    "wellConstructionDate": "2024-05-14T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "34BM003",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:36:59.667427Z",
            "last_modified": "2024-09-26T14:36:59.786321Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/0e5579c5-dd38-4d4d-ad3f-f77c4d970c6b/?format=api",
            "uuid": "0e5579c5-dd38-4d4d-ad3f-f77c4d970c6b",
            "name": "34BM003001",
            "code": "34BM003001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    6.575172163668772,
                    52.16070449763551,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": {
                "id": 124218,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28786,
                    "glue": "geen",
                    "aquifer": null,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-12T11:25:03Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-05-14T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:41Z",
                            "referenceLevel": 15.95,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 13.33,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 12.33,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-05-14T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 12.33,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:00.189524Z",
            "last_modified": "2024-09-27T07:10:37.966087Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/88c883c9-be6c-4eee-8249-39112487ca7d/?format=api",
            "uuid": "88c883c9-be6c-4eee-8249-39112487ca7d",
            "name": "34BM004",
            "code": "34BM004",
            "geometry": null,
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "crs": "RD",
                    "owner": null,
                    "nitgCode": null,
                    "wellCode": null,
                    "broEvents": [],
                    "broid_gmw": null,
                    "coordinates": [
                        236789.0,
                        464158.94
                    ],
                    "dateCreated": "2024-09-12T10:25:41Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-12T11:25:19Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-05-13T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:41Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 16.33,
                            "localVerticalReferencePoint": "NAP",
                            "groundLevelPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "wellStability": null,
                    "actueel_in_bro": false,
                    "deliver_to_bro": "leveren",
                    "deliveryContext": "publiekeTaak",
                    "initialFunction": "kwaliteitStand",
                    "groundLevelStable": "ja",
                    "constructionStandard": "geen",
                    "date_to_be_corrected": null,
                    "wellConstructionDate": "2024-05-14T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "34BM004",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:37:01.626829Z",
            "last_modified": "2024-09-26T14:37:01.749663Z",
            "last_modified_by": "vitens_api"
        }
    ]
}