From 83018fabe04399a819a47764993751bcbb31dc6e Mon Sep 17 00:00:00 2001
From: "p.vanderwilt"
Date: Mon, 29 Sep 2025 16:06:06 +0200
Subject: [PATCH 01/15] Allow for multiple parents
---
src/helper/childRegistrationUtils.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/helper/childRegistrationUtils.js b/src/helper/childRegistrationUtils.js
index ea083ec..9b821ac 100644
--- a/src/helper/childRegistrationUtils.js
+++ b/src/helper/childRegistrationUtils.js
@@ -11,6 +11,10 @@ class ChildRegistrationUtils {
this.logger.debug(`Registering child: ${name} (${id}) as ${softwareType} at ${positionVsParent}`);
+ if (Array.isArray(child.parent)) {
+ child.parent.push(this.mainClass);
+ }
+
// Enhanced child setup
child.parent = this.mainClass;
child.positionVsParent = positionVsParent;
From 3886277616d379887027c99f968faf8d8c518a17 Mon Sep 17 00:00:00 2001
From: "p.vanderwilt"
Date: Mon, 29 Sep 2025 17:13:34 +0200
Subject: [PATCH 02/15] Fix bug in parent registration code block
---
src/helper/childRegistrationUtils.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/helper/childRegistrationUtils.js b/src/helper/childRegistrationUtils.js
index 9b821ac..4beeea5 100644
--- a/src/helper/childRegistrationUtils.js
+++ b/src/helper/childRegistrationUtils.js
@@ -11,12 +11,12 @@ class ChildRegistrationUtils {
this.logger.debug(`Registering child: ${name} (${id}) as ${softwareType} at ${positionVsParent}`);
+ // Enhanced child setup - optional multiple parents
if (Array.isArray(child.parent)) {
child.parent.push(this.mainClass);
+ } else {
+ child.parent = this.mainClass;
}
-
- // Enhanced child setup
- child.parent = this.mainClass;
child.positionVsParent = positionVsParent;
// Enhanced measurement container with rich context
From f653a1e98c38c68ad6fcac551355e3f20121239a Mon Sep 17 00:00:00 2001
From: "p.vanderwilt"
Date: Fri, 24 Oct 2025 13:37:26 +0200
Subject: [PATCH 03/15] Refactor child setup to support multiple parents
consistently
---
src/helper/childRegistrationUtils.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/helper/childRegistrationUtils.js b/src/helper/childRegistrationUtils.js
index 4beeea5..aee60da 100644
--- a/src/helper/childRegistrationUtils.js
+++ b/src/helper/childRegistrationUtils.js
@@ -11,11 +11,11 @@ class ChildRegistrationUtils {
this.logger.debug(`Registering child: ${name} (${id}) as ${softwareType} at ${positionVsParent}`);
- // Enhanced child setup - optional multiple parents
+ // Enhanced child setup - multiple parents
if (Array.isArray(child.parent)) {
child.parent.push(this.mainClass);
} else {
- child.parent = this.mainClass;
+ child.parent = [this.mainClass];
}
child.positionVsParent = positionVsParent;
From 17662ef7cb5ae566ea4ee1269953e887b897d09a Mon Sep 17 00:00:00 2001
From: "p.vanderwilt"
Date: Fri, 31 Oct 2025 13:53:35 +0100
Subject: [PATCH 04/15] Add total suspended solids sensor to assetData
---
datasets/assetData/assetData.json | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/datasets/assetData/assetData.json b/datasets/assetData/assetData.json
index 316708a..3909520 100644
--- a/datasets/assetData/assetData.json
+++ b/datasets/assetData/assetData.json
@@ -66,6 +66,15 @@
"units": ["g/m³", "mol/m³"]
}
]
+ },
+ {
+ "name": "Quantity (TSS)",
+ "models": [
+ {
+ "name": "VegaSolidsProbe",
+ "units": ["g/m³"]
+ }
+ ]
}
]
}
From d5d078413cb382457bf99562ca8b109dda7a96dc Mon Sep 17 00:00:00 2001
From: "p.vanderwilt"
Date: Fri, 31 Oct 2025 14:03:54 +0100
Subject: [PATCH 05/15] Add flowNumber configuration to define effluent flow
handling
---
src/configs/rotatingMachine.json | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/configs/rotatingMachine.json b/src/configs/rotatingMachine.json
index 2c83be7..6ef9955 100644
--- a/src/configs/rotatingMachine.json
+++ b/src/configs/rotatingMachine.json
@@ -412,6 +412,14 @@
],
"description": "The frequency at which calculations are performed."
}
+ },
+ "flowNumber": {
+ "default": 1,
+ "rules": {
+ "type": "number",
+ "nullable": false,
+ "description": "Defines which effluent flow of the parent node to handle."
+ }
}
}
\ No newline at end of file
From ce25ee930a4c1e2c4fc0b297a69978f14e12617e Mon Sep 17 00:00:00 2001
From: "p.vanderwilt"
Date: Wed, 12 Nov 2025 10:47:41 +0100
Subject: [PATCH 06/15] Add ammonium and NOx quantity sensors to assetData
---
datasets/assetData/assetData.json | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/datasets/assetData/assetData.json b/datasets/assetData/assetData.json
index 283ee06..3a5e639 100644
--- a/datasets/assetData/assetData.json
+++ b/datasets/assetData/assetData.json
@@ -67,6 +67,24 @@
}
]
},
+ {
+ "name": "Quantity (Ammonium)",
+ "models": [
+ {
+ "name": "VegaAmmoniaSense 10",
+ "units": ["g/m³", "mol/m³"]
+ }
+ ]
+ },
+ {
+ "name": "Quantity (NOx)",
+ "models": [
+ {
+ "name": "VegaNOxSense 10",
+ "units": ["g/m³", "mol/m³"]
+ }
+ ]
+ },
{
"name": "Quantity (TSS)",
"models": [
From 1e070931017240f58a6938d2515d37d72dfb2423 Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Mon, 17 Nov 2025 14:58:01 +0000
Subject: [PATCH 07/15] Update get_all_assets.php vanaf extern endpoint
---
data/get_all_assets.php | 1 +
1 file changed, 1 insertion(+)
create mode 100644 data/get_all_assets.php
diff --git a/data/get_all_assets.php b/data/get_all_assets.php
new file mode 100644
index 0000000..ec2d0b9
--- /dev/null
+++ b/data/get_all_assets.php
@@ -0,0 +1 @@
+{"success":true,"data":[{"asset_id":"1","profile_id":"0","asset_tag_number":"L001","asset_name":"Test laptop R&D","asset_description":"Test voor een laptop voor R&D","asset_date_created":"2025-01-16 14:19:32","asset_status":"actief ","product_model_id":"1","location_id":"1","product_model_uuid":"0123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":null,"process_name":"Voorbezinking"},{"asset_id":"2","profile_id":"1","asset_tag_number":"L9764","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:15","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"3","profile_id":"1","asset_tag_number":"L6616","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"4","profile_id":"1","asset_tag_number":"L4972","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"0","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"5","profile_id":"1","asset_tag_number":"L3586","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:48","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"1234567890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"6","profile_id":"1","asset_tag_number":"L6719","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:06:38","asset_status":"inactief","product_model_id":"2","location_id":"1","product_model_uuid":"12357890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 13","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"7","profile_id":"1","asset_tag_number":"P6565","asset_name":"sensor","asset_description":"Computer","asset_date_created":"2025-02-03 08:50:24","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"52","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"8","profile_id":"1","asset_tag_number":"P9573","asset_name":"sensor","asset_description":"Test3","asset_date_created":"2025-02-03 08:56:57","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"9","profile_id":"1","asset_tag_number":"P8081","asset_name":"sensor","asset_description":"Test4","asset_date_created":"2025-02-03 08:58:52","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"10","profile_id":"1","asset_tag_number":"P3179","asset_name":"sensor","asset_description":"Pressure Transmitter 1","asset_date_created":"2025-02-03 09:08:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"11","profile_id":"1","asset_tag_number":"P7975","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:12:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"12","profile_id":"1","asset_tag_number":"P7871","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:39","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"13","profile_id":"1","asset_tag_number":"P9288","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"14","profile_id":"1","asset_tag_number":"19468","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:12:12","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"15","profile_id":"1","asset_tag_number":"18804","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:54","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"16","profile_id":"1","asset_tag_number":"11795","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:55","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"17","profile_id":"1","asset_tag_number":"16230","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"18","profile_id":"1","asset_tag_number":"14600","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:38","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"19","profile_id":"1","asset_tag_number":"16535","asset_name":"AssetNaam2","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:52","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123453789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"20","profile_id":"1","asset_tag_number":"61894","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:26:47","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"21","profile_id":"1","asset_tag_number":"62803","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:06","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"22","profile_id":"1","asset_tag_number":"63753","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:32","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"23","profile_id":"1","asset_tag_number":"undefined","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:46:59","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"24","profile_id":"1","asset_tag_number":"null","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:49:03","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"26","profile_id":"1","asset_tag_number":"19134","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:50:36","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"27","profile_id":"1","asset_tag_number":"63247","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:52:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"28","profile_id":"1","asset_tag_number":"62149","asset_name":"sensor","asset_description":"PT2","asset_date_created":"2025-02-13 15:52:53","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"29","profile_id":"1","asset_tag_number":"61688","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:56:50","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"30","profile_id":"1","asset_tag_number":"62927","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:12","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"31","profile_id":"1","asset_tag_number":"66465","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:29","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"32","profile_id":"1","asset_tag_number":"65180","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:05:07","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"33","profile_id":"1","asset_tag_number":"65992","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"34","profile_id":"1","asset_tag_number":"67315","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:09:42","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"35","profile_id":"1","asset_tag_number":"18140","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"36","profile_id":"1","asset_tag_number":"L000035","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:57","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"37","profile_id":"1","asset_tag_number":"L000036","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:31:26","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"38","profile_id":"1","asset_tag_number":"P000037","asset_name":"sensor","asset_description":"testasdf","asset_date_created":"2025-02-13 16:47:33","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"39","profile_id":"1","asset_tag_number":"P000038","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:12:36","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"40","profile_id":"1","asset_tag_number":"P000039","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:13:17","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"41","profile_id":"1","asset_tag_number":"P000040","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:15:26","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"42","profile_id":"1","asset_tag_number":"P000041","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:22:02","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"43","profile_id":"1","asset_tag_number":"D000042","asset_name":"test","asset_description":"test","asset_date_created":"2025-02-20 13:35:30","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"44","profile_id":"1","asset_tag_number":"D000043","asset_name":"gdxg","asset_description":"dssdsdsd","asset_date_created":"2025-02-20 13:36:50","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"45","profile_id":"1","asset_tag_number":"P000044","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 14:06:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"46","profile_id":"1","asset_tag_number":"P000045","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:06:34","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"47","profile_id":"1","asset_tag_number":"P000046","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:00","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"48","profile_id":"1","asset_tag_number":"P000047","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:05","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"49","profile_id":"1","asset_tag_number":"P000048","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:24:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"50","profile_id":"1","asset_tag_number":"P000049","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:24:55","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"51","profile_id":"1","asset_tag_number":"P000050","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:27:36","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"52","profile_id":"1","asset_tag_number":"P000051","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:29:41","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"53","profile_id":"1","asset_tag_number":"P000052","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:30:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"54","profile_id":"1","asset_tag_number":"P000053","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:31:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"55","profile_id":"1","asset_tag_number":"P000054","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:36:19","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"56","profile_id":"1","asset_tag_number":"P000055","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:42:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"57","profile_id":"1","asset_tag_number":"P000056","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:43:46","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"58","profile_id":"1","asset_tag_number":"P000057","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:10","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"59","profile_id":"1","asset_tag_number":"P000058","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:38","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"123456789","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"60","profile_id":"1","asset_tag_number":"P000059","asset_name":"sensor","asset_description":"PT110","asset_date_created":"2025-02-25 15:25:01","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"}]}
\ No newline at end of file
From 0db90c0e4bbe21f4125db3f3f4c2853c2851d445 Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Mon, 17 Nov 2025 14:58:33 +0000
Subject: [PATCH 08/15] Delete data/get_all_assets.php
---
data/get_all_assets.php | 1 -
1 file changed, 1 deletion(-)
delete mode 100644 data/get_all_assets.php
diff --git a/data/get_all_assets.php b/data/get_all_assets.php
deleted file mode 100644
index ec2d0b9..0000000
--- a/data/get_all_assets.php
+++ /dev/null
@@ -1 +0,0 @@
-{"success":true,"data":[{"asset_id":"1","profile_id":"0","asset_tag_number":"L001","asset_name":"Test laptop R&D","asset_description":"Test voor een laptop voor R&D","asset_date_created":"2025-01-16 14:19:32","asset_status":"actief ","product_model_id":"1","location_id":"1","product_model_uuid":"0123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":null,"process_name":"Voorbezinking"},{"asset_id":"2","profile_id":"1","asset_tag_number":"L9764","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:15","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"3","profile_id":"1","asset_tag_number":"L6616","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"4","profile_id":"1","asset_tag_number":"L4972","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"0","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"5","profile_id":"1","asset_tag_number":"L3586","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:48","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"1234567890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"6","profile_id":"1","asset_tag_number":"L6719","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:06:38","asset_status":"inactief","product_model_id":"2","location_id":"1","product_model_uuid":"12357890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 13","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"7","profile_id":"1","asset_tag_number":"P6565","asset_name":"sensor","asset_description":"Computer","asset_date_created":"2025-02-03 08:50:24","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"52","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"8","profile_id":"1","asset_tag_number":"P9573","asset_name":"sensor","asset_description":"Test3","asset_date_created":"2025-02-03 08:56:57","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"9","profile_id":"1","asset_tag_number":"P8081","asset_name":"sensor","asset_description":"Test4","asset_date_created":"2025-02-03 08:58:52","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"10","profile_id":"1","asset_tag_number":"P3179","asset_name":"sensor","asset_description":"Pressure Transmitter 1","asset_date_created":"2025-02-03 09:08:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"11","profile_id":"1","asset_tag_number":"P7975","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:12:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"12","profile_id":"1","asset_tag_number":"P7871","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:39","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"13","profile_id":"1","asset_tag_number":"P9288","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"14","profile_id":"1","asset_tag_number":"19468","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:12:12","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"15","profile_id":"1","asset_tag_number":"18804","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:54","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"16","profile_id":"1","asset_tag_number":"11795","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:55","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"17","profile_id":"1","asset_tag_number":"16230","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"18","profile_id":"1","asset_tag_number":"14600","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:38","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"19","profile_id":"1","asset_tag_number":"16535","asset_name":"AssetNaam2","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:52","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123453789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"20","profile_id":"1","asset_tag_number":"61894","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:26:47","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"21","profile_id":"1","asset_tag_number":"62803","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:06","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"22","profile_id":"1","asset_tag_number":"63753","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:32","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"23","profile_id":"1","asset_tag_number":"undefined","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:46:59","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"24","profile_id":"1","asset_tag_number":"null","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:49:03","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"26","profile_id":"1","asset_tag_number":"19134","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:50:36","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"27","profile_id":"1","asset_tag_number":"63247","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:52:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"28","profile_id":"1","asset_tag_number":"62149","asset_name":"sensor","asset_description":"PT2","asset_date_created":"2025-02-13 15:52:53","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"29","profile_id":"1","asset_tag_number":"61688","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:56:50","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"30","profile_id":"1","asset_tag_number":"62927","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:12","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"31","profile_id":"1","asset_tag_number":"66465","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:29","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"32","profile_id":"1","asset_tag_number":"65180","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:05:07","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"33","profile_id":"1","asset_tag_number":"65992","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"34","profile_id":"1","asset_tag_number":"67315","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:09:42","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"35","profile_id":"1","asset_tag_number":"18140","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"36","profile_id":"1","asset_tag_number":"L000035","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:57","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"37","profile_id":"1","asset_tag_number":"L000036","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:31:26","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"38","profile_id":"1","asset_tag_number":"P000037","asset_name":"sensor","asset_description":"testasdf","asset_date_created":"2025-02-13 16:47:33","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"39","profile_id":"1","asset_tag_number":"P000038","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:12:36","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"40","profile_id":"1","asset_tag_number":"P000039","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:13:17","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"41","profile_id":"1","asset_tag_number":"P000040","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:15:26","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"42","profile_id":"1","asset_tag_number":"P000041","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:22:02","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"43","profile_id":"1","asset_tag_number":"D000042","asset_name":"test","asset_description":"test","asset_date_created":"2025-02-20 13:35:30","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"44","profile_id":"1","asset_tag_number":"D000043","asset_name":"gdxg","asset_description":"dssdsdsd","asset_date_created":"2025-02-20 13:36:50","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"45","profile_id":"1","asset_tag_number":"P000044","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 14:06:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"46","profile_id":"1","asset_tag_number":"P000045","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:06:34","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"47","profile_id":"1","asset_tag_number":"P000046","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:00","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"48","profile_id":"1","asset_tag_number":"P000047","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:05","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"49","profile_id":"1","asset_tag_number":"P000048","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:24:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"50","profile_id":"1","asset_tag_number":"P000049","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:24:55","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"51","profile_id":"1","asset_tag_number":"P000050","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:27:36","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"52","profile_id":"1","asset_tag_number":"P000051","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:29:41","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"53","profile_id":"1","asset_tag_number":"P000052","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:30:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"54","profile_id":"1","asset_tag_number":"P000053","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:31:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"55","profile_id":"1","asset_tag_number":"P000054","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:36:19","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"56","profile_id":"1","asset_tag_number":"P000055","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:42:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"57","profile_id":"1","asset_tag_number":"P000056","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:43:46","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"58","profile_id":"1","asset_tag_number":"P000057","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:10","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"59","profile_id":"1","asset_tag_number":"P000058","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:38","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"123456789","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"60","profile_id":"1","asset_tag_number":"P000059","asset_name":"sensor","asset_description":"PT110","asset_date_created":"2025-02-25 15:25:01","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"}]}
\ No newline at end of file
From 2b87c678765b8cb50ee050c5c0a702ef9d4029c3 Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Mon, 17 Nov 2025 15:00:01 +0000
Subject: [PATCH 09/15] Update get_all_assets.php vanaf extern endpoint
---
datasets/get_all_assets.php | 1 +
1 file changed, 1 insertion(+)
create mode 100644 datasets/get_all_assets.php
diff --git a/datasets/get_all_assets.php b/datasets/get_all_assets.php
new file mode 100644
index 0000000..ec2d0b9
--- /dev/null
+++ b/datasets/get_all_assets.php
@@ -0,0 +1 @@
+{"success":true,"data":[{"asset_id":"1","profile_id":"0","asset_tag_number":"L001","asset_name":"Test laptop R&D","asset_description":"Test voor een laptop voor R&D","asset_date_created":"2025-01-16 14:19:32","asset_status":"actief ","product_model_id":"1","location_id":"1","product_model_uuid":"0123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":null,"process_name":"Voorbezinking"},{"asset_id":"2","profile_id":"1","asset_tag_number":"L9764","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:15","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"3","profile_id":"1","asset_tag_number":"L6616","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"4","profile_id":"1","asset_tag_number":"L4972","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"0","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"5","profile_id":"1","asset_tag_number":"L3586","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:48","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"1234567890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"6","profile_id":"1","asset_tag_number":"L6719","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:06:38","asset_status":"inactief","product_model_id":"2","location_id":"1","product_model_uuid":"12357890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 13","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"7","profile_id":"1","asset_tag_number":"P6565","asset_name":"sensor","asset_description":"Computer","asset_date_created":"2025-02-03 08:50:24","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"52","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"8","profile_id":"1","asset_tag_number":"P9573","asset_name":"sensor","asset_description":"Test3","asset_date_created":"2025-02-03 08:56:57","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"9","profile_id":"1","asset_tag_number":"P8081","asset_name":"sensor","asset_description":"Test4","asset_date_created":"2025-02-03 08:58:52","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"10","profile_id":"1","asset_tag_number":"P3179","asset_name":"sensor","asset_description":"Pressure Transmitter 1","asset_date_created":"2025-02-03 09:08:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"11","profile_id":"1","asset_tag_number":"P7975","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:12:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"12","profile_id":"1","asset_tag_number":"P7871","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:39","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"13","profile_id":"1","asset_tag_number":"P9288","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"14","profile_id":"1","asset_tag_number":"19468","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:12:12","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"15","profile_id":"1","asset_tag_number":"18804","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:54","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"16","profile_id":"1","asset_tag_number":"11795","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:55","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"17","profile_id":"1","asset_tag_number":"16230","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"18","profile_id":"1","asset_tag_number":"14600","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:38","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"19","profile_id":"1","asset_tag_number":"16535","asset_name":"AssetNaam2","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:52","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123453789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"20","profile_id":"1","asset_tag_number":"61894","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:26:47","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"21","profile_id":"1","asset_tag_number":"62803","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:06","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"22","profile_id":"1","asset_tag_number":"63753","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:32","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"23","profile_id":"1","asset_tag_number":"undefined","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:46:59","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"24","profile_id":"1","asset_tag_number":"null","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:49:03","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"26","profile_id":"1","asset_tag_number":"19134","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:50:36","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"27","profile_id":"1","asset_tag_number":"63247","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:52:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"28","profile_id":"1","asset_tag_number":"62149","asset_name":"sensor","asset_description":"PT2","asset_date_created":"2025-02-13 15:52:53","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"29","profile_id":"1","asset_tag_number":"61688","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:56:50","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"30","profile_id":"1","asset_tag_number":"62927","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:12","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"31","profile_id":"1","asset_tag_number":"66465","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:29","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"32","profile_id":"1","asset_tag_number":"65180","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:05:07","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"33","profile_id":"1","asset_tag_number":"65992","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"34","profile_id":"1","asset_tag_number":"67315","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:09:42","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"35","profile_id":"1","asset_tag_number":"18140","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"36","profile_id":"1","asset_tag_number":"L000035","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:57","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"37","profile_id":"1","asset_tag_number":"L000036","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:31:26","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"38","profile_id":"1","asset_tag_number":"P000037","asset_name":"sensor","asset_description":"testasdf","asset_date_created":"2025-02-13 16:47:33","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"39","profile_id":"1","asset_tag_number":"P000038","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:12:36","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"40","profile_id":"1","asset_tag_number":"P000039","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:13:17","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"41","profile_id":"1","asset_tag_number":"P000040","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:15:26","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"42","profile_id":"1","asset_tag_number":"P000041","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:22:02","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"43","profile_id":"1","asset_tag_number":"D000042","asset_name":"test","asset_description":"test","asset_date_created":"2025-02-20 13:35:30","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"44","profile_id":"1","asset_tag_number":"D000043","asset_name":"gdxg","asset_description":"dssdsdsd","asset_date_created":"2025-02-20 13:36:50","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"45","profile_id":"1","asset_tag_number":"P000044","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 14:06:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"46","profile_id":"1","asset_tag_number":"P000045","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:06:34","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"47","profile_id":"1","asset_tag_number":"P000046","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:00","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"48","profile_id":"1","asset_tag_number":"P000047","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:05","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"49","profile_id":"1","asset_tag_number":"P000048","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:24:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"50","profile_id":"1","asset_tag_number":"P000049","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:24:55","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"51","profile_id":"1","asset_tag_number":"P000050","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:27:36","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"52","profile_id":"1","asset_tag_number":"P000051","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:29:41","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"53","profile_id":"1","asset_tag_number":"P000052","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:30:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"54","profile_id":"1","asset_tag_number":"P000053","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:31:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"55","profile_id":"1","asset_tag_number":"P000054","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:36:19","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"56","profile_id":"1","asset_tag_number":"P000055","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:42:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"57","profile_id":"1","asset_tag_number":"P000056","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:43:46","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"58","profile_id":"1","asset_tag_number":"P000057","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:10","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"59","profile_id":"1","asset_tag_number":"P000058","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:38","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"123456789","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"60","profile_id":"1","asset_tag_number":"P000059","asset_name":"sensor","asset_description":"PT110","asset_date_created":"2025-02-25 15:25:01","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"}]}
\ No newline at end of file
From 1e5ef47a4dfb6d12547e26b5332b950dd1d736a6 Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Mon, 17 Nov 2025 15:57:02 +0000
Subject: [PATCH 10/15] Delete datasets/get_all_assets.php
---
datasets/get_all_assets.php | 1 -
1 file changed, 1 deletion(-)
delete mode 100644 datasets/get_all_assets.php
diff --git a/datasets/get_all_assets.php b/datasets/get_all_assets.php
deleted file mode 100644
index ec2d0b9..0000000
--- a/datasets/get_all_assets.php
+++ /dev/null
@@ -1 +0,0 @@
-{"success":true,"data":[{"asset_id":"1","profile_id":"0","asset_tag_number":"L001","asset_name":"Test laptop R&D","asset_description":"Test voor een laptop voor R&D","asset_date_created":"2025-01-16 14:19:32","asset_status":"actief ","product_model_id":"1","location_id":"1","product_model_uuid":"0123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":null,"process_name":"Voorbezinking"},{"asset_id":"2","profile_id":"1","asset_tag_number":"L9764","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:15","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"3","profile_id":"1","asset_tag_number":"L6616","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"4","profile_id":"1","asset_tag_number":"L4972","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"0","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"5","profile_id":"1","asset_tag_number":"L3586","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:48","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"1234567890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"6","profile_id":"1","asset_tag_number":"L6719","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:06:38","asset_status":"inactief","product_model_id":"2","location_id":"1","product_model_uuid":"12357890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 13","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"7","profile_id":"1","asset_tag_number":"P6565","asset_name":"sensor","asset_description":"Computer","asset_date_created":"2025-02-03 08:50:24","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"52","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"8","profile_id":"1","asset_tag_number":"P9573","asset_name":"sensor","asset_description":"Test3","asset_date_created":"2025-02-03 08:56:57","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"9","profile_id":"1","asset_tag_number":"P8081","asset_name":"sensor","asset_description":"Test4","asset_date_created":"2025-02-03 08:58:52","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"10","profile_id":"1","asset_tag_number":"P3179","asset_name":"sensor","asset_description":"Pressure Transmitter 1","asset_date_created":"2025-02-03 09:08:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"11","profile_id":"1","asset_tag_number":"P7975","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:12:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"12","profile_id":"1","asset_tag_number":"P7871","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:39","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"13","profile_id":"1","asset_tag_number":"P9288","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"14","profile_id":"1","asset_tag_number":"19468","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:12:12","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"15","profile_id":"1","asset_tag_number":"18804","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:54","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"16","profile_id":"1","asset_tag_number":"11795","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:55","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"17","profile_id":"1","asset_tag_number":"16230","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"18","profile_id":"1","asset_tag_number":"14600","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:38","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"19","profile_id":"1","asset_tag_number":"16535","asset_name":"AssetNaam2","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:52","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123453789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"20","profile_id":"1","asset_tag_number":"61894","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:26:47","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"21","profile_id":"1","asset_tag_number":"62803","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:06","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"22","profile_id":"1","asset_tag_number":"63753","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:32","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"23","profile_id":"1","asset_tag_number":"undefined","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:46:59","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"24","profile_id":"1","asset_tag_number":"null","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:49:03","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"26","profile_id":"1","asset_tag_number":"19134","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:50:36","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"27","profile_id":"1","asset_tag_number":"63247","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:52:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"28","profile_id":"1","asset_tag_number":"62149","asset_name":"sensor","asset_description":"PT2","asset_date_created":"2025-02-13 15:52:53","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"29","profile_id":"1","asset_tag_number":"61688","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:56:50","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"30","profile_id":"1","asset_tag_number":"62927","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:12","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"31","profile_id":"1","asset_tag_number":"66465","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:29","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"32","profile_id":"1","asset_tag_number":"65180","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:05:07","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"33","profile_id":"1","asset_tag_number":"65992","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"34","profile_id":"1","asset_tag_number":"67315","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:09:42","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"35","profile_id":"1","asset_tag_number":"18140","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"36","profile_id":"1","asset_tag_number":"L000035","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:57","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"37","profile_id":"1","asset_tag_number":"L000036","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:31:26","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"38","profile_id":"1","asset_tag_number":"P000037","asset_name":"sensor","asset_description":"testasdf","asset_date_created":"2025-02-13 16:47:33","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"39","profile_id":"1","asset_tag_number":"P000038","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:12:36","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"40","profile_id":"1","asset_tag_number":"P000039","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:13:17","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"41","profile_id":"1","asset_tag_number":"P000040","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:15:26","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"42","profile_id":"1","asset_tag_number":"P000041","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:22:02","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"43","profile_id":"1","asset_tag_number":"D000042","asset_name":"test","asset_description":"test","asset_date_created":"2025-02-20 13:35:30","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"44","profile_id":"1","asset_tag_number":"D000043","asset_name":"gdxg","asset_description":"dssdsdsd","asset_date_created":"2025-02-20 13:36:50","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"45","profile_id":"1","asset_tag_number":"P000044","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 14:06:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"46","profile_id":"1","asset_tag_number":"P000045","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:06:34","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"47","profile_id":"1","asset_tag_number":"P000046","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:00","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"48","profile_id":"1","asset_tag_number":"P000047","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:05","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"49","profile_id":"1","asset_tag_number":"P000048","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:24:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"50","profile_id":"1","asset_tag_number":"P000049","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:24:55","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"51","profile_id":"1","asset_tag_number":"P000050","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:27:36","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"52","profile_id":"1","asset_tag_number":"P000051","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:29:41","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"53","profile_id":"1","asset_tag_number":"P000052","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:30:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"54","profile_id":"1","asset_tag_number":"P000053","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:31:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"55","profile_id":"1","asset_tag_number":"P000054","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:36:19","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"56","profile_id":"1","asset_tag_number":"P000055","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:42:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"57","profile_id":"1","asset_tag_number":"P000056","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:43:46","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"58","profile_id":"1","asset_tag_number":"P000057","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:10","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"59","profile_id":"1","asset_tag_number":"P000058","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:38","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"123456789","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"60","profile_id":"1","asset_tag_number":"P000059","asset_name":"sensor","asset_description":"PT110","asset_date_created":"2025-02-25 15:25:01","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"}]}
\ No newline at end of file
From 5439d5111a52e23195b46799d44674de5ba2baad Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Mon, 17 Nov 2025 15:57:08 +0000
Subject: [PATCH 11/15] Delete datasets/tagcodeapp_assets.json
---
datasets/tagcodeapp_assets.json | 1 -
1 file changed, 1 deletion(-)
delete mode 100644 datasets/tagcodeapp_assets.json
diff --git a/datasets/tagcodeapp_assets.json b/datasets/tagcodeapp_assets.json
deleted file mode 100644
index ec2d0b9..0000000
--- a/datasets/tagcodeapp_assets.json
+++ /dev/null
@@ -1 +0,0 @@
-{"success":true,"data":[{"asset_id":"1","profile_id":"0","asset_tag_number":"L001","asset_name":"Test laptop R&D","asset_description":"Test voor een laptop voor R&D","asset_date_created":"2025-01-16 14:19:32","asset_status":"actief ","product_model_id":"1","location_id":"1","product_model_uuid":"0123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":null,"process_name":"Voorbezinking"},{"asset_id":"2","profile_id":"1","asset_tag_number":"L9764","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:15","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"3","profile_id":"1","asset_tag_number":"L6616","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:03:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"4","profile_id":"1","asset_tag_number":"L4972","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"0","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"5","profile_id":"1","asset_tag_number":"L3586","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:05:48","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"1234567890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"6","profile_id":"1","asset_tag_number":"L6719","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-01-18 19:06:38","asset_status":"inactief","product_model_id":"2","location_id":"1","product_model_uuid":"12357890","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 13","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"7","profile_id":"1","asset_tag_number":"P6565","asset_name":"sensor","asset_description":"Computer","asset_date_created":"2025-02-03 08:50:24","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"52","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"8","profile_id":"1","asset_tag_number":"P9573","asset_name":"sensor","asset_description":"Test3","asset_date_created":"2025-02-03 08:56:57","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"9","profile_id":"1","asset_tag_number":"P8081","asset_name":"sensor","asset_description":"Test4","asset_date_created":"2025-02-03 08:58:52","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"10","profile_id":"1","asset_tag_number":"P3179","asset_name":"sensor","asset_description":"Pressure Transmitter 1","asset_date_created":"2025-02-03 09:08:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"11","profile_id":"1","asset_tag_number":"P7975","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:12:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"12","profile_id":"1","asset_tag_number":"P7871","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:39","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"13","profile_id":"1","asset_tag_number":"P9288","asset_name":"sensor","asset_description":"PT99","asset_date_created":"2025-02-03 10:50:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"14","profile_id":"1","asset_tag_number":"19468","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:12:12","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"15","profile_id":"1","asset_tag_number":"18804","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:54","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"16","profile_id":"1","asset_tag_number":"11795","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:13:55","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"17","profile_id":"1","asset_tag_number":"16230","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"18","profile_id":"1","asset_tag_number":"14600","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:38","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"19","profile_id":"1","asset_tag_number":"16535","asset_name":"AssetNaam2","asset_description":"Beschrijving","asset_date_created":"2025-02-13 14:14:52","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123453789","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"20","profile_id":"1","asset_tag_number":"61894","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:26:47","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"21","profile_id":"1","asset_tag_number":"62803","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:06","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"22","profile_id":"1","asset_tag_number":"63753","asset_name":"sensor","asset_description":"PT999","asset_date_created":"2025-02-13 15:27:32","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"23","profile_id":"1","asset_tag_number":"undefined","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:46:59","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"24","profile_id":"1","asset_tag_number":"null","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:49:03","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"26","profile_id":"1","asset_tag_number":"19134","asset_name":"AssetNaam","asset_description":"Beschrijving","asset_date_created":"2025-02-13 15:50:36","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"27","profile_id":"1","asset_tag_number":"63247","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:52:43","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"28","profile_id":"1","asset_tag_number":"62149","asset_name":"sensor","asset_description":"PT2","asset_date_created":"2025-02-13 15:52:53","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"29","profile_id":"1","asset_tag_number":"61688","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 15:56:50","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"30","profile_id":"1","asset_tag_number":"62927","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:12","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"31","profile_id":"1","asset_tag_number":"66465","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:02:29","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"32","profile_id":"1","asset_tag_number":"65180","asset_name":"sensor","asset_description":"PT1","asset_date_created":"2025-02-13 16:05:07","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":"Voorbezinking"},{"asset_id":"33","profile_id":"1","asset_tag_number":"65992","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:05:18","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"34","profile_id":"1","asset_tag_number":"67315","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:09:42","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"35","profile_id":"1","asset_tag_number":"18140","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:37","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"36","profile_id":"1","asset_tag_number":"L000035","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:22:57","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"37","profile_id":"1","asset_tag_number":"L000036","asset_name":"AssetNaamtest","asset_description":"Beschrijving","asset_date_created":"2025-02-13 16:31:26","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"123456789","process_id":"11","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":null},{"asset_id":"38","profile_id":"1","asset_tag_number":"P000037","asset_name":"sensor","asset_description":"testasdf","asset_date_created":"2025-02-13 16:47:33","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"39","profile_id":"1","asset_tag_number":"P000038","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:12:36","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"40","profile_id":"1","asset_tag_number":"P000039","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:13:17","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"41","profile_id":"1","asset_tag_number":"P000040","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:15:26","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"42","profile_id":"1","asset_tag_number":"P000041","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 13:22:02","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"43","profile_id":"1","asset_tag_number":"D000042","asset_name":"test","asset_description":"test","asset_date_created":"2025-02-20 13:35:30","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"44","profile_id":"1","asset_tag_number":"D000043","asset_name":"gdxg","asset_description":"dssdsdsd","asset_date_created":"2025-02-20 13:36:50","asset_status":"inactief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"45","profile_id":"1","asset_tag_number":"P000044","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 14:06:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"46","profile_id":"1","asset_tag_number":"P000045","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:06:34","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"47","profile_id":"1","asset_tag_number":"P000046","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:00","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"48","profile_id":"1","asset_tag_number":"P000047","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:23:05","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"49","profile_id":"1","asset_tag_number":"P000048","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:24:47","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"50","profile_id":"1","asset_tag_number":"P000049","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:24:55","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"51","profile_id":"1","asset_tag_number":"P000050","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:27:36","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"52","profile_id":"1","asset_tag_number":"P000051","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:29:41","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"53","profile_id":"1","asset_tag_number":"P000052","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:30:53","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"54","profile_id":"1","asset_tag_number":"P000053","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:31:48","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"55","profile_id":"1","asset_tag_number":"P000054","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:36:19","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"56","profile_id":"1","asset_tag_number":"P000055","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:42:37","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"57","profile_id":"1","asset_tag_number":"P000056","asset_name":"pump","asset_description":"m2","asset_date_created":"2025-02-20 15:43:46","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"58","profile_id":"1","asset_tag_number":"P000057","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:10","asset_status":"actief","product_model_id":null,"location_id":null,"product_model_uuid":null,"process_id":null,"location_latitude":null,"location_longitude":null,"location_name":null,"location_description":null,"location_address":null,"product_model_name":null,"product_model_description":null,"product_subtype_name":null,"profile_name":"Watersystemen","process_name":null},{"asset_id":"59","profile_id":"1","asset_tag_number":"P000058","asset_name":"pump","asset_description":"m1","asset_date_created":"2025-02-20 15:46:38","asset_status":"actief","product_model_id":"6","location_id":"1","product_model_uuid":"123456789","process_id":"2147483647","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Vegabar 14","product_model_description":"vegabar 14","product_subtype_name":"pressure","profile_name":"Watersystemen","process_name":null},{"asset_id":"60","profile_id":"1","asset_tag_number":"P000059","asset_name":"sensor","asset_description":"PT110","asset_date_created":"2025-02-25 15:25:01","asset_status":"actief","product_model_id":"1","location_id":"1","product_model_uuid":"b02b3a50-3f36-4ab0-9479-84de2fca9cb1","process_id":"1","location_latitude":"51.6314","location_longitude":"4.708","location_name":"RWZI Nieuwveer","location_description":null,"location_address":null,"product_model_name":"Macbook Air 12","product_model_description":null,"product_subtype_name":"Laptop","profile_name":"Watersystemen","process_name":"Voorbezinking"}]}
\ No newline at end of file
From dafe4c5336e4cd4235efd865568ca8cf934a354c Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Mon, 17 Nov 2025 15:57:15 +0000
Subject: [PATCH 12/15] Delete datasets/tagcodeapp_product_models.json
---
datasets/tagcodeapp_product_models.json | 229 ------------------------
1 file changed, 229 deletions(-)
delete mode 100644 datasets/tagcodeapp_product_models.json
diff --git a/datasets/tagcodeapp_product_models.json b/datasets/tagcodeapp_product_models.json
deleted file mode 100644
index aa1625e..0000000
--- a/datasets/tagcodeapp_product_models.json
+++ /dev/null
@@ -1,229 +0,0 @@
-{
- "success": true,
- "message": "Product modellen succesvol opgehaald.",
- "data": [
- {
- "id": "1",
- "name": "Macbook Air 12",
- "product_model_subtype_id": "1",
- "product_model_description": null,
- "vendor_id": "1",
- "product_model_status": null,
- "vendor_name": "Apple",
- "product_subtype_name": "Laptop",
- "product_model_meta": []
- },
- {
- "id": "2",
- "name": "Macbook Air 13",
- "product_model_subtype_id": "1",
- "product_model_description": null,
- "vendor_id": "1",
- "product_model_status": null,
- "vendor_name": "Apple",
- "product_subtype_name": "Laptop",
- "product_model_meta": []
- },
- {
- "id": "3",
- "name": "AirMac 1 128 GB White",
- "product_model_subtype_id": "2",
- "product_model_description": null,
- "vendor_id": "1",
- "product_model_status": null,
- "vendor_name": "Apple",
- "product_subtype_name": "Desktop",
- "product_model_meta": []
- },
- {
- "id": "4",
- "name": "AirMac 2 256 GB Black",
- "product_model_subtype_id": "2",
- "product_model_description": null,
- "vendor_id": "1",
- "product_model_status": null,
- "vendor_name": "Apple",
- "product_subtype_name": "Desktop",
- "product_model_meta": []
- },
- {
- "id": "5",
- "name": "AirMac 2 256 GB White",
- "product_model_subtype_id": "2",
- "product_model_description": null,
- "vendor_id": "1",
- "product_model_status": null,
- "vendor_name": "Apple",
- "product_subtype_name": "Desktop",
- "product_model_meta": []
- },
- {
- "id": "6",
- "name": "Vegabar 14",
- "product_model_subtype_id": "3",
- "product_model_description": "vegabar 14",
- "vendor_id": "4",
- "product_model_status": "Actief",
- "vendor_name": "vega",
- "product_subtype_name": "pressure",
- "product_model_meta": {
- "machineCurve": {
- "np": {
- "700": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 12.962460720759278,
- 20.65443723573673,
- 31.029351002816465,
- 44.58926412111886,
- 62.87460150792057
- ]
- },
- "800": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 13.035157335397209,
- 20.74906989186132,
- 31.029351002816465,
- 44.58926412111886,
- 62.87460150792057
- ]
- },
- "900": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 13.064663380158798,
- 20.927197054134297,
- 31.107126521989933,
- 44.58926412111886,
- 62.87460150792057
- ]
- },
- "1000": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 13.039271391128953,
- 21.08680188366637,
- 31.30899920405947,
- 44.58926412111886,
- 62.87460150792057
- ]
- },
- "1100": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 12.940075520572446,
- 21.220547481589954,
- 31.51468295656385,
- 44.621326083982,
- 62.87460150792057
- ]
- }
- },
- "nq": {
- "700": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 119.13938764447377,
- 150.12178608265387,
- 178.82698019104356,
- 202.3699313222398,
- 227.06382297856618
- ]
- },
- "800": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 112.59072109293984,
- 148.15847460389205,
- 178.82698019104356,
- 202.3699313222398,
- 227.06382297856618
- ]
- },
- "900": {
- "x": [
- 0,
- 24.59,
- 49.18,
- 73.77,
- 100
- ],
- "y": [
- 105.6217241180404,
- 144.00502117747064,
- 177.15212647335034,
- 202.3699313222398,
- 227.06382297856618
- ]
- }
- }
- }
- }
- },
- {
- "id": "7",
- "name": "Vegabar 10",
- "product_model_subtype_id": "3",
- "product_model_description": null,
- "vendor_id": "4",
- "product_model_status": "Actief",
- "vendor_name": "vega",
- "product_subtype_name": "pressure",
- "product_model_meta": []
- },
- {
- "id": "8",
- "name": "VegaFlow 10",
- "product_model_subtype_id": "4",
- "product_model_description": null,
- "vendor_id": "4",
- "product_model_status": "Actief",
- "vendor_name": "vega",
- "product_subtype_name": "flow",
- "product_model_meta": []
- }
- ]
-}
\ No newline at end of file
From f4629e5fcc772bc82831e7379c642059193b2a49 Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Mon, 17 Nov 2025 15:57:29 +0000
Subject: [PATCH 13/15] Update get_all_assets.php vanaf extern endpoint
---
datasets/get_all_assets.php | 54 +++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
create mode 100644 datasets/get_all_assets.php
diff --git a/datasets/get_all_assets.php b/datasets/get_all_assets.php
new file mode 100644
index 0000000..ad20bf0
--- /dev/null
+++ b/datasets/get_all_assets.php
@@ -0,0 +1,54 @@
+{
+ "suppliers": [
+ {
+ "name": "Apple",
+ "categories": [
+ {
+ "name": "Computer",
+ "types": [
+ {
+ "name": "Laptop",
+ "models": [
+ {
+ "name": "Macbook Air 12"
+ },
+ {
+ "name": "Macbook Air 13"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "vega",
+ "categories": [
+ {
+ "name": "sensor",
+ "types": [
+ {
+ "name": "flow",
+ "models": [
+ {
+ "name": "VegaFlow 10"
+ }
+ ]
+ },
+ {
+ "name": "pressure",
+ "models": [
+ {
+ "name": "Vegabar 10"
+ },
+ {
+ "name": "Vegabar 14"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
From ec42ebcb25e4912c2253c86539ef653ee576fec2 Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Thu, 20 Nov 2025 12:15:55 +0000
Subject: [PATCH 14/15] Update get_all_assets.php vanaf tagcode.app
---
datasets/get_all_assets.php | 23 ++++++++++++++++++-----
1 file changed, 18 insertions(+), 5 deletions(-)
diff --git a/datasets/get_all_assets.php b/datasets/get_all_assets.php
index ad20bf0..f085827 100644
--- a/datasets/get_all_assets.php
+++ b/datasets/get_all_assets.php
@@ -10,10 +10,12 @@
"name": "Laptop",
"models": [
{
- "name": "Macbook Air 12"
+ "name": "Macbook Air 12",
+ "attributes": []
},
{
- "name": "Macbook Air 13"
+ "name": "Macbook Air 13",
+ "attributes": []
}
]
}
@@ -31,7 +33,16 @@
"name": "flow",
"models": [
{
- "name": "VegaFlow 10"
+ "name": "VegaFlow 10",
+ "attributes": {
+ "test": [
+ "F"
+ ],
+ "unit": [
+ "C",
+ "F"
+ ]
+ }
}
]
},
@@ -39,10 +50,12 @@
"name": "pressure",
"models": [
{
- "name": "Vegabar 10"
+ "name": "Vegabar 10",
+ "attributes": []
},
{
- "name": "Vegabar 14"
+ "name": "Vegabar 14",
+ "attributes": []
}
]
}
From 858189d6dac4e5fddc6aa1740ec4c1b4802f170e Mon Sep 17 00:00:00 2001
From: pimmoerman
Date: Fri, 21 Nov 2025 03:00:01 +0000
Subject: [PATCH 15/15] Update get_all_assets.php vanaf tagcode.app
---
datasets/get_all_assets.php | 68 +------------------------------------
1 file changed, 1 insertion(+), 67 deletions(-)
diff --git a/datasets/get_all_assets.php b/datasets/get_all_assets.php
index f085827..f91cfe1 100644
--- a/datasets/get_all_assets.php
+++ b/datasets/get_all_assets.php
@@ -1,67 +1 @@
-{
- "suppliers": [
- {
- "name": "Apple",
- "categories": [
- {
- "name": "Computer",
- "types": [
- {
- "name": "Laptop",
- "models": [
- {
- "name": "Macbook Air 12",
- "attributes": []
- },
- {
- "name": "Macbook Air 13",
- "attributes": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "name": "vega",
- "categories": [
- {
- "name": "sensor",
- "types": [
- {
- "name": "flow",
- "models": [
- {
- "name": "VegaFlow 10",
- "attributes": {
- "test": [
- "F"
- ],
- "unit": [
- "C",
- "F"
- ]
- }
- }
- ]
- },
- {
- "name": "pressure",
- "models": [
- {
- "name": "Vegabar 10",
- "attributes": []
- },
- {
- "name": "Vegabar 14",
- "attributes": []
- }
- ]
- }
- ]
- }
- ]
- }
- ]
-}
\ No newline at end of file
+Database connection failed: SQLSTATE[28000] [1045] Access denied for user 'pimmoe1q_rdlab'@'localhost' (using password: YES)
\ No newline at end of file