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=5963
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=5964",
    "previous": "https://demo.lizard.net/api/v4/locations/?format=api&page=5962",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/locations/f3186bf9-9b5e-4926-b936-2677cd3bc6bc/?format=api",
            "uuid": "f3186bf9-9b5e-4926-b936-2677cd3bc6bc",
            "name": "34DOW027001",
            "code": "34DOW027001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    6.582986575830135,
                    52.10109979543383,
                    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": 124224,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28767,
                    "glue": "geen",
                    "aquifer": null,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-09T10:51:26Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-05-23T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-09T10:10:48Z",
                            "referenceLevel": 17.81,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 16.76,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 16.26,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-09-04T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 16.26,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": null,
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:12.597293Z",
            "last_modified": "2024-09-27T07:10:38.729336Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/48a17842-4da6-4e78-976a-0c09464d98ee/?format=api",
            "uuid": "48a17842-4da6-4e78-976a-0c09464d98ee",
            "name": "39GM003",
            "code": "39GM003",
            "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": [
                        169982.6,
                        432210.9
                    ],
                    "dateCreated": "2024-09-12T10:25:42Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-18T07:18:26Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-04-24T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:42Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 6.54,
                            "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-04-25T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "39GM003",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:37:21.358321Z",
            "last_modified": "2024-09-26T14:37:21.477953Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/aea8c9d3-5721-434c-9727-6a3ce0c40331/?format=api",
            "uuid": "aea8c9d3-5721-434c-9727-6a3ce0c40331",
            "name": "39GM003001",
            "code": "39GM003001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.604788219460977,
                    51.87823426241822,
                    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": 124225,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28790,
                    "glue": "geen",
                    "aquifer": 0,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T07:18:26Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-04-25T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:42Z",
                            "referenceLevel": 7.24,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 4.74,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 3.74,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-04-25T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 3.74,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:21.827321Z",
            "last_modified": "2024-09-27T07:10:38.911318Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/d8c7bb82-e1fc-4d26-b85f-f92258e967bd/?format=api",
            "uuid": "d8c7bb82-e1fc-4d26-b85f-f92258e967bd",
            "name": "39GM004",
            "code": "39GM004",
            "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": [
                        169256.5,
                        432578.6
                    ],
                    "dateCreated": "2024-09-12T10:25:42Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-18T07:23:04Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-04-24T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:42Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 6.86,
                            "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-04-25T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "39GM004",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:37:23.200587Z",
            "last_modified": "2024-09-26T14:37:23.310737Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/ad6902f0-b6d8-43d5-b200-58e81da8b4a4/?format=api",
            "uuid": "ad6902f0-b6d8-43d5-b200-58e81da8b4a4",
            "name": "39GM004001",
            "code": "39GM004001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.59425867772605,
                    51.88155831849096,
                    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": 124226,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28791,
                    "glue": "geen",
                    "aquifer": 0,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T07:23:04Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-04-25T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:43Z",
                            "referenceLevel": 7.53,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 5.13,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 0.13,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-04-25T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 0.13,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:23.659418Z",
            "last_modified": "2024-09-27T07:10:39.009639Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/41d4dcf2-b3d6-47af-98f3-61697d350fb0/?format=api",
            "uuid": "41d4dcf2-b3d6-47af-98f3-61697d350fb0",
            "name": "39GM005",
            "code": "39GM005",
            "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": [
                        170023.9,
                        433533.4
                    ],
                    "dateCreated": "2024-09-12T10:25:43Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-18T07:24:12Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-04-25T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:43Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 7.14,
                            "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-04-26T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "39GM005",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:37:25.062898Z",
            "last_modified": "2024-09-26T14:37:25.186064Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/8521d384-952e-4fbb-a14f-0ba339f9d46b/?format=api",
            "uuid": "8521d384-952e-4fbb-a14f-0ba339f9d46b",
            "name": "39GM005001",
            "code": "39GM005001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.605445705284685,
                    51.89012009574951,
                    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": 124227,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28792,
                    "glue": "geen",
                    "aquifer": null,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T07:24:12Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-04-26T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:43Z",
                            "referenceLevel": 7.78,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 2.78,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 0.78,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-04-26T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 0.78,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:25.534113Z",
            "last_modified": "2024-09-27T07:10:39.102243Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/93fdf210-d4a0-47f1-b18c-65c3d5c3b4cb/?format=api",
            "uuid": "93fdf210-d4a0-47f1-b18c-65c3d5c3b4cb",
            "name": "39HM015",
            "code": "39HM015",
            "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": [
                        170187.44,
                        431706.63
                    ],
                    "dateCreated": "2024-09-12T10:25:43Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-18T07:14:29Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-06-17T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:43Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 5.656,
                            "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-18T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "39HM015",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:37:26.938943Z",
            "last_modified": "2024-09-26T14:37:27.076062Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/2feee5c3-b209-4dd5-8b9e-9fd58c2eff46/?format=api",
            "uuid": "2feee5c3-b209-4dd5-8b9e-9fd58c2eff46",
            "name": "39HM015001",
            "code": "39HM015001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.607740765855682,
                    51.87369620570117,
                    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": 124228,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28793,
                    "glue": "geen",
                    "aquifer": 0,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T07:14:29Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-06-18T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:43Z",
                            "referenceLevel": 6.6,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 3.66,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 2.66,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-06-18T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 2.66,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:27.434267Z",
            "last_modified": "2024-09-27T07:10:39.222940Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/0c8e5e3d-d373-4167-83ab-1091716b28e2/?format=api",
            "uuid": "0c8e5e3d-d373-4167-83ab-1091716b28e2",
            "name": "39HM016",
            "code": "39HM016",
            "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": [
                        170437.53,
                        431187.51
                    ],
                    "dateCreated": "2024-09-12T10:25:43Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-18T07:20:37Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-06-17T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-12T10:25:43Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 5.681,
                            "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-18T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "39HM016",
                    "horizontalPositioningMethod": "RTKGPS2tot5cm",
                    "maintenanceResponsibleParty": "05069581"
                }
            },
            "created": "2024-09-26T14:37:28.856579Z",
            "last_modified": "2024-09-26T14:37:28.979376Z",
            "last_modified_by": "vitens_api"
        }
    ]
}