diff --git a/src/LoadPerformanceTest/Core/InstrumentDataPublisher.cs b/src/LoadPerformanceTest/Core/InstrumentDataPublisher.cs index 4ba98af..3cae5ef 100644 --- a/src/LoadPerformanceTest/Core/InstrumentDataPublisher.cs +++ b/src/LoadPerformanceTest/Core/InstrumentDataPublisher.cs @@ -1,4 +1,4 @@ -using LoadPerformanceTest.Logging; +using LoadPerformanceTest.Logging; using LoadPerformanceTest.Models; using LoadPerformanceTest.Services.EventHub; using LoadPerformanceTest.Utilities; @@ -71,7 +71,7 @@ public async Task PublishContinuouslyAsync(List<(string fileName, InstrumentData break; } } - Thread.Sleep(100); + //Thread.Sleep(100); } }); @@ -147,6 +147,7 @@ private async Task PublishDataTypeContinuouslyAsync( var publishCount = 0; var startTime = DateTime.UtcNow; + var nextFireTime = DateTime.UtcNow; var intervalSeconds = intervalMs / 1000.0; Logger.LogInfo($"Started continuous publishing for {dataType} with {intervalSeconds} second(s) interval."); @@ -155,32 +156,35 @@ private async Task PublishDataTypeContinuouslyAsync( { while (!cancellationToken.IsCancellationRequested) { - var updatedDataList = InstrumentDataBuilder.GenerateInstrumentDataFromInventory(jsonTemplate, _context.Tenants, dataType, _context.InstrumentManifests); - - if (updatedDataList.Count > 0) { - int successCount = 0, failCount = 0; + // Wait until next scheduled fire time + var delay = nextFireTime - DateTime.UtcNow; + if (delay > TimeSpan.Zero) + await Task.Delay(delay, cancellationToken); + + // Skip missed cycles if publishing took longer than the interval + var now = DateTime.UtcNow; + while (nextFireTime <= now) + nextFireTime = nextFireTime.AddMilliseconds(intervalMs); + + var updatedDataList = InstrumentDataBuilder.GenerateInstrumentDataFromInventory(jsonTemplate, _context.Tenants, dataType, _context.InstrumentManifests); - foreach (var (updatedJson, tenantId) in updatedDataList) + if (updatedDataList.Count > 0) { - try - { - await eventHubPublisher.PublishAsync(updatedJson, Path.GetFileNameWithoutExtension(fileName), tenantId, cancellationToken); - successCount++; - } - catch (Exception ex) when (!(ex is OperationCanceledException)) - { - failCount++; - Logger.LogError($"Failed to publish {dataType} for instrument: {ex.Message}", ex); - } + var eventTuples = updatedDataList.Select(d => (d.json, d.tenantId)); + var (successCount, failCount) = await eventHubPublisher.PublishBulkAsync( + eventTuples, + eventType: Path.GetFileNameWithoutExtension(fileName), + chunkSize: 50, + maxParallelism: 9, + cancellationToken: cancellationToken); + + publishCount++; + var elapsed = DateTime.UtcNow - startTime; + var lag = (DateTime.UtcNow - nextFireTime.AddMilliseconds(-intervalMs)).TotalSeconds; + Console.WriteLine($"[{DateTime.Now:HH:mm:ss}] {dataType}: Published batch #{publishCount} - {successCount} succeeded, {failCount} failed (Running: {elapsed:hh\\:mm\\:ss}, Lag: {lag:F1}s)"); } - - publishCount++; - var elapsed = DateTime.UtcNow - startTime; - Console.WriteLine($"[{DateTime.Now:HH:mm:ss}] {dataType}: Published batch #{publishCount} - {successCount} succeeded, {failCount} failed (Running: {elapsed:hh\\:mm\\:ss})"); } - - await Task.Delay(intervalMs, cancellationToken); } } catch (OperationCanceledException) diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants10-sensors500-0106261038.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants10-sensors500-0106261038.json new file mode 100644 index 0000000..998d322 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants10-sensors500-0106261038.json @@ -0,0 +1,4152 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_647934311", + "DeviceId": "5e153657-a9e2-40fd-8737-032a4e568f82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_222250536", + "DeviceId": "5c9d6434-7130-4c1e-a9fc-3a555e94b473", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973779576", + "DeviceId": "bc50105d-7a8b-4043-a792-dae73a313b1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851480553", + "DeviceId": "76469938-aad0-4edc-88fa-d118a849bce7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835915189", + "DeviceId": "274ea1b7-6e68-4e61-8793-96fd2aa68813", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_179589177", + "DeviceId": "d71069e3-5226-4384-bee7-6b278fb4c6c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130870196", + "DeviceId": "e78e98ec-6024-47f0-aab8-b4f4a0e31a2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341141439", + "DeviceId": "3d404e10-e303-402e-92e7-ab5ba3d4a585", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_544333578", + "DeviceId": "0b037e63-9896-41ed-83a1-f16c9698885d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_150965351", + "DeviceId": "1cf61500-4fc8-4f47-a494-1326c263e7db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_820717792", + "DeviceId": "19978bfc-9c4b-42e3-8ff3-b9a482d41d39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458395559", + "DeviceId": "af1344ea-b898-4d4a-bf62-acbac50cd0eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954345465", + "DeviceId": "e80d4267-3514-4a48-868b-4c93917d594f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_656527652", + "DeviceId": "5317f27f-f8ee-4a56-8eab-fe019599e905", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998063532", + "DeviceId": "11a05cf2-6219-4aea-9c7d-3ff78f3811cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_291137969", + "DeviceId": "a0c2fd7a-4fc0-40a1-af71-2fd8e1860b78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223845334", + "DeviceId": "8685a90d-072f-4c05-9ca7-bf0a5a9173db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853172864", + "DeviceId": "d7882df2-fa83-45b6-ace5-8368595deb5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126536856", + "DeviceId": "2f89a021-84ef-413f-825b-9b14720a9934", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847057138", + "DeviceId": "4a55ff4c-1ba7-4402-b63d-e27c7b45b049", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657191917", + "DeviceId": "490a07d6-4b98-45c9-966e-20377b5830cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257355779", + "DeviceId": "4398310d-8667-433e-91ac-fd51b5e245ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428504833", + "DeviceId": "87fbfe68-5992-4cf6-9865-ec47cd243988", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951499042", + "DeviceId": "ef147b71-2e5b-4e1f-81ff-89451e23fef5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755347849", + "DeviceId": "4b2c7ed1-8d20-4826-82c7-b81da5110e0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190646999", + "DeviceId": "530f2443-3946-4dd3-b848-e104d2321943", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_224251865", + "DeviceId": "e08ba0a0-766b-4337-961b-2d9ab3754a8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_296654018", + "DeviceId": "5d816f5c-b8cd-418c-b7da-41a3281a60bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868103967", + "DeviceId": "b8b99409-f90c-4de2-9fa1-c40004ab99c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157001354", + "DeviceId": "de6e740d-315b-4eec-b607-59a40820fe77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273959557", + "DeviceId": "37895a15-500e-4956-ae2f-19ebb1a6036f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_598663176", + "DeviceId": "0fc240be-4b65-4d27-ab74-508be40288b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865047915", + "DeviceId": "2097942f-3f55-415b-ab00-fdc382b85dd2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200861615", + "DeviceId": "75e77a95-087e-4e2a-bf6a-133f909bdf38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_279839611", + "DeviceId": "e9f2eba1-a3a4-4929-b1f4-807af0405a36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146276735", + "DeviceId": "971a6e3e-6884-437f-96fb-8e2404322c9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146555493", + "DeviceId": "65714134-cb5e-45a3-91a9-888d146e3869", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749509008", + "DeviceId": "b630f438-ef1f-4719-adc5-62c10b0f4701", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235739263", + "DeviceId": "032ab488-c9fc-42d3-a357-04b2c0d79c5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843767106", + "DeviceId": "795359cc-a2b5-4ee4-9c76-7356adb7d9c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948420152", + "DeviceId": "ac8a97f0-13a9-4598-a078-bdc9d2f2c896", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130581013", + "DeviceId": "a848b338-b3af-46a9-80e7-34d921d7ff41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257719915", + "DeviceId": "cb9509d9-116a-401e-8245-cb73d77a1c89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213383491", + "DeviceId": "8e7ee737-57af-42b1-9260-80f41cad2d08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494725781", + "DeviceId": "c210e1d5-f637-4abb-a29c-b04a73c91123", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996091361", + "DeviceId": "f3cbb655-bad2-4124-937c-cdcaf7b624b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_180023974", + "DeviceId": "b7d70659-7d2c-4a08-a306-626c8918d860", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748600811", + "DeviceId": "d9307fd0-eb2b-43e4-80b8-1af593d5e0b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761184246", + "DeviceId": "7c113976-7c12-4eff-b39b-4ad8b2d117cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_967005495", + "DeviceId": "5dc7fc4e-b15c-4bb1-94f6-88260908141e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_315940839", + "DeviceId": "e958c3cc-3220-4337-a58e-a138280f5f5c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "080dd15b-4ed9-4580-8dc0-13d1f705c9cd", + "TenantName": "Tenant-080dd15b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561519317", + "DeviceId": "afeae568-9dab-45ef-a59f-c7d2d8527b09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987950475", + "DeviceId": "1b280455-6378-4470-a1a1-8dbfe5e629f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556043775", + "DeviceId": "c502577f-d320-4b44-896a-2559e0510304", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621606658", + "DeviceId": "ca2b5c5a-477f-46d6-b349-cd2ad23b0cc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879427231", + "DeviceId": "7acf00d5-77a6-4086-8596-94f4ae7bf008", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168324189", + "DeviceId": "13d72361-4dea-40fa-8e69-19c33839b576", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860024370", + "DeviceId": "6f67f492-3843-4a59-96bc-49bb6bd9f0a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781972527", + "DeviceId": "b04cbda1-db51-456b-9dc9-e499243d3761", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487969023", + "DeviceId": "60f3e1ec-b5e6-450d-880e-7f09bca30ff4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_778816982", + "DeviceId": "1ea73e01-d89f-4eb3-84ef-f214b9c59884", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739802101", + "DeviceId": "b2e9c1ef-3ce6-4716-960e-a568717f3af0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348586534", + "DeviceId": "41a418c7-4f1a-4341-ae42-586f1f3f56d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584557057", + "DeviceId": "ff64a03d-5a4d-4784-9d1d-05ab04a0967a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793023240", + "DeviceId": "d99cf1ca-4ec7-41ea-902f-ac01c890828c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_289234788", + "DeviceId": "5c905473-6a83-4873-9d1a-fe77c76fcf0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_355628121", + "DeviceId": "1e257eed-966b-4f0b-80f7-bb5e8dc95831", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_143889300", + "DeviceId": "74955450-01c7-40a9-8673-15c16273b9a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744665827", + "DeviceId": "6f925846-88e1-4fa6-850f-d82ffce0292e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508144396", + "DeviceId": "77baf226-ba37-4624-bff0-012deb1076d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601257757", + "DeviceId": "ca231a0a-a26c-42aa-aaf0-6ebe9648d1bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_695699571", + "DeviceId": "c6a21ccc-6222-4acf-8d8c-113a15f3858a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401341036", + "DeviceId": "6782d6d6-cf06-474b-ae72-d7e472cdea3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402773305", + "DeviceId": "a9a000c8-dbb5-4a16-b0c4-ac831faa0aba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901864732", + "DeviceId": "91bbd695-0abc-4026-8840-b6ae716c4648", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_519705217", + "DeviceId": "2dd581c6-869f-4bc5-811b-6507fa9fc248", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_987609947", + "DeviceId": "71aa6b74-1c4a-4d8b-b9d9-03bacdc7ba64", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562916445", + "DeviceId": "01a8f7ba-998b-43e5-91f1-b1b743a8adfd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851922178", + "DeviceId": "0b401f88-4217-4839-854f-86cfad9b716c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989458890", + "DeviceId": "8a316234-4328-4c57-80be-3250e4e7360b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_722710000", + "DeviceId": "5600cf2a-2094-4e66-8ddf-aceabd01d750", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299072819", + "DeviceId": "1652a62e-4f08-470e-83be-27be6743a3f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477086640", + "DeviceId": "be2b736f-573d-40b5-979b-162b2af8ec67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_308932168", + "DeviceId": "c5a458d1-511b-4df2-8736-b52dc382b92b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878193751", + "DeviceId": "75cc53b4-4808-45d0-9c51-0a8d7506d9ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_668970320", + "DeviceId": "75883dfb-6d42-4953-a2eb-44010173842b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827759653", + "DeviceId": "5d4cf503-de90-4756-aa0b-f0fa12a80329", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_473036795", + "DeviceId": "dd576b20-181d-477f-a152-dad0f36b4b1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406512787", + "DeviceId": "1b511469-4d94-4561-a0a2-0b056c06fb56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606106492", + "DeviceId": "b6db1944-32ac-4c6f-bfff-2a113dbf0eee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_571419624", + "DeviceId": "af6f7050-3931-4f5e-ab6a-b75ea0b1d752", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_507180782", + "DeviceId": "9649aaf2-acbf-41ff-92cb-4c456a927333", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_396244530", + "DeviceId": "c552c10a-bb83-4edd-b660-b3e121729aa1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636877420", + "DeviceId": "4bd3e132-f7fa-48f0-83c4-8ddc7fa76197", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568251260", + "DeviceId": "adf3a26d-bb8c-4547-a9b4-979ca321bab6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994945433", + "DeviceId": "b3bd27ad-dd92-426a-94f1-277d1af153aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584493992", + "DeviceId": "50d3cd45-c01c-48df-a92d-ad2758bab9eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618086296", + "DeviceId": "b6a7d726-9a8d-47a7-8492-65b3d91623dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769564653", + "DeviceId": "b83b4173-a010-4d8c-9a93-29a72bbab64c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554769512", + "DeviceId": "56cf5ab3-fb40-4e36-9b9f-1a9a1ee1ad7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931064435", + "DeviceId": "e91b5fc1-a186-4b9b-8cb7-1bfd5e86018b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_863701972", + "DeviceId": "d51f5c2e-3751-484c-88fc-545e98e72d8e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bca94809-84ef-423f-8ca2-1dc1aa5ec38f", + "TenantName": "Tenant-bca94809" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241313471", + "DeviceId": "5beefd6b-83fd-48c8-8318-713ced7b43a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_624460652", + "DeviceId": "22d38af8-bef8-4c97-84aa-25dabe86d5f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257119631", + "DeviceId": "eaec304e-9044-461a-8c34-3b1a1e864439", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436326174", + "DeviceId": "a279be45-8f81-4e71-8843-23723446b85d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_204252850", + "DeviceId": "44ebf5f7-90f7-498c-9cca-7873d1e671ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_604731343", + "DeviceId": "4d22db6d-6d59-40f1-849f-a949b07582ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610544934", + "DeviceId": "df51bbf6-cb1d-4a3f-9bf3-41a142147803", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148498241", + "DeviceId": "080ddddf-be18-4c3b-a4c4-88b075a4ae14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_776357634", + "DeviceId": "636f2bde-fbda-4d24-830d-f3cd120c76b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_629589500", + "DeviceId": "02f6bd3c-bc28-43a5-889f-450dbc5ad8e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771997054", + "DeviceId": "2b5221fe-2c4e-4abb-bfb5-58a72355d7cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316885274", + "DeviceId": "3f313e85-b949-410e-805b-253898a1b0e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912080131", + "DeviceId": "b6e59aa8-0829-4724-84f4-3e6f2336dddb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228991668", + "DeviceId": "783ae648-de9b-4534-bbd8-8ffd3c09d4b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288732982", + "DeviceId": "0fff45ee-987c-4656-8d2a-c297cac39f53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227511709", + "DeviceId": "5ed4e38c-87a1-4f63-9790-447e18c204f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_343139942", + "DeviceId": "1075423c-dfde-46d8-9452-e173065f33a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273661508", + "DeviceId": "c5f041d3-8563-4490-a92d-dde1f0db67c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212228473", + "DeviceId": "af134b27-9335-4756-9d72-7d10fd0924b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104328952", + "DeviceId": "2a2bc55b-d742-452b-a79c-ce18069da7e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303940769", + "DeviceId": "13a78483-6deb-4b1d-a281-8c5676a2ff96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513348301", + "DeviceId": "8e9a4d39-4b62-475e-a2ba-cbb4ad063e7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_801956662", + "DeviceId": "31a177b3-1f8c-437a-ba54-9ee2657136f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708256657", + "DeviceId": "65602aab-5ff0-4773-b4a9-25078ad214f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_338987262", + "DeviceId": "bb24335f-4f14-483b-b3f3-0df3ddcfbc7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767995306", + "DeviceId": "ae1cc0a4-5970-4e57-9a1e-34bbf6733480", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246691057", + "DeviceId": "3e6afde7-fa02-4983-b0bc-cf072ae284d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_459421932", + "DeviceId": "78b276a1-f16b-48a1-af2d-816307764e1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204662783", + "DeviceId": "ebb42751-7122-4b12-b934-3d66a39cfbc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334702077", + "DeviceId": "4a56f2cc-9945-4522-85cb-b519f031181b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_715720389", + "DeviceId": "919626c5-06ba-43cc-9ff3-5b0c22a7c376", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423717762", + "DeviceId": "2597aeb8-53f2-4841-be54-72f352f50df9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618392907", + "DeviceId": "d1714f53-20b2-4f46-bb57-6a6ba617456c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_903056250", + "DeviceId": "baa6be1d-9ece-41e8-ae3d-03118a75e7a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781932239", + "DeviceId": "c4c6d9c5-6df2-4385-8499-836f50d788bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487289915", + "DeviceId": "786623da-0f70-4735-be5d-22f1ffd96f10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225342279", + "DeviceId": "115d7147-a852-44e1-b3f3-4d5139e68d31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996282885", + "DeviceId": "5a7abf3d-7668-41ea-9653-78609869cad0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206051032", + "DeviceId": "e7bf66c6-d9d9-444b-bd54-1c4c3f17dc2f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348001849", + "DeviceId": "66a0ed95-2163-4319-884e-11b49a3cbf7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_327312969", + "DeviceId": "c3143bff-679f-414c-a89a-85d67a7aca0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_484516276", + "DeviceId": "3aab60ee-221f-4a5a-850e-aa6ca40c508d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373454938", + "DeviceId": "2ae48db0-b0d6-4ac3-9839-939a58196a76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_664377541", + "DeviceId": "9f33aec4-29a0-4f39-aa4b-3397d9d34a05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155036494", + "DeviceId": "455f7d92-a484-45f0-b418-052452ee1de8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471736125", + "DeviceId": "3ab59927-6fe8-4991-978c-3b1836aec568", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_120969300", + "DeviceId": "01dcfbfb-9a86-47e4-9b26-17cbd1328496", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185308680", + "DeviceId": "b3b6953b-ba2f-4a50-96de-62486555199d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944610188", + "DeviceId": "d043149c-3f7a-4cab-af41-c8cf7c3458af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_407703017", + "DeviceId": "9f61e518-eae3-4aae-abb8-5a151870b640", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_730268478", + "DeviceId": "651aff9d-9cb6-42c9-89b1-1225d6defd35", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "de3968b2-9807-4b92-a84f-9dc66e2d3b84", + "TenantName": "Tenant-de3968b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721356711", + "DeviceId": "3fb90fbb-5a87-437d-8c88-a11cdaba1b99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726084518", + "DeviceId": "74371126-f905-4b75-8d5f-f14419820097", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818734823", + "DeviceId": "2089ec0c-fd38-4362-bc29-33a013ec3bde", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744261128", + "DeviceId": "53939915-40d1-4da9-9531-32f13c55a732", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329155588", + "DeviceId": "1db128fd-7c0a-4bd1-9ae5-9c29436b0471", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341381191", + "DeviceId": "dfeb86f5-4cde-41a0-9dd1-da99b85657a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176660025", + "DeviceId": "50f9adc4-72b1-46be-adb0-cbb82465b722", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_603529230", + "DeviceId": "43115dfd-2119-405e-b8db-2418f30b8564", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_887940999", + "DeviceId": "d9445e98-ec2f-4b63-8ed2-1052c027b232", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772871643", + "DeviceId": "d45b6011-1e1b-479f-bc44-d326265fd5f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598636629", + "DeviceId": "fd3d1e13-db74-4b22-9280-78e574ac71c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200864006", + "DeviceId": "962c5314-e7b8-49e7-b551-a0d776b4641c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748447919", + "DeviceId": "78302121-2466-45a6-a7ca-71851b8f2ea1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824188066", + "DeviceId": "5baa9f27-36ff-4405-bf32-4c1dcb32bf90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825117644", + "DeviceId": "5d5892dc-d371-47d2-94a1-59dfe7eed686", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_459805183", + "DeviceId": "bdbc0caf-558f-4d4b-a85e-62948805ec93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_674197627", + "DeviceId": "0462d8aa-5000-4a75-9540-dbd5f057c5db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525050013", + "DeviceId": "b48062b5-dd57-4ae0-9ed8-d12b1a13c0da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_971878096", + "DeviceId": "282b0e97-3ad3-4df0-ac2d-c883cd9d2b4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467532001", + "DeviceId": "ebc05b53-f76b-461d-9f6f-9e567d4ad7f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274088754", + "DeviceId": "3e05724e-3d5e-4a5b-b726-e0fd51e8dea5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491257725", + "DeviceId": "b54e25b3-4e2f-419c-8179-4b7c448f631a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534305448", + "DeviceId": "c511ffee-a1f6-47a7-8959-1ff8be46308f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_353360517", + "DeviceId": "6bc6a6ef-b44e-453e-82df-c8a6274a6a12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926285282", + "DeviceId": "9350f2a7-ad31-46cc-9350-0a70c7fb9459", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525450323", + "DeviceId": "35f13231-92c4-473e-a633-79e34cd80302", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718785352", + "DeviceId": "6db2ba78-d5c2-41d9-a01b-6e7843372852", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_169670840", + "DeviceId": "b7a79b5d-2ec4-4fb2-bce9-fa5a9be66483", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_271576852", + "DeviceId": "44ef8992-c3c4-48cf-ab9a-6bc27da9dc54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733123282", + "DeviceId": "ab5a3aaf-e20f-4ed8-bc92-23da574b741d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688862410", + "DeviceId": "7d2c6bb3-c49e-4f35-beb4-345de23cf23b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238442817", + "DeviceId": "cf660c36-5e4c-4e03-ba88-9e593c715c21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_224073102", + "DeviceId": "c635dfa2-4a91-46ed-954d-0cad66fe9279", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_593347558", + "DeviceId": "794c6913-5687-4fa5-90a3-d937aa94be94", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424009486", + "DeviceId": "3a69b80d-1664-4cb2-b15d-b6943e515912", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945685374", + "DeviceId": "2131ade3-cecc-450f-8d71-a565f67c722d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190886054", + "DeviceId": "ef66c184-c21e-451e-851a-5cbdca8a9583", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522444122", + "DeviceId": "29a6bdfc-b92d-4419-bfa2-236b03f5b7fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477551596", + "DeviceId": "0a5996e1-6dfc-4684-8890-2c8c0572755b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_497761377", + "DeviceId": "a719aa86-3b58-417e-8911-1faea28bea0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728554742", + "DeviceId": "05c0fa59-2e6a-4fb4-ab49-f71caba3932b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300268195", + "DeviceId": "6dd22a99-03df-410e-aa3e-d8885b44c86f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904823495", + "DeviceId": "7aeae578-49c2-4371-ac5a-9919f3248540", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564654091", + "DeviceId": "feff9a35-849f-4dc7-b15e-27f9bd0ab18e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188543844", + "DeviceId": "ebef91b9-b1c8-4f1c-a544-a7ea332496de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_267156625", + "DeviceId": "68023589-a9b6-4d0b-9559-534081281a46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_603126022", + "DeviceId": "eb353397-07a5-42bf-a818-3f6e549abb5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_413773732", + "DeviceId": "b9207496-6d3e-427b-900b-478a2ba10aa6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583556512", + "DeviceId": "c9af95f0-a6c9-468d-b4ff-5429faf72421", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767933609", + "DeviceId": "c5e1fc7e-bca9-48a3-befb-ee76673f8b8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_704536377", + "DeviceId": "137073ed-70ce-4644-9ce9-d77a8f4557c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9212bb08-2a70-4153-9775-4b7d5481b7a2", + "TenantName": "Tenant-9212bb08" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784520046", + "DeviceId": "265fafd1-8a8b-4a69-8537-24e6f077bbfb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_648210635", + "DeviceId": "2022fcb2-69e2-4eb5-ba58-a1fad13ea0ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746967982", + "DeviceId": "fd924196-f273-430f-867e-de94242069c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_937534931", + "DeviceId": "c5099730-b09c-44ce-b0f3-1512e202da83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149496403", + "DeviceId": "8424ec70-117d-4e9f-9683-8dc1bb93ffcb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_649168801", + "DeviceId": "d002ff7d-a217-4501-bf02-e0e9d5bb8eff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432402988", + "DeviceId": "e47449fd-627f-4a9a-8860-deb7744e4332", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927627747", + "DeviceId": "ce85fa2c-b299-46f7-a184-807de566dc41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242947796", + "DeviceId": "7324c5d2-86a8-49fa-bd06-3d0558146697", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_254438575", + "DeviceId": "47820610-fff2-4369-9f18-b52ed53f5d6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_902535033", + "DeviceId": "2e7ff9c4-ec15-4a6f-a4d9-cd83ef580cb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878489602", + "DeviceId": "6556e680-7f2b-41fb-8d7c-adf1e1881f0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970953320", + "DeviceId": "88f66ac3-0415-415d-be12-b27e6f5bcb3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835397667", + "DeviceId": "300b0f15-4427-49fc-943b-b0400679c091", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713528217", + "DeviceId": "9ace685e-b80e-4e76-a484-5e69dd416ce7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708105974", + "DeviceId": "306a87ad-880d-4822-a752-4a3f428a9de9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285698565", + "DeviceId": "98598817-09f4-4d62-a0a1-831d696c7aec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746336626", + "DeviceId": "3e6fda65-650e-45e2-9305-e5ca026dc828", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_395961961", + "DeviceId": "0399eb92-9074-46b7-9ac4-5a926fff707e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677516647", + "DeviceId": "275872c7-566a-4e0c-b577-b267e7ad10fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362429719", + "DeviceId": "d0219d63-09b4-4d66-b2a7-0ac91e105303", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186691509", + "DeviceId": "0b89f710-b248-4cce-bedd-72a898c6f35c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_941146395", + "DeviceId": "025ebeb4-c469-48a8-ab71-1de8c3dad5fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_489540045", + "DeviceId": "1425dbad-a2e1-4fbf-b747-f4314466c9fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560783185", + "DeviceId": "dbb1b654-7b8b-42ad-8442-b3015e62f000", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902686225", + "DeviceId": "00314ef6-967e-4825-ab80-3082a0cf233f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_118075956", + "DeviceId": "f3379f22-1115-4463-945f-023dc786fb54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356516586", + "DeviceId": "719d5ebc-9ff3-47bb-9c53-ca5f215b4612", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204094124", + "DeviceId": "9a89ebe2-070c-4631-af3c-0053f3458c2a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434807939", + "DeviceId": "39bc0a1a-73a9-496e-8943-1591eb970700", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475487413", + "DeviceId": "5ca0a846-6fa9-444c-baea-050ff560cb34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645290946", + "DeviceId": "e13640cf-07a5-4ddb-a20f-5109581a8f3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729234308", + "DeviceId": "67cef572-a049-4da5-897b-a4ec50cd2ba6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720852626", + "DeviceId": "dbcbca42-a5e4-458e-b76d-e3054dd02b3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423357892", + "DeviceId": "f3557c24-805d-4354-94d4-c2f0ae79019e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333489426", + "DeviceId": "82710bcf-6ed1-45ad-8e80-daaf61fbd929", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825951230", + "DeviceId": "b7779a5d-2433-4011-b9a9-043fe035d624", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_169051536", + "DeviceId": "59051fa5-2b58-401c-8533-9d3c085c796d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234735708", + "DeviceId": "becda93e-eb51-4895-b61d-9c83495e05fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210834100", + "DeviceId": "d1733d77-7823-4d7b-bb5d-1f61b6a22960", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_877384955", + "DeviceId": "692380bb-4b8a-4706-82c8-da00ca525ae9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_801665474", + "DeviceId": "dfe0c308-6303-46b7-8d9d-a6148b4f40d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266111396", + "DeviceId": "b4bd3283-9659-4193-bfd7-6cca27753701", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_880552621", + "DeviceId": "ae1cfe24-66e4-4279-aa9d-63a9558883f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_768210293", + "DeviceId": "cf3c4bf3-86e4-4883-a7df-93bfeae878ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879281350", + "DeviceId": "ec221016-c75f-4e41-b132-90f283075b11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714834070", + "DeviceId": "38cb768c-2b9e-442a-bd50-0dac3212fba7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885302686", + "DeviceId": "ca157fd3-73ea-4c50-8354-bb1ce8ed701f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439953010", + "DeviceId": "ec648cf1-23a0-4ae9-8d75-b0ee191069d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_610005736", + "DeviceId": "6dc2d2b2-3904-4495-9546-8711b4a737be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_101241854", + "DeviceId": "0b80bfd7-036e-468e-b683-5ae40aba3f0b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e5f86b70-2f05-46f1-988d-fa745a578b1f", + "TenantName": "Tenant-e5f86b70" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663886424", + "DeviceId": "93871f97-f07d-4513-8c09-b991638a2dee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736329163", + "DeviceId": "a40a70e7-a8bc-4fa4-9448-5d8fa60e5ca2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319448946", + "DeviceId": "517d4993-c242-4c45-9f84-b5543a9a792e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487876417", + "DeviceId": "d532d697-8e89-487e-a1de-6032f0271063", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599450930", + "DeviceId": "0d74f296-2cee-4df4-bbee-a150bbabf1af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515236990", + "DeviceId": "f9c3d57e-ab3f-4679-94da-addd1471d5e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_211242478", + "DeviceId": "a89256c5-3a8b-407e-b58c-c9a4e4a82595", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773319166", + "DeviceId": "dd30544d-6b52-4cf4-a0fa-22fc3e00c80c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356898227", + "DeviceId": "96a86011-83a3-417d-912d-0c440ad6c7e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490740638", + "DeviceId": "e00d1658-b439-456a-b3d5-0beb4e312e78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541816702", + "DeviceId": "4d16df98-8e90-49ae-b110-5ed2f4ebec06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736828153", + "DeviceId": "b912ff1b-13e4-4acd-aa9e-a8edd93ef579", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515771677", + "DeviceId": "4fd4cf39-ff9d-4cb1-8eff-ee69f684364c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_469558374", + "DeviceId": "7d38561c-edc4-4a9f-a8a1-1b916030d43b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657787449", + "DeviceId": "42f1bbdb-2425-4edc-a9bb-24c88539247a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_846292477", + "DeviceId": "d286ef59-198a-40ea-8959-6ef43c1daec8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417334285", + "DeviceId": "f1648c53-d8b2-44dd-bea2-baffc2604bdf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408658269", + "DeviceId": "9a870123-78d1-4ae2-bd81-0dee8f4b872f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_654812226", + "DeviceId": "7144ab7e-8246-4fb9-a0ca-7ba36cec3e95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213841271", + "DeviceId": "4d124355-d7a4-4a35-a262-196c8aae322f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_846464683", + "DeviceId": "7f08faf4-db40-4c34-a780-db4d07977b0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650214877", + "DeviceId": "477a378f-124c-44e2-8af9-514d7df4a20e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_172578920", + "DeviceId": "0d1c85dc-8378-45a3-a98b-62a64ce2cb6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423510719", + "DeviceId": "d6a10cdb-0f56-4682-a4b6-1091894b8bab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759947709", + "DeviceId": "c6988d41-2201-4a75-a661-62a859bca960", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836977072", + "DeviceId": "b0e5a9dd-a6fe-481b-ad7e-266e2dc2218a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618055887", + "DeviceId": "0bf81ff2-fc56-4bd7-9667-5f1b959694da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_919604266", + "DeviceId": "aa524535-b8bc-48c9-84a5-8af4ab5622d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348391956", + "DeviceId": "b5cfdacb-472c-4a59-a856-c9612d072ed9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_982023194", + "DeviceId": "3b7cc660-9d25-477e-a11e-6852a437a552", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_951830039", + "DeviceId": "e1d56241-2011-4bc5-bb8e-ae1d20e27c52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_917528446", + "DeviceId": "0001393b-507e-40f4-9ebb-48deaa048c2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945198444", + "DeviceId": "77e75dcf-7e86-4f58-8f91-d84f56dcf43d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_762338836", + "DeviceId": "03837224-cc27-414d-9fe0-2451a79342f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187411959", + "DeviceId": "c42b499c-468c-4340-b88f-94c422657c59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158748098", + "DeviceId": "fc887d8f-568a-44c7-b756-122307fac85b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_120226734", + "DeviceId": "09383e1c-425f-4997-8448-f8d2562e6340", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885365949", + "DeviceId": "2d9d0be4-842e-4730-bf8c-8878a4287eac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672584493", + "DeviceId": "0d45cb6b-7a6a-41d0-8b93-fd1bfb4caca3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_666389820", + "DeviceId": "b4d27e8f-151b-4a72-be27-9b2823481290", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921987844", + "DeviceId": "0d3494bf-56be-434e-8558-deed36dc190f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_635190796", + "DeviceId": "b7517872-c501-4887-bfe3-24fc2cfde554", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_788443117", + "DeviceId": "315db97c-5501-48f4-8376-8fb3d4e7dad2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331945418", + "DeviceId": "c14a7310-545f-4670-9bcf-92c4efa97c0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688094233", + "DeviceId": "773ceda5-b52c-4c92-96e1-fed1e48ab4e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906141916", + "DeviceId": "a259aa65-8fb2-434f-8652-a5a33bfc24c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494697614", + "DeviceId": "2ca43d6c-18fc-4e32-babe-b79a7c034243", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674575165", + "DeviceId": "c28c044f-8ec8-4dea-8471-42592db86583", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993499818", + "DeviceId": "f8f3e9ec-a4aa-4dba-adb1-981497a09338", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904508018", + "DeviceId": "9befad50-1d16-43f9-b06c-2c0f97b8a3a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_478651535", + "DeviceId": "54362c30-507f-4ad5-90b8-cbe55803edd3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0379a3b0-d1da-43d7-9a36-d1c0ae23b7f1", + "TenantName": "Tenant-0379a3b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518844368", + "DeviceId": "fac49b93-6625-4623-b4ac-dbdf98be1e59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334310325", + "DeviceId": "3c8b190d-927b-42e5-9c6f-3f27fd52e0d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968282336", + "DeviceId": "3e91dee2-2587-4833-919d-c9e9c91a8847", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650958098", + "DeviceId": "85890d94-27f6-4b99-a5e3-2b09e061e2e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301887072", + "DeviceId": "b3ebd1a3-1f3f-44f1-b782-10ceac911d92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148205185", + "DeviceId": "33f0bba3-4bc9-476a-a1e9-e38e0d876218", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639020592", + "DeviceId": "e285feb5-7c43-483f-9e4f-c31c5568f5c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611637166", + "DeviceId": "4f38217b-3916-4fe7-88be-135afc4ee980", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175305144", + "DeviceId": "2e65ed65-a808-431f-a1fa-2c1cb5cf4aee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231256712", + "DeviceId": "13640998-1d42-4989-90ae-ac590fbdda56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351582708", + "DeviceId": "abd38369-efdf-4b3c-8e90-8835f9e38732", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230754716", + "DeviceId": "c4e49564-a6cc-4172-85b2-2a56f8acc48d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797873001", + "DeviceId": "12412de9-1944-44f1-a9a4-d383d6af42c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_943731090", + "DeviceId": "fabcbf0a-44e9-401d-8a73-8843daa3415d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228846741", + "DeviceId": "09692359-dc30-4bee-b44a-a497c1b5272e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_809098135", + "DeviceId": "c48c2cfe-e990-439f-bb03-2069dc04193f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617046021", + "DeviceId": "9b37539c-a70e-41e3-b511-8b4c48b257d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_629299228", + "DeviceId": "4003d13d-9cef-4129-8a5b-f9fb23a9f8c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_194507748", + "DeviceId": "274c55d8-7c60-4102-9a51-6c11913bf490", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_453506352", + "DeviceId": "762acb8f-49e3-4071-8599-974fe2e766a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_723228765", + "DeviceId": "c59ecc84-b563-4000-afdb-63dccac0e14d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757849320", + "DeviceId": "a397bc32-e972-431f-9150-c061000881f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957899734", + "DeviceId": "47008b48-e286-4f1e-b2b0-914f5989d19e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311897880", + "DeviceId": "cdb2d8f8-1db4-4245-846a-5084c79ab404", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301899892", + "DeviceId": "9ed0ff9e-8e3d-4e54-8639-a85b9f1d00eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933821422", + "DeviceId": "14e3d60c-c852-46ab-b6ee-086d87109e85", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_633216290", + "DeviceId": "5c3820f6-e7f7-4f03-af80-e9462423d5a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238405073", + "DeviceId": "0af93f14-c7c1-4a8f-a897-07302a9c8520", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255605425", + "DeviceId": "7a22b864-4c75-4cc3-a604-33ab5b93bbc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763549125", + "DeviceId": "d5d7b668-0ee7-466c-8f53-d8b1b0650a7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530927463", + "DeviceId": "a6b572b5-389d-4fd8-8482-0b906c5ca009", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_877744359", + "DeviceId": "75d1108e-6eea-4ffc-a668-48f10bd7c071", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_912758472", + "DeviceId": "fbfe3ef1-fc29-41a2-98f0-2b214a977945", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306352211", + "DeviceId": "252d94d1-b266-44e4-8560-22ace020c782", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911147948", + "DeviceId": "289b4164-40a3-4a59-ba2c-137cfae8981c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937888462", + "DeviceId": "605187b2-034b-4e22-b198-03cd3c8b8921", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_773400686", + "DeviceId": "b1ac22aa-bcc9-4561-b76d-806d46ea26e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453634402", + "DeviceId": "543ca4c9-b93c-46bc-97b1-1ed810d926c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899694464", + "DeviceId": "723af241-99b0-4870-8d20-a6e750cc3f78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_332129692", + "DeviceId": "7b63b1ab-93ba-41f0-8a9b-13599eee561f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_633908831", + "DeviceId": "cb8dbda3-f864-4d67-a1ae-8b05f55a423d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997550951", + "DeviceId": "3fe60fab-8669-480a-ba2f-87d3eec6a6ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410557206", + "DeviceId": "7ad63ef9-67fd-4654-ade0-0ad78feb3b05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_883296489", + "DeviceId": "bb01f72b-fa22-4ff4-b8a9-32c218b58f29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_867738521", + "DeviceId": "cec49eac-4738-433c-a172-2c0f3af3cb8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836512380", + "DeviceId": "50995425-fe3d-416e-9884-66fab9731074", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_887046146", + "DeviceId": "caf191c4-e4d2-48de-b5d2-902ccc4c5d07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636555546", + "DeviceId": "9a938d40-504b-4ae5-9562-31980a82b84d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799493167", + "DeviceId": "6fa4f0e4-31dd-40b1-addb-e10a24d7f087", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424321248", + "DeviceId": "3f4b3210-adda-48e3-b2e9-949350c93bd2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_748532648", + "DeviceId": "3d52ab7a-1049-4bbd-b318-c00cb563311e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11565f32-121d-4eb4-aef5-18a493f77990", + "TenantName": "Tenant-11565f32" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148409215", + "DeviceId": "ba5c2057-3e1e-4159-8782-89bc040cb9c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665000763", + "DeviceId": "bcddd11e-f201-4cd3-9a9c-7fd846d65a86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931086944", + "DeviceId": "9b7a94e2-eb55-48fa-a958-bc70f152276b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934454872", + "DeviceId": "d06d79f9-724f-4ca0-bf58-d91af818f71a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_735480028", + "DeviceId": "8d11f9fe-b272-4a81-85a6-a4a5e6dafdf9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784748436", + "DeviceId": "6dd7cda1-71c8-4f28-85bc-9de2ad66ad39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_289474471", + "DeviceId": "b288613b-5a46-4e82-b6e3-f4550168943d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301210155", + "DeviceId": "1142486f-0ec3-438b-9979-c4ee3f9081aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113325509", + "DeviceId": "861a39fd-0212-4b30-8680-967e01be524d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633212020", + "DeviceId": "2868c2a5-3805-48d5-986b-bba90b4c25e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263893541", + "DeviceId": "00f8389f-3c60-4377-930f-841a3dc313c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345393607", + "DeviceId": "2f4b73a6-6b28-47fb-beab-0f6c4f422302", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332230325", + "DeviceId": "29fccb35-ffd2-4b1c-b2fe-7d6ffd203977", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771869527", + "DeviceId": "3c35734c-e2c0-4c42-848a-c15e5e222222", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588940740", + "DeviceId": "fa3bfdbe-2cdb-4b24-b32b-4601a80c30a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646855090", + "DeviceId": "9576d7f9-faf7-440b-92d8-6815d8870391", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_956859067", + "DeviceId": "52db4439-cfe8-49b7-b466-f64c59991995", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_473040828", + "DeviceId": "d47b5ddf-460c-43d4-8a6d-696ac33bce3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_656371958", + "DeviceId": "9bd4b3ed-64ba-4443-b85d-9af2f749fb0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897295928", + "DeviceId": "40a06010-e21c-4050-98cc-ba843712edd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742809850", + "DeviceId": "8ea48725-baf2-4084-b709-0cbd64523be6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651564038", + "DeviceId": "9c54a60d-c83c-4ef8-a2bc-1d945fada5fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834506688", + "DeviceId": "328e5167-ae15-4388-8b88-01d1573e6472", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_456220133", + "DeviceId": "fa5c1a4d-964f-43e5-ac81-d19149a6c583", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_603221868", + "DeviceId": "1e9f7c24-575f-4e1a-ba15-27816817b4b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_412493290", + "DeviceId": "0f4f5971-cbc6-4f4f-b34e-396f40de7861", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858234605", + "DeviceId": "03ee2d56-97e7-4785-a644-4e6dd00b669e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397221830", + "DeviceId": "542abc42-c159-4068-929c-ad9f91196ee6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_339952793", + "DeviceId": "a174e4b8-ffdd-4379-baa8-891435f76881", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_951586717", + "DeviceId": "12c19f29-5556-426d-8929-9ab0f6873d78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_830653076", + "DeviceId": "2e9454c1-594a-4bc6-a6d1-2b030f666bbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_856978087", + "DeviceId": "f974fb44-59d2-4027-a3ae-16e7bfe0f987", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195876874", + "DeviceId": "ee768281-dea0-4d99-8830-5c63e1f2a2d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889476073", + "DeviceId": "66bbcdba-bb6a-4482-9199-9306e2bbebb0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939905949", + "DeviceId": "0ecce365-dd1e-4bae-9139-330725a60511", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_852996522", + "DeviceId": "268e32b0-66f9-4935-aa26-d993196e496a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148880636", + "DeviceId": "7bf82d93-be65-4523-86e9-05217b0b5a50", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_387142554", + "DeviceId": "a6c5587f-4857-4680-a9b1-b95d172d8022", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515215871", + "DeviceId": "01850796-a851-4e5b-8bff-0e063d96dccb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189999352", + "DeviceId": "584eb888-e36c-468f-ab34-6f5416fc79b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674896885", + "DeviceId": "b53b855d-dd31-44de-955b-2323561faf86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389951014", + "DeviceId": "e9998a83-50d8-4dd6-bb5c-49ac63b4df84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601606756", + "DeviceId": "b5778b89-7d2f-4e45-93c6-395fa2142f50", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364513052", + "DeviceId": "f2f43ee2-24c9-4797-b404-c7319031af7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739091991", + "DeviceId": "7c2e07a8-8713-402e-b349-1c99a72830c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_874828453", + "DeviceId": "cb685a83-8594-4d77-afbd-70a0329cf07c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613384614", + "DeviceId": "d1d17cae-1e44-4db0-ad78-4ed75dfae342", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_855083827", + "DeviceId": "21be7293-6e8a-4b65-a5e5-92e17ecae5f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110563257", + "DeviceId": "4eac14ea-eb16-4035-bb82-ff6564e0fafc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702289559", + "DeviceId": "d5d8f6ee-cbed-4a71-805c-c492789349f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_836203139", + "DeviceId": "fe992fef-7890-4ca5-afdb-0e8e7ab613fe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "62a163be-e71b-468c-a5a9-78b9862fbd98", + "TenantName": "Tenant-62a163be" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721689664", + "DeviceId": "15e9f87b-788e-4487-ae3a-c262b73e596b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259036206", + "DeviceId": "af816432-c1fb-48af-8b90-f0b00634106f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639480374", + "DeviceId": "248dac8d-c33f-4514-9f3d-0a259978d273", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_499255952", + "DeviceId": "278bef35-10ca-456d-a101-3f6a0217ba7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109287860", + "DeviceId": "c0e28642-4625-4540-89e6-2124615f707d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533033422", + "DeviceId": "4eb4a887-6fe8-481f-ada7-b69021490b58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526199483", + "DeviceId": "75bc5ab1-91c5-4017-a70e-1521a1376f41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882950047", + "DeviceId": "7910495e-3a16-4037-ad9a-46800e14d08b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639854222", + "DeviceId": "a1b22183-9705-4363-9e51-0b25700ef4bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314584867", + "DeviceId": "72e9f52a-1347-4635-b8c8-dc947b28db9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866453729", + "DeviceId": "1494617a-9458-462e-9ee3-746c8153fc48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_711418854", + "DeviceId": "2e15e39c-8ecf-4280-b9c9-c19243926688", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305099787", + "DeviceId": "18a13caa-88f3-47a1-be42-b987da8a4373", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734081803", + "DeviceId": "85f95c35-4bfc-4930-b060-c49a697829f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566528754", + "DeviceId": "30f24991-dc47-420d-8a9d-d1b17bb1f6ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981194268", + "DeviceId": "bec9f190-9721-49a3-9771-2c4b73d92352", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542184128", + "DeviceId": "ae131618-c301-4970-be12-9eb56eb95ae0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724253323", + "DeviceId": "c940a2ad-2838-47c2-933d-9ce202a0c600", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125115977", + "DeviceId": "3d253f3f-6b70-4593-be29-6e8dc8cd072f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703400663", + "DeviceId": "360ee094-d76b-46d8-9ff9-724eef6f4cef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270800605", + "DeviceId": "1feaaebf-0b99-4b6a-9bd5-a1c69b43e63d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676710823", + "DeviceId": "2d0edaf9-a96b-4358-a5b0-ed1b236f0e66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416612703", + "DeviceId": "1b73350a-b312-4cd5-bd04-df4406f25953", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964796408", + "DeviceId": "51912159-d1df-47e0-a56f-a8f1e13b0721", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419588858", + "DeviceId": "2cf735e9-d3e9-45b5-bf6c-235c8eb78f5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_905308918", + "DeviceId": "0f45984f-023b-46f4-a2ce-bfdda40c3e7d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426445297", + "DeviceId": "3980b82b-ced2-4f31-858f-e73b7f20213c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232266635", + "DeviceId": "2e1f2981-0f32-4051-8cd4-d5b52a07f09f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210310330", + "DeviceId": "9d19e92c-7853-420f-afd7-d8e8367ccb37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_484757453", + "DeviceId": "a6cae58e-bf03-403f-a81a-67c6db17e3e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_986293720", + "DeviceId": "af9e0833-b1f1-40c4-a998-b191a765afba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763649572", + "DeviceId": "4e07534c-d676-44ab-8c2a-3b9ca59500b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_484524528", + "DeviceId": "9d330fe5-4d30-4e03-a2e1-794a01ecb823", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_207416533", + "DeviceId": "4e42037f-0f85-4294-8921-f564dfac2c3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_353823171", + "DeviceId": "9474cc86-d031-4ccd-babd-2f1e5bc9f663", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231658823", + "DeviceId": "130861e3-238d-4875-85fa-b7f1d585ccbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_377588184", + "DeviceId": "bcfbf752-8a21-440d-8878-866bf8bb47f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455209003", + "DeviceId": "4139d8db-0a43-4e02-a715-2877edc11959", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881250095", + "DeviceId": "c251d99b-3089-4716-bc65-d894d526bb57", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875006967", + "DeviceId": "bcd70055-66ec-4a68-bd0b-7b41064ca4b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424359390", + "DeviceId": "d153fa52-afb4-4c5b-bf0f-5ecfe1dba1af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131610390", + "DeviceId": "9c2bf371-36d5-4eac-b913-e6af40fd9524", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744964347", + "DeviceId": "0eff17f3-14c9-44dc-91d4-b875634089e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364700900", + "DeviceId": "3572d315-c334-4e24-844a-78ab81dc9e9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_537551871", + "DeviceId": "01a0c027-a0e9-49d2-b6d4-f9d5a336d3d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540672869", + "DeviceId": "8fe178b6-f580-4d2d-a74c-c75485fdf096", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_520415250", + "DeviceId": "8f5f6e8a-280d-4586-87bf-0950f845c0d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678159091", + "DeviceId": "6c6652c7-5024-45a4-82a3-51e61bc276d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953755340", + "DeviceId": "adef3b44-d8ce-43f3-accd-df3e9d8ec822", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172393598", + "DeviceId": "8da9ebbc-62ff-4dab-9119-99aca575cf67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_304715370", + "DeviceId": "bd7a3141-93d8-47d8-a8c4-e9df27bf0408", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cecdbe5e-f709-46b9-957a-dd205fc397d6", + "TenantName": "Tenant-cecdbe5e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762525865", + "DeviceId": "d57013eb-a5da-443d-817d-55de9014f845", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767485516", + "DeviceId": "b7153e90-6c12-42f1-b15b-5306f51f1fd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643201858", + "DeviceId": "997d8130-49f9-490f-98e1-e75e85df9828", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_321634954", + "DeviceId": "eaef4ddd-6d80-446b-b132-ce0666bf7797", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899393097", + "DeviceId": "579b5127-8c92-452d-8df0-f64c99dae073", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159213950", + "DeviceId": "a596c3ed-4a1e-42de-99bf-e38809c8178c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_630363883", + "DeviceId": "46da9756-6fa0-4a89-9d36-d4f73a3bc9e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_465869437", + "DeviceId": "381a17e5-2f59-4c42-b44f-68afc817a9d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350184418", + "DeviceId": "d0d7b6c9-1614-464a-9984-89c5f9b8a517", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229182168", + "DeviceId": "c93f7058-10fc-410b-9755-21fd768a0e5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_950961275", + "DeviceId": "e4e89da1-5695-4c12-9677-61ff2afa3614", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588277913", + "DeviceId": "70552815-7ddd-44d0-b868-ce23b8d4ec7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596051065", + "DeviceId": "aa128996-7339-4b6f-a39f-249483700172", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152046377", + "DeviceId": "06286768-2ad9-49ea-ad0b-9d612526181b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741620457", + "DeviceId": "d72ca28e-ae8d-4ee8-bc9d-900ee9fa7513", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676805312", + "DeviceId": "31b7b287-c90a-4705-89ff-2c8add039b68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458420633", + "DeviceId": "3b83cf11-33ed-4af7-b01c-f3c315836924", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825109944", + "DeviceId": "29787a76-3d5c-4af9-9d57-7a8915ad2813", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572208536", + "DeviceId": "d1192c7a-ab2d-4be1-890d-f3025cd61157", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853455032", + "DeviceId": "ce131cdd-63bf-409b-b758-7d38e068778b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349503528", + "DeviceId": "4cb116ae-6502-471e-9c15-2a4791f2a00c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263210492", + "DeviceId": "c7baf68b-f89e-4ee0-b737-cb8639c2914a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940428922", + "DeviceId": "7756dead-42fb-4f24-8eb1-2a1140fe1e28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810668186", + "DeviceId": "cea93c5f-77ce-4d44-a4c7-d6220b06bd82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_247548270", + "DeviceId": "80972dc4-94ae-44d8-b47c-5ee2dbbf4774", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337029687", + "DeviceId": "04cabd77-43dd-48c1-835b-ae7ea3996145", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430375947", + "DeviceId": "bc8eedf8-2558-4540-9491-4ca453fc2688", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_205890226", + "DeviceId": "db348c2c-093e-4082-a43d-b50fcd4e340a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592476257", + "DeviceId": "5e9afa7b-cb76-4fe2-bdff-1ea7278dac7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770727166", + "DeviceId": "48a5e622-532c-497a-ab10-450f3ebe22dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471103305", + "DeviceId": "fb058734-0ce2-42bc-95f9-dcde31fc5e53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_183584543", + "DeviceId": "587d6d01-5de0-44d0-aa8a-f87dcc2782e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242589329", + "DeviceId": "8d62aff7-8a6a-4d3d-966f-cb30e7878060", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582483275", + "DeviceId": "4ac2f3d9-9444-45cb-8dd0-12b807dd310c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399810286", + "DeviceId": "496d9ffc-3c91-4bd7-9a79-c1b9765358ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309514188", + "DeviceId": "463ae266-4c64-406f-951f-d59c54629976", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185523075", + "DeviceId": "364bf8cf-3cc4-4704-a2ee-1326024bd092", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836521125", + "DeviceId": "9dc6da29-3ad4-45e3-81d8-44f2c5dd38b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559738536", + "DeviceId": "baa5a643-7e27-4d94-8edb-f98bb11c467f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_166897368", + "DeviceId": "f3e891d6-f258-4ac2-afb4-6e228691bd77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410219243", + "DeviceId": "2b789627-ff34-469a-a6b1-79d6e053f948", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426898244", + "DeviceId": "e453c499-4ece-42aa-945f-05f634b162da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_867993642", + "DeviceId": "086da081-a76c-46b4-b78e-e366122a8715", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_891371566", + "DeviceId": "df58f7f7-032c-40ad-a3bb-260a8cc51e8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_459627054", + "DeviceId": "2ec29ecf-4724-49bd-a1cb-32908c5c68c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393688158", + "DeviceId": "4012622c-8eb3-46b8-9bf0-0bd671facb3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390578221", + "DeviceId": "baece7a0-4460-4abb-a907-29b68a7eb65d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337432004", + "DeviceId": "612ac928-e9f8-47ae-b8f2-297c07299e32", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222148166", + "DeviceId": "27ce3029-8219-4406-a499-1ca0901669b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168003886", + "DeviceId": "3be697bc-8b87-4a62-9b14-628d36488443", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_595548254", + "DeviceId": "3a7e9a20-f65d-4aa3-815c-ac124c79b971", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4fcb12cb-07b1-4919-bf7c-6a16350039e9", + "TenantName": "Tenant-4fcb12cb" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants10-sensors500-2906260248.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants10-sensors500-2906260248.json new file mode 100644 index 0000000..fedbc46 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants10-sensors500-2906260248.json @@ -0,0 +1,4152 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860831345", + "DeviceId": "5b0c47cb-f8d1-4e14-8955-5761224204fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116160339", + "DeviceId": "6b2f1621-11e2-4769-b453-38e785b13036", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513166551", + "DeviceId": "32e23f8e-ff3b-49e3-923f-3deabd4640c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119056279", + "DeviceId": "7dd68f29-e958-4c36-a85b-e03df8f18c1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692512947", + "DeviceId": "4484d6e9-5a6a-4c93-831f-d444f448438f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398394343", + "DeviceId": "b46cadc5-fbb4-44d5-838d-81b3160721e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802977639", + "DeviceId": "26ac5a89-cf74-4c83-be3a-79636710682f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_983878912", + "DeviceId": "b344ed53-57e4-4157-8094-f3d57699d6d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330991256", + "DeviceId": "cf514222-1d33-480d-a70b-aa7e11bbd507", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987878538", + "DeviceId": "5ae6b04b-40b3-4584-aba2-9f3a6bf97632", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613654834", + "DeviceId": "9f7c1e57-8c86-4e58-98aa-e87cbb441d53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_266939233", + "DeviceId": "ab3191e4-b4fe-4f0d-b703-5a38c35b5c4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631001205", + "DeviceId": "def7fd38-2a36-4506-bfa8-5b73b525d208", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982236518", + "DeviceId": "b3295fe2-ffcc-4893-baf4-fbf976b05322", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295628750", + "DeviceId": "0de1a176-8a86-4cd7-837d-9530f8277011", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252055263", + "DeviceId": "25b59b05-3775-4ee4-b85e-3c1ca5167e70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333809173", + "DeviceId": "141a5add-7346-4a1a-a788-f2120ec572de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_648394893", + "DeviceId": "3e760339-db61-4d8b-b96e-1e3dea51e58c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402181253", + "DeviceId": "33c70c10-deb9-43a2-9598-74b9bcd93e1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334156949", + "DeviceId": "d7870f52-0436-4996-970d-e0c04530b811", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260432394", + "DeviceId": "c785cd8f-769f-4e94-b9c9-49a9a67b9c8d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225291074", + "DeviceId": "398a50d6-6e8c-4a01-9217-6af2def18913", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482977509", + "DeviceId": "e26c2333-b1a7-45ac-aca9-09765b6a31bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_554190255", + "DeviceId": "ad6a5afa-fafd-4ad3-af70-9ecf1f509266", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598560586", + "DeviceId": "8350a5b3-c241-4714-b49e-0e99d0850d1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911257413", + "DeviceId": "a582ad03-970c-412e-b07b-f413d767817c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374057019", + "DeviceId": "54da3a7c-6052-4f41-8a72-a8d04898fd45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263014109", + "DeviceId": "d24e67a8-9b7f-45ae-853c-84c46c0c241d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_909595606", + "DeviceId": "a0bdbf2c-2c7e-4058-b695-fc5b429db95c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962992996", + "DeviceId": "f676b1ac-1cae-41f4-8d66-b5ee837b49b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814178958", + "DeviceId": "660ed0c2-3346-4f45-8ab8-13828a86e0f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_483730359", + "DeviceId": "f02d9e33-9be5-4847-bfbf-d4ff94ffc9ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425794006", + "DeviceId": "1bd47d8a-c966-4257-b033-6fcba7d66e81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_635925759", + "DeviceId": "df6e3e51-56a3-47e0-885d-238811fba599", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550514907", + "DeviceId": "ccd1be89-736d-4ed0-bb40-31b4b9ab2fa5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862754009", + "DeviceId": "930ada70-358e-43cb-877e-dcbc25d7371c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585370427", + "DeviceId": "8b93f21c-3313-4878-9efe-074a8bb74ba6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457955035", + "DeviceId": "ffbf8405-3eaf-48e1-ba72-5999251c968f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_447959693", + "DeviceId": "292377ed-6277-4dcf-b614-7904649550ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509231954", + "DeviceId": "4fa70140-53c1-4269-9007-091663eb24fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_194740713", + "DeviceId": "679aa914-541c-4738-943d-3d283ee5fafb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994871124", + "DeviceId": "841f9241-c76d-421e-b7cf-0b802c67d11f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831353219", + "DeviceId": "4389f467-b196-4626-864e-cce194b95c09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725840480", + "DeviceId": "be0a7e9f-3763-4085-a030-9956002e03f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972517128", + "DeviceId": "e07fd96f-ef49-4c45-86e7-94bafcf38cb4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_133648419", + "DeviceId": "504ffbe7-6472-4fc7-8f0e-357489b60b8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373970659", + "DeviceId": "1780d885-29ad-4992-a3fa-4ab5ae7be77b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_602367908", + "DeviceId": "42d436c6-c625-4b78-a8ec-0b4bc0415d1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993564336", + "DeviceId": "f1efcdc5-90fc-4048-b8fd-e82ccd0cd05d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107146608", + "DeviceId": "235473d6-ef3d-4f97-8c07-a0f835950de4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_159811647", + "DeviceId": "e9b4444a-c999-4ec8-9b0d-2c0638ba8de9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "102e6258-de78-46a0-a5c8-4c653cc68fdf", + "TenantName": "Tenant-102e6258" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_503766407", + "DeviceId": "07db8db6-cca1-4894-8086-efb49cf9296e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399093423", + "DeviceId": "94d01508-4afa-4797-afd6-6b51422b00dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_733511039", + "DeviceId": "c166bfd3-e020-4655-93ca-7755a299f8d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587213327", + "DeviceId": "a5a9f6a1-891f-4fe8-9ee9-a0c906ddfc2a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315092837", + "DeviceId": "3011d6e1-09f8-4d1b-b27f-ca508fc52b77", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171310404", + "DeviceId": "3cdc42ea-4550-4a53-8f9e-9b1ed291efa8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699936448", + "DeviceId": "5b522570-8f65-49ac-bcaa-eb1ec4db8bc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_189980406", + "DeviceId": "2158b725-f184-47e4-99f6-d7b633e986e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635994035", + "DeviceId": "56f8eacc-a686-4794-bf9e-3aab38b76ada", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_446283078", + "DeviceId": "b105af6d-795a-4b11-a119-68304d5773bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_310262582", + "DeviceId": "38b7f243-b5ab-4dec-83ab-9c2ff10077e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284557614", + "DeviceId": "441c745a-a18a-4895-bff0-02138ab22289", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_775452540", + "DeviceId": "940eb994-bc78-45a5-9300-fa704072478a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276795210", + "DeviceId": "c383416a-6c81-40f2-98b3-1fa4b3487790", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772739090", + "DeviceId": "681221b9-1fa9-4f46-bea1-dd8bac5b70b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129969762", + "DeviceId": "58f61875-4e73-45e5-96cf-0761778360ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431576759", + "DeviceId": "4d702a68-0ba7-4361-b832-cab85b67f837", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_489703398", + "DeviceId": "cc2b0a4d-40e2-4459-b186-b44bbd229951", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422876216", + "DeviceId": "5f7b20e9-c76f-4a58-bdf9-c378004a9ffc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_983082743", + "DeviceId": "e7e25b0b-b4f0-48a8-b3e9-2b5bf2eeafae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415589640", + "DeviceId": "dcfd5bac-2dde-4a77-b980-6d421bf56f75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694827846", + "DeviceId": "e173fc8c-5c45-4208-9ab6-e6befbcd05ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202706747", + "DeviceId": "ef476f56-22c4-44c9-b777-3154ea0e4cd8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245606647", + "DeviceId": "f30671d9-b9eb-4673-a967-3f3c9d347027", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117437363", + "DeviceId": "d10b6bbb-a17f-483c-8ea8-eba274a6384f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278856267", + "DeviceId": "6aa609dc-ae38-4db7-9228-8ac7c2711ead", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999907577", + "DeviceId": "863b8592-549c-45bc-84b8-3436dc05fbdd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292137831", + "DeviceId": "56c645ab-4b66-4579-baef-2bf40b2bac9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_692466601", + "DeviceId": "82665a00-e3e3-4238-b380-697adb227c17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_144785072", + "DeviceId": "c32363f4-7c53-44cd-9690-7ae1a3fc5ffa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730981593", + "DeviceId": "53fd272b-4771-4724-808b-06d0f2c9c50b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681667264", + "DeviceId": "c374dd8f-175b-44d5-bba8-0a52eecf0219", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701114226", + "DeviceId": "b0b07d4a-dfed-4e0c-8f54-f39db071e0bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496957981", + "DeviceId": "eabea5ea-18b5-4fc4-ad06-a1b6ba0d1c28", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_629082732", + "DeviceId": "5d78ee23-a1ac-49f5-a717-3b58a354d8a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_413617455", + "DeviceId": "70f76dce-b544-4210-af84-b170c847ae7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_610521059", + "DeviceId": "7ef25311-5cd0-4ef4-87fc-488011139c77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_555017424", + "DeviceId": "604ab607-4029-4192-9a75-ebed46a65536", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342568921", + "DeviceId": "8909e446-ff63-4143-b271-d10ff5ea9d86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854943642", + "DeviceId": "ac3e9ef6-7d83-415c-b1d8-b29f1de1eec4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_118150352", + "DeviceId": "6899f1e0-abd3-4705-91bf-fa96dd0a8ca7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_117844813", + "DeviceId": "169ab830-16be-43df-851f-8fce9e40fa78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878664955", + "DeviceId": "11a7aaea-73ec-4c54-a2e2-e554c3420e6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736107416", + "DeviceId": "bd194257-5021-4ebd-b594-81036c5dbf32", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_974921913", + "DeviceId": "c9b830be-29d2-4f68-b3ea-8e253602a691", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999710141", + "DeviceId": "e735e82d-781f-4580-a071-dfbd577e235b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_259127814", + "DeviceId": "0bf2cef2-b8d3-462f-b8ab-73a2452b869d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932285031", + "DeviceId": "05535bc3-b4ee-4fec-b2c4-743ae4dd4198", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_602002347", + "DeviceId": "21baaff9-ad61-4c15-a14a-31b72563a1fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_122581820", + "DeviceId": "e7403914-a919-4275-8788-6dc09a192641", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727368613", + "DeviceId": "0b250b95-ad84-4996-9983-a8bfc1eef1f6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8fd9afad-633b-46b2-bd43-b8f6bd0b1da8", + "TenantName": "Tenant-8fd9afad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743677837", + "DeviceId": "b8bb6308-b1d2-465c-9f3d-4e58f7e5537d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104901451", + "DeviceId": "d7ee4099-191d-4ec0-a230-3a523af9e621", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274079047", + "DeviceId": "3e257494-8ebd-44cf-bea3-23ac2ec095ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738746046", + "DeviceId": "f1f1b1f3-c345-4a1e-b69f-7b45377499e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374499628", + "DeviceId": "34d8db73-b395-4317-8880-e81084a7b6c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241845345", + "DeviceId": "7684fa3e-3c2f-4d35-bea7-4ea437274996", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881664247", + "DeviceId": "0958696f-8f14-4a7d-83fd-c011bba0885e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339462209", + "DeviceId": "6dbbc7d8-f5b9-48bf-8f81-806665fa59f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468637348", + "DeviceId": "330aa711-a950-4770-b334-dd63194e2ab4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_780770618", + "DeviceId": "648a93b4-0042-461e-827c-5ea89d6acca4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731649897", + "DeviceId": "93e176aa-9256-4224-b8b2-b1d4f43539e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_296293992", + "DeviceId": "3eb190f1-645a-43f1-b843-b69233c36353", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438460242", + "DeviceId": "c15d73a9-35b7-4ae6-aefa-f00052caac2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215120791", + "DeviceId": "beba9d80-7aeb-43ed-bd20-225ffbfd673e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874975825", + "DeviceId": "3b97288f-216c-420a-b2b2-1236adb38510", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_499552289", + "DeviceId": "52919ac6-5f8a-47e7-ae92-8ae878d3a43b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149985779", + "DeviceId": "e4217763-e51f-4d1e-b812-e79e01c590c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227244357", + "DeviceId": "645414b1-adc8-4128-9f1d-64cc1454507f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102175310", + "DeviceId": "57be1653-4bcb-4549-820c-7adbfa08205b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963182637", + "DeviceId": "9205e479-d8a5-45f9-8875-ad4caaa709ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525818113", + "DeviceId": "05b96939-1c95-44ce-86b6-3486bcf13481", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_603735843", + "DeviceId": "34122f41-af1b-45cc-bacc-e19c50b06b1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925780739", + "DeviceId": "6531ef47-41bd-45e7-ad88-1eb06737f8de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938933451", + "DeviceId": "39e28951-55b6-4c6c-adeb-a49754b6487e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203678293", + "DeviceId": "83f69550-aeb2-458e-8bb3-c9bc6ae0ed95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994956270", + "DeviceId": "fe0261cc-583c-4b99-bb24-18159bec167f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613511486", + "DeviceId": "699a8ab7-baff-4d8b-b686-165d3ffff219", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132804303", + "DeviceId": "3a4827ad-e3f2-4d17-a9a5-d953b10e2461", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249569688", + "DeviceId": "aee5d5e1-7f63-4b92-b9a7-06514e492ba2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815231607", + "DeviceId": "a69ca07b-d8e0-43ab-b95f-ba95e93fa00c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342545690", + "DeviceId": "87863118-56a3-46d6-a523-852b725605de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_813390370", + "DeviceId": "2786ca3d-de39-4bba-93b2-d4fab4609ae2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539013794", + "DeviceId": "41dd8c5c-27c0-4222-983e-bfa0e03e56fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_986442988", + "DeviceId": "fc84d96e-334f-4d20-b796-e1f890969e98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_388465293", + "DeviceId": "6c2edc07-9a27-4587-ab59-94a3718b7a8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574706196", + "DeviceId": "0edaeb09-527c-4912-85d4-69ed1794e550", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687735843", + "DeviceId": "bcf4ef50-7399-4094-bfe9-6ca47747bbbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_785056145", + "DeviceId": "72140cf3-3b7d-4df6-ad57-7f3916935832", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456856093", + "DeviceId": "90c2e295-ed0e-418a-88c3-cd04e94436dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_630933000", + "DeviceId": "d057658c-e905-4e42-98b6-5a6b5ab04bb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809996611", + "DeviceId": "42f8c388-42f7-4eec-b63d-4bc79e1e81d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709382887", + "DeviceId": "02cc67a3-bda0-4629-b07c-a85b3ce740ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676943337", + "DeviceId": "037126f6-523e-4144-9c50-a39b886be1ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885825510", + "DeviceId": "7e06c7ac-eb28-4ebb-937c-7e32455d3a48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123167887", + "DeviceId": "543fde72-dfe7-454a-b600-3c2617b32236", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_722137089", + "DeviceId": "cd20453e-91d5-4fbe-9df8-52752378ff8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827026651", + "DeviceId": "6327dfde-f2ac-43bf-887b-222cfcef18d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608422520", + "DeviceId": "277203f1-7cf5-4b40-bd9f-f8e6bd81464e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558251972", + "DeviceId": "4dcf8a09-8bdf-4d81-a439-086f8b836a86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575814812", + "DeviceId": "9f76483b-c862-49aa-bf7e-6a0eb290cf40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_467036443", + "DeviceId": "44cad2fd-8c02-472d-9495-555943e55d73", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "925c45b9-9582-4e19-9476-4a88f9a395ba", + "TenantName": "Tenant-925c45b9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414484694", + "DeviceId": "d31e43dc-5072-4c5c-8363-1810eefbee21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445931170", + "DeviceId": "fbc8f557-ae9b-448a-80b6-07462a4e2d75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_434560443", + "DeviceId": "ac35deaa-8c0f-4f48-a24e-1cb95f432bb8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808646932", + "DeviceId": "3ada64e6-d2c9-4eae-8edd-16398c8e95af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597780976", + "DeviceId": "10f37ef0-6280-4879-9530-e9ed95964555", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605578416", + "DeviceId": "40cd78ab-cd61-4345-8f20-c8b819620202", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_615743699", + "DeviceId": "678d4faa-6459-48ef-b11e-b81ba352bd39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930527090", + "DeviceId": "7fd56608-7e9b-42a5-9175-5f08e5067fe3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232520061", + "DeviceId": "88092c8b-012d-466c-ae5d-2ce8e31bcce9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986198495", + "DeviceId": "1aca25ca-4229-46b9-989d-469034f5399d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221145394", + "DeviceId": "838538c5-977a-4b9c-babe-fbb85224e9ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241107845", + "DeviceId": "3921b0ec-27fb-4dd8-acec-e74b70771169", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794669576", + "DeviceId": "ec8cfbc0-d851-4aee-bf28-5f7027869604", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962735279", + "DeviceId": "d6683d41-4a0d-4ced-8c5f-fae594bdcf1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_411737669", + "DeviceId": "f7cbf19c-1f15-4c93-8369-92ea96eaddfc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_887557045", + "DeviceId": "5ae079ed-8a63-4fda-bd39-87077f4acb09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582406526", + "DeviceId": "f17c419a-27a2-4a60-a194-cc7b631629b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508427533", + "DeviceId": "b65d1cfc-8f70-4ccc-aeb8-f160306e642a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483347751", + "DeviceId": "5c863569-75d6-401a-8975-9f37de2665f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467977533", + "DeviceId": "40045e48-8cd4-4789-b492-20f188a1c60f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954324968", + "DeviceId": "8ab5e513-0faa-416b-b6d5-d1e92676a392", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_961687611", + "DeviceId": "eebdcb0d-c240-4bda-80ae-b21c6ad275aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913727329", + "DeviceId": "105f00f6-0a82-47b3-bd17-be167d4134b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681733242", + "DeviceId": "4ebd6ca6-cd2c-4112-ba5d-dabe00c4b468", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244146100", + "DeviceId": "ca898b90-1fd9-45bf-b84a-ab0f6a9fc2e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_895393774", + "DeviceId": "bbc5937f-4467-4026-98d2-14172a1a029e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_912906541", + "DeviceId": "56f3e792-a597-4ccf-8d66-fd3db9c51b74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808807050", + "DeviceId": "3d0d24b0-a73a-46d2-ada6-db8c2d8426f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200177765", + "DeviceId": "ce215b4c-256d-4a09-92db-e4b95d2c4fb1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799648036", + "DeviceId": "6e119ac9-0faf-4049-997d-88a5cfe18d7d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_194144859", + "DeviceId": "83f9d655-35c1-46bd-8cc3-33eb473bc70e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576937827", + "DeviceId": "ed6188ab-de38-431e-a918-11fd20b71fbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581717801", + "DeviceId": "83c14b2d-1c12-4ae8-b8bb-ea4f86381987", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574800324", + "DeviceId": "8f202084-5526-4190-9976-4e4e14f0fd5e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_602340074", + "DeviceId": "e8bfef56-0a5d-4787-ba03-84a510080060", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_655252926", + "DeviceId": "d6273076-8381-473f-8a4d-e85adeddfd7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_279805125", + "DeviceId": "a6a3c097-9d93-48b4-b3c1-ea37722ad8c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256983989", + "DeviceId": "e012ab0f-670e-44bc-bb99-c552b8129434", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_308123619", + "DeviceId": "7173c022-bfb7-41f4-a92a-2a334930162f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329615122", + "DeviceId": "5706c4c2-69e2-4048-a80e-780f62bcac14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_635500862", + "DeviceId": "6cf7dc45-d603-440e-9db6-6b217b4557e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_436103196", + "DeviceId": "6297a4bf-861f-44d3-a61f-1c35d4ce968e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_567462715", + "DeviceId": "305469c0-8fe4-4361-b095-137a505dc520", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_975951362", + "DeviceId": "e1a36cce-4237-4651-a323-0480837f5323", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283337729", + "DeviceId": "0023ebf9-9c10-4687-a98a-94f5b1f00aa9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654697778", + "DeviceId": "04068253-cedf-4a78-bbdd-9a2dfe4b0385", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873870545", + "DeviceId": "9659e45a-4205-4b93-8f96-56ca5608af65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826381747", + "DeviceId": "44907629-0fdd-4f4d-9c6d-2fc928e890e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718148200", + "DeviceId": "44381214-d080-42c3-af08-2d6d5c1885e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873193568", + "DeviceId": "2103d870-c166-46b0-af32-65803539813d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_763819277", + "DeviceId": "ae2c601d-c3ea-4a3b-9910-db4c253db24e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "59f8192b-2d11-4a4b-8b65-a5c0790d7d34", + "TenantName": "Tenant-59f8192b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872454801", + "DeviceId": "58833293-7447-4105-ae5c-7194a878e4c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392459956", + "DeviceId": "04f37cf6-fa7d-49c4-a13a-c5217e00c9d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_204687308", + "DeviceId": "0b3a655d-bd05-45ce-95f6-a6decd8a71ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476731643", + "DeviceId": "ca0322aa-357c-4f0f-9b79-70812e3de831", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741211604", + "DeviceId": "513d6f6d-d87d-4033-adcf-e74954d4a6e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935254482", + "DeviceId": "1d12f23d-e411-4cc4-8f4e-e9cce531b0ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658191836", + "DeviceId": "5fbbd0bb-61b7-46f2-adc2-4538c6acb15c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617890217", + "DeviceId": "d4c97197-c0df-4c53-9467-fbb71de1e597", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975604422", + "DeviceId": "232a77af-eb1d-4d5d-a5bc-0a694467722c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182116926", + "DeviceId": "9da1ba59-3e0d-4336-a881-ba23eda34358", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597311440", + "DeviceId": "a3fb338e-aa49-4178-8f43-e999f0f5258c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_551994896", + "DeviceId": "4e0dff2e-58db-49c2-a798-2255c6b54c1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393898105", + "DeviceId": "b675b157-bcf4-4a72-a8d0-824b2e441a97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881047972", + "DeviceId": "1de539e4-2eb4-4517-8493-02ba52ce0484", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_282228394", + "DeviceId": "ae068a75-2ca0-4c90-a21c-5e4e3a57377d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658666540", + "DeviceId": "b150bd13-6fad-4d37-8bfb-93cadefeb628", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616916017", + "DeviceId": "14f37439-cc19-4eec-870f-266919f60634", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334680965", + "DeviceId": "12c31baf-555f-4646-b244-83bd0d03875d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485563140", + "DeviceId": "b4799f7e-5666-4a6d-982d-75e629f76d11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320335201", + "DeviceId": "df869642-41c5-46e0-a7c4-ed286518926b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850873819", + "DeviceId": "313f4b47-4108-4342-a634-767a622c4851", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_792818613", + "DeviceId": "9f258432-a369-41d6-8155-2513ca024622", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724609210", + "DeviceId": "a5878a3a-3bd1-4637-b46a-6716722c6d36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380494323", + "DeviceId": "4abf5fb1-2878-48c1-a18f-cadcf75faa7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931050585", + "DeviceId": "9a74251c-ff7a-4ea9-80aa-e18c48ad974d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164314167", + "DeviceId": "12d4efa6-33a1-4c9d-89ef-27280cdc4d15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_620649003", + "DeviceId": "d1335a6e-3b91-403b-82d3-851a49eae0b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848105951", + "DeviceId": "438f1653-ece4-487d-91b1-287eac601fa4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875867393", + "DeviceId": "dbc6fdfa-aa3d-402c-b550-f3e0816d3dcc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_352073620", + "DeviceId": "8da8b344-17b6-4bd8-ae67-f7c1b812e7c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324966337", + "DeviceId": "aedd1b8b-8c17-4803-bc98-b2afd14cc66d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_883629760", + "DeviceId": "a39cfdfd-030b-4ba2-95c7-cf839694d76d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_218177158", + "DeviceId": "f4ecc5bc-37ae-4bbc-9720-635654356125", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875981599", + "DeviceId": "2b7ed30e-8c1f-4119-baef-4dd7bf5ab21f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_863564597", + "DeviceId": "6aa2a4ad-feab-4a2b-8060-8b5abb551340", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644194836", + "DeviceId": "06e5c591-7b4a-46d6-8b86-f1804eaeeed1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286713199", + "DeviceId": "78c418d0-d0b6-498d-8ae1-b545b77227b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960111982", + "DeviceId": "c6817b3b-4173-4773-89a6-730c114ac788", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_349344686", + "DeviceId": "0e9357a8-4d22-49a1-b86f-b4d1cb2626ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_497662300", + "DeviceId": "6c5a292c-ef52-4734-9487-dab14fbdd045", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766565015", + "DeviceId": "78372fb8-20be-4b83-85e7-3e5300c7002f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506409798", + "DeviceId": "ed48fa77-bba0-4c07-a973-18583ff8c95a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907437334", + "DeviceId": "b3604e0f-b7d7-4e39-a563-a78f5fcaa530", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487999274", + "DeviceId": "7e62bcc2-6cc0-4586-9b5b-306f732874e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481348661", + "DeviceId": "d0f72c47-903c-447c-8356-a318a025256f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282236527", + "DeviceId": "5497e6ce-a217-4f60-9e38-9fdf98c14972", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_633403534", + "DeviceId": "04a6d1c7-465a-4494-a27f-673ff88ba2a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457943301", + "DeviceId": "0fd6d3ff-6d5a-4de6-9eb9-f752048ed104", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266971134", + "DeviceId": "95b2ae78-d437-4023-8b83-c4edd684f796", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251985523", + "DeviceId": "094ed6c4-cfa9-4b27-9bcb-a1f5d68ad561", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_530128744", + "DeviceId": "ef06c08d-cfe7-40e9-8b56-321cfce836a6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08b8a00e-5525-41b2-85f1-3914b17ca920", + "TenantName": "Tenant-08b8a00e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_604051532", + "DeviceId": "32038e96-c266-4b25-8b2e-4b166f6e511e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_807005836", + "DeviceId": "41ca7592-09e4-4d7d-871f-d164dc71a55c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721410873", + "DeviceId": "50818c4f-de3c-430e-8189-ddc9b1455d1c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_754139797", + "DeviceId": "1dd2c10a-d202-49e0-8420-347fcef5737f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255880294", + "DeviceId": "7a30bcb8-2813-438f-8a43-19e9467d49cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_456321908", + "DeviceId": "adc7c498-c4f8-47ec-81ff-501a6754fa32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_205847879", + "DeviceId": "6bb0318d-70a2-4bf0-90ab-d195cc75a11c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_637805909", + "DeviceId": "a31db211-2c75-4320-aac6-a8b0f9eb4c0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559384601", + "DeviceId": "293a1d7c-816b-4bcd-b3b4-6ee52912c99e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504081229", + "DeviceId": "a83fa69c-8afe-44c8-9014-dbfb0cace693", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242075133", + "DeviceId": "3aafb84e-9d03-4087-82d8-cc00f99ea2bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730143621", + "DeviceId": "b664da4f-ae09-4093-a2b1-913e7cf73248", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230654882", + "DeviceId": "8dcc29af-50b5-4728-835c-b0cbef9d57e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949325511", + "DeviceId": "a4d568da-49de-490d-ad12-ec94078946b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948275114", + "DeviceId": "7d130e14-0ad9-4425-a983-989960733021", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979656497", + "DeviceId": "bd4a7ce9-3c6c-4b64-88dc-5bdaf64978b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508916299", + "DeviceId": "a41234bb-4522-4450-86df-db5fabfc558d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212544720", + "DeviceId": "a9a03ccc-641c-4289-94af-600a01a61c4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_662858911", + "DeviceId": "1bee170c-35f4-43d7-876b-13761b1eb86a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116097745", + "DeviceId": "f31a5e5a-9ffb-4a77-ac82-ab9acfaeb57a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622120901", + "DeviceId": "ae83a0c4-26ea-4539-b2ed-017a0f933abc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657820486", + "DeviceId": "78efb41c-43b6-483a-a06e-396953092d0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301326113", + "DeviceId": "b9686184-a23d-468b-b981-ec9dfedd1000", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292338190", + "DeviceId": "643f6be1-0041-4f02-9554-6606706ee1d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_857847212", + "DeviceId": "955f58f2-bd39-43f4-8557-a4e86ddf822c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650068435", + "DeviceId": "e2aeeeeb-7fa9-46af-8ff8-beb53a6cc214", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401584222", + "DeviceId": "4178d5a3-e785-4b71-9a68-cdf668aad95e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999060965", + "DeviceId": "18d2930e-1e08-42a4-af13-b85ae59f3b01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338718126", + "DeviceId": "c7bd2432-2acb-4ffc-a30f-de4e49de8685", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913937275", + "DeviceId": "a8427187-4767-411d-97ca-02fe5233a891", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_446898374", + "DeviceId": "6caf3f2e-0657-4f20-8a30-4c05568ae9f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249971261", + "DeviceId": "a39756f9-b17b-4334-b73e-9b1a7c550428", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702847665", + "DeviceId": "f8053875-e365-4f2a-b6f3-ddff572a95a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128389755", + "DeviceId": "bdd95e64-11ed-4774-8d49-be51216d7852", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708274034", + "DeviceId": "c52a8f46-7cba-4233-853e-2c3a6f1455f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688972240", + "DeviceId": "66ae90de-5d3b-42de-ac83-7b3eef80d4fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931380019", + "DeviceId": "99aae62b-9855-4c74-8e58-daedd1a04d5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926834260", + "DeviceId": "ae86f169-8d8f-4dc6-98a2-c449a5238251", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467818190", + "DeviceId": "5fb352ca-b3b2-429b-ab87-648c9ee49ad2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744900986", + "DeviceId": "4c2f6c54-ad92-45f3-b2c7-c3abdee14a1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319869110", + "DeviceId": "38a24376-a017-4cb4-a62b-30ae6308ce2f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897925007", + "DeviceId": "a9d269fa-f60e-4357-95d4-b8d0f20c4841", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252693914", + "DeviceId": "42111282-c903-4136-a989-fc9bb374f655", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767425222", + "DeviceId": "20943469-00eb-42e0-a316-16dd4941e468", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405633250", + "DeviceId": "6dde5402-be17-48d8-9892-e35caf5714cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_118573197", + "DeviceId": "2bf69587-5f3d-442d-8a11-fc9512f8b567", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348190108", + "DeviceId": "0dfcbd9d-b23c-47e4-9d73-35318c7129e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735799569", + "DeviceId": "3b0aa5da-2f76-4561-965c-a4220d5d392b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410222779", + "DeviceId": "2b7c5567-b724-4043-8164-829b37728813", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_104166217", + "DeviceId": "bbf7681e-311d-4b0d-a5c1-28411a599467", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_826140868", + "DeviceId": "8c8f87c0-79d6-4044-92e5-f14d05dd9077", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0272fa2d-408d-4074-b294-1495edecf9cd", + "TenantName": "Tenant-0272fa2d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616738726", + "DeviceId": "fd5a1407-2f2f-4cc5-a4f2-62f77ed41519", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245736105", + "DeviceId": "f5d52605-8b60-4a01-97b1-61f02a80833f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_226852597", + "DeviceId": "c3a45944-f30e-4e59-b56a-3ee1f22b5a7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261983184", + "DeviceId": "e8d948a7-f0d0-4df2-a87f-d85f16c344ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_607039886", + "DeviceId": "a6c79f3f-8feb-419b-809e-1f0b9aa96ab2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888152121", + "DeviceId": "3d681b79-d79b-4b6b-b80d-d188f08c27ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951871373", + "DeviceId": "aa898eb9-bb10-49e2-8dd7-7bd996317da2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123905138", + "DeviceId": "0abaa709-b757-4a77-bd15-62b3442c8f1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_855910773", + "DeviceId": "dfb52437-244e-4954-b9e9-8f9e01dc5e46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169639905", + "DeviceId": "adfa8ee6-8fee-4d66-a664-fd526abd144f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115444520", + "DeviceId": "c2a3d2e7-0373-4804-ac7e-db6ac6c9f40c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560177664", + "DeviceId": "4ad03847-0125-4ae1-9aa6-71bb633d1ef2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535523627", + "DeviceId": "7703de92-4137-4944-bc37-45024ebd50b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_555924533", + "DeviceId": "5c50e747-4d58-48be-9b66-097147c4f7d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265409126", + "DeviceId": "2a1376ff-c162-48ef-a02c-09d92fc8807a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892289580", + "DeviceId": "c800f243-3338-4d57-8c45-efc194fb16dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804875576", + "DeviceId": "b86168b5-017a-4eec-821a-729fe4995b84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122451669", + "DeviceId": "cf77e58c-9db9-48b0-aee0-1c41aa249329", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768849675", + "DeviceId": "768e1e34-7f77-40a1-8cf7-6d4f9e5922c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221269181", + "DeviceId": "b5a0c85b-015e-4fc7-807f-241ca10c4810", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141039341", + "DeviceId": "6eae2d70-ae3e-4043-b234-cc94e3bc15b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999400331", + "DeviceId": "0ff6d7a2-3edd-4d8b-802a-886f2672e8e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812146918", + "DeviceId": "39056c3d-d034-4966-ab54-e6ea7e0264f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974750175", + "DeviceId": "54eb570f-0686-4293-af7a-8a8644fc77c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_719922528", + "DeviceId": "5c4128fa-7abf-4876-9089-bb0fd6bbde55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_967018027", + "DeviceId": "141c7f76-347a-4ee8-9653-a226c6757f97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_970344644", + "DeviceId": "55f890e4-5be8-4535-a169-a3f6563116c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918625053", + "DeviceId": "2de57566-76bb-422d-ab79-52d66f8eba05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397048271", + "DeviceId": "c83fd9ef-be6f-4c9a-a904-40cb57d95c04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645205153", + "DeviceId": "d54e7914-53b5-4f46-87e9-f580ee361a01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181841046", + "DeviceId": "b6012a42-f9b5-43cd-be6d-644fe0d7fcc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168636822", + "DeviceId": "778fed13-4624-4ead-b779-5edcdfdabead", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_446858607", + "DeviceId": "25f84641-1533-4926-a9cd-e6626d567ae0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688769608", + "DeviceId": "d8e3b274-6584-4a0f-acfc-5f82a6fb578a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395899700", + "DeviceId": "6d6b35ad-1a5f-4491-84d0-6b3700ce5f71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575614123", + "DeviceId": "8049d774-931c-4c60-ad99-1315761fa2f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552025083", + "DeviceId": "f77fd88f-b1ee-4772-a92d-53a2a813371b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766927293", + "DeviceId": "4b3c97ef-4261-4942-933f-f669a52390bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_682261691", + "DeviceId": "a896ddb1-1400-491a-b659-dd750c46b078", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799617323", + "DeviceId": "20a29e6f-490f-419a-b8e1-2f798e37a346", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_970120462", + "DeviceId": "b9b4d089-5b7a-4025-8dab-428806c00416", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_639876359", + "DeviceId": "a5de70dc-3da2-49e5-b7a2-e2acb410a218", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_507346307", + "DeviceId": "a3d61792-3ecb-4559-b3bd-410fb672e7ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109434610", + "DeviceId": "ed86a10e-ac72-4987-bfc4-82cc7c62d102", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626124481", + "DeviceId": "a57189db-3af9-471e-82c3-64331836c775", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713303645", + "DeviceId": "8365a358-0fe1-4b58-93b4-b1a4634896d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201711307", + "DeviceId": "1bde19f9-bda4-450c-9bcc-e00f8e1e25f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135390731", + "DeviceId": "fac2b33f-fb0b-4280-97ea-52e3491e92fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438787883", + "DeviceId": "8f2beb54-1b03-4388-84c1-e933e0e8910f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_630433034", + "DeviceId": "e7fb18e8-c6c5-4c75-afec-37a94fbd647e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_934139576", + "DeviceId": "ef949edd-4178-44a8-b64e-59498bc3fad8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a424ec12-1f9a-493f-bae5-9dba9db4c024", + "TenantName": "Tenant-a424ec12" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958373653", + "DeviceId": "7432bd7e-91a0-473b-90c2-a2b845dcc4c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651193383", + "DeviceId": "be67d709-8335-460a-969d-e1ca7563215e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699608938", + "DeviceId": "189854d4-18a3-49f5-988c-87dda3a342c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201653578", + "DeviceId": "dd6cdffc-f066-4837-b2d6-6fdce3b852e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718353775", + "DeviceId": "d2311138-5d91-4e71-a0b5-0e9f95fe70f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818828818", + "DeviceId": "725f5080-eff8-403c-80d2-9f13317b3dd3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_503552448", + "DeviceId": "3edcd145-d5da-4f7c-a487-0d741039c8fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431718806", + "DeviceId": "31bf6ed3-db14-4ca6-a44a-14b14588d93f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_551195260", + "DeviceId": "e987f06e-4b5e-4f3c-82f0-abef509c544a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140937794", + "DeviceId": "acbfc35b-9ff1-4db0-9fe8-29a39129a8b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841336258", + "DeviceId": "a7ba74c3-9a3e-4e7c-810e-0a115f8f02de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313572830", + "DeviceId": "d7bbcae7-931f-4c7b-9c58-c7d45f1bfd5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_197855270", + "DeviceId": "47f534f3-ee7f-47c6-88ee-0ab39e13279b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_338060191", + "DeviceId": "12d7b7a1-a2cf-4f2c-89f4-fc8e2aef070c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912076603", + "DeviceId": "921f5257-1b27-4269-b909-6e1364c52720", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925743627", + "DeviceId": "f6bda19d-bd5e-4cf3-a1e9-b516aa98a661", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738268722", + "DeviceId": "ff4927ff-15cd-4449-8a1e-f74a6ed4fdcb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_780203723", + "DeviceId": "d8073130-f10a-429a-9ff2-fd22c6dc9e5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753748826", + "DeviceId": "39176762-34ee-4553-9953-14bc837f8856", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431266043", + "DeviceId": "2556f3bf-0147-471e-a465-7b15c94d6f93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483234546", + "DeviceId": "c3da5edb-f7b8-48a7-9f86-24a79aaf0456", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901046296", + "DeviceId": "6cce8337-c5c3-4780-bce4-1ef22522a2d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631945543", + "DeviceId": "7965f883-2d15-44db-adc8-2f69f50c846e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812430546", + "DeviceId": "256bab53-8b90-45f7-abaf-c693013d51cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490415265", + "DeviceId": "68e7ae6c-829a-4e41-88d7-72e719186cb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_895316440", + "DeviceId": "f8feb09c-9b86-4585-b86d-41ab3ec01b0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846509278", + "DeviceId": "d2e0754e-277b-406a-8dd9-423c264f7c0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481557001", + "DeviceId": "345b5984-81c9-41bf-a53a-f0463c91fce0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199712109", + "DeviceId": "452876c9-b843-406d-b72f-02166ea090c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799407620", + "DeviceId": "a56d1809-1e03-47a7-9c1e-c7fcc3e60ee5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_774669096", + "DeviceId": "3638b16c-aeff-45dc-808e-1317a03873fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881837542", + "DeviceId": "4d377321-4c7d-4e05-8e56-bd52bbcbd016", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606591456", + "DeviceId": "b8b8f81a-1e82-4dc0-8a4b-97a11d5c6d7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812334471", + "DeviceId": "4d88cd85-02ae-4f18-bbac-a165bc4892b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_492547975", + "DeviceId": "0ae9201d-07b6-4c6a-87f3-a90e6f678004", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288056923", + "DeviceId": "318ceaa7-67eb-454e-880b-a57429ab8687", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282058249", + "DeviceId": "dbadc614-7a6c-4f1a-aa8c-00b7b340fdae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531691786", + "DeviceId": "0c8dd72d-bf16-4b7a-aafe-622b10ed4a3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999988496", + "DeviceId": "e673fe23-6612-4730-9b11-5fafe7d016a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289060271", + "DeviceId": "d159688f-4a49-4ae6-9343-7a173da137a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_541231354", + "DeviceId": "13d41f36-66ba-407f-96e7-1182c740c801", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889429059", + "DeviceId": "330ed324-b317-4590-afba-7c486cff136d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969305195", + "DeviceId": "b53d12ba-605c-4f8f-9866-b62e73df3845", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942886924", + "DeviceId": "65a2712e-ce4b-4a72-b92e-9c9f10ab87ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_593865543", + "DeviceId": "0e355881-cc0c-4da8-8d10-f14ba5988e80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378924727", + "DeviceId": "a1bce9bf-a5a5-434c-9ca0-1af6e55ffede", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_482515783", + "DeviceId": "02647072-a567-41ec-945b-9882c331dfe6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368166416", + "DeviceId": "4ff486f6-aecb-4f38-86dc-1726dad12c70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938610710", + "DeviceId": "6b8e066c-3ab9-4103-9967-6fd8e000c83c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451299250", + "DeviceId": "5782fbcc-14bc-4090-a8f1-6b7d23526aaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_769115356", + "DeviceId": "ffd39f02-76c6-4a07-9b0c-aee24cbe70d8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "86a503f1-7c84-4e6b-a7c8-5bb462c9e386", + "TenantName": "Tenant-86a503f1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_322345609", + "DeviceId": "e886a63b-707e-4720-966f-bd0e2b662c8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206036466", + "DeviceId": "172d283e-a9e5-48d4-b9b8-8b5a5e20c472", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134714775", + "DeviceId": "95a60c09-4d30-4424-98ef-ba274cef47dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_342468830", + "DeviceId": "bcae80ce-8813-4ddc-8b05-10e1f31274d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_177661613", + "DeviceId": "7992018b-f396-4f90-a11b-aadfda3f3e60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_647620164", + "DeviceId": "a30fc037-aec4-4524-9a68-38f800be45e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837185376", + "DeviceId": "48bfc083-ba66-495c-ba0d-87e004e528b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334349586", + "DeviceId": "38235ed8-0c11-472e-ac41-7d13962035fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740008030", + "DeviceId": "e37b8d14-9d41-4660-9f54-ccc142e9174a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587282363", + "DeviceId": "e1bea433-ed6b-4c58-8dff-1bb34d8993c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_219475413", + "DeviceId": "1cba7698-3e2b-473f-8001-10ecb4d9dfc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_683588888", + "DeviceId": "a5dbe0dc-6e00-4c54-bdc2-8099cc3cc26e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866289603", + "DeviceId": "fc7cb0d6-37e5-45b0-9f44-b382be148dbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842599788", + "DeviceId": "4a8d2bda-cbd7-4311-8dc4-0dec67194495", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_594364796", + "DeviceId": "1285188f-2c51-40e8-8f73-0f35a6ec67e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789553049", + "DeviceId": "cf2a5cb6-6021-4ccf-bdf8-31cd7416db60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_792143273", + "DeviceId": "d15726e6-48b1-468c-b8a4-bf5e76b36431", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591930599", + "DeviceId": "bd9f4d61-cef6-4cf7-82e3-f74444b85d23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_758905445", + "DeviceId": "469c293a-984b-425c-a8d9-92f3218b3035", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380426296", + "DeviceId": "91d55881-314b-49ea-9bb4-9cb5117ff729", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633221733", + "DeviceId": "a08028b8-da1a-4836-b5c6-16e0081aeac0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232174229", + "DeviceId": "e864babe-71b1-4eb8-a1ab-38a634bfddb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119279364", + "DeviceId": "779df626-0e3b-4d6b-a309-28fec2280d49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187126350", + "DeviceId": "ca890097-5f7e-4650-b977-f36085894b96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_370127838", + "DeviceId": "863d9a3a-5e97-4c43-9a5c-17fd0f83a098", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808841629", + "DeviceId": "10f6ff1d-9048-4a0f-b061-f1eabd98b248", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508863521", + "DeviceId": "997967e9-4684-4bb4-a235-6794698f4740", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838898978", + "DeviceId": "fb219fec-7d53-401d-9c81-b74535e54e9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533416032", + "DeviceId": "1e09d922-6f4a-4a8e-b9c7-2f3b5bed6dd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342629021", + "DeviceId": "abb8767b-0c28-44f1-9fb4-a5bf3c988a62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996418955", + "DeviceId": "85433e98-40b3-4461-bf75-4dc7d9dbe1d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423653568", + "DeviceId": "1628664c-efd2-4048-b4bb-22d115f47d9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500601599", + "DeviceId": "448bcf8f-44ac-44e3-9f81-20b564d72b0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359207738", + "DeviceId": "f4f45484-2b61-4014-bb78-246943908bfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_507385815", + "DeviceId": "7aed78f1-c071-446a-b48c-814160f418a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547039573", + "DeviceId": "1d4a9fb3-af50-4b0a-bb59-a4ceb603a62b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_598314959", + "DeviceId": "cbbc19f5-8f0f-41f9-9092-fedfcd29157f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273861847", + "DeviceId": "c46558d6-a640-4558-ae54-6fdfc46f0866", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_780889840", + "DeviceId": "5753642f-1fca-4c1a-b30e-45de556346e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925260514", + "DeviceId": "4d3f382c-357c-4aca-a8fd-5348d11534b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390611526", + "DeviceId": "d1ec1bfe-429b-4ecd-a656-fb2f66fb0290", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348720933", + "DeviceId": "24021496-c11c-45a9-8c5e-bc1d6502fe03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820030636", + "DeviceId": "b19933b3-5642-4788-bde5-c1b91af1a591", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873070939", + "DeviceId": "f9ea9cb6-2487-4c8e-ba5c-55f55755e041", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637315918", + "DeviceId": "e1c8133f-0bfc-438d-a3b3-e077949f3847", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568244599", + "DeviceId": "fb0fee64-e777-44bf-8f19-9f644e773447", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688112901", + "DeviceId": "53b23190-182b-4295-b0a4-8624dc017bfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963085747", + "DeviceId": "6ebcf023-5c20-4fe4-8edc-e4b6f1032c6f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_349834021", + "DeviceId": "973ac4fb-c799-46b2-a4eb-25e9fc53492b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451032336", + "DeviceId": "4c4ef878-7e1f-41e2-a875-a8283b43ec0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_441651276", + "DeviceId": "d344f03b-fa3a-4cff-9a27-0b3753a46b3c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "71623a4f-55ce-463c-84eb-4d55767516ca", + "TenantName": "Tenant-71623a4f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975753244", + "DeviceId": "27eec3a6-8ab7-42a4-8b8d-db434c959148", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_673609654", + "DeviceId": "157e2b7d-1d78-42ab-82a8-2cd72abbe60d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928117670", + "DeviceId": "cca0839c-8350-42c8-8c3c-b0073575db6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_454451559", + "DeviceId": "0f3fef63-803d-4050-8e47-fc01d9d13e35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404428721", + "DeviceId": "d544b17a-4104-4bf8-90ff-206e71458136", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_464197280", + "DeviceId": "5b8c043e-af17-41b2-9a60-bbc214791978", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115661313", + "DeviceId": "03eb01a7-b551-4971-bab8-3d8eca54721e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640973539", + "DeviceId": "07987549-ac50-4338-b40b-533391514069", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980766082", + "DeviceId": "9104cb75-678f-483f-8516-54eed702545f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751203363", + "DeviceId": "32fbbd62-fd12-4d24-b601-a38e8c2661ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-11", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657026020", + "DeviceId": "d6618abd-fc97-4f16-907a-b863045f613c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-12", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232784371", + "DeviceId": "61efceab-36db-463a-b0be-7751dc8e1dc7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-13", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255821676", + "DeviceId": "4bab55eb-357e-4777-b73c-2892ee3888ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-14", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567083048", + "DeviceId": "553e0160-91cf-4b5d-a269-2b7f126f6e31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-15", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_649244212", + "DeviceId": "ccf0cda6-c5a5-4b23-922b-862703ad820f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-16", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260032548", + "DeviceId": "ad352f6b-39c6-43a1-98c5-6e8c735c261a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-17", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123575442", + "DeviceId": "688f9df5-4db9-42d1-a7e7-623880473d92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-18", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_205567098", + "DeviceId": "c1d31b04-c144-4447-b0cf-b872038b4298", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-19", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_729697331", + "DeviceId": "e46b1407-3227-42c8-bcb4-1d1062930071", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-20", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122845823", + "DeviceId": "ce3c2816-19f8-4645-84d1-ed5fd48b553c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-21", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762748720", + "DeviceId": "a59b1840-3f3b-45f8-b1f0-75e2f5bf4659", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-22", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951293593", + "DeviceId": "17a2a35b-a44f-4f04-bf76-67511cb84332", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-23", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255980462", + "DeviceId": "79dfedbe-54f0-45d5-9a9c-a0edfddc3ec7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-24", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_764304499", + "DeviceId": "c2774957-d500-4099-8b0c-9dc4b02a7177", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-25", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_456071462", + "DeviceId": "5a8d681c-5426-46ba-bfe8-8d2cfde931b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-26", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321842700", + "DeviceId": "9c3fdd13-c172-4472-a3a6-5adc915f130e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-27", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913834722", + "DeviceId": "d7ac28a4-69ee-4bce-9468-075507ace098", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-28", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837649836", + "DeviceId": "550527e1-0dc8-4618-9201-a2046077c753", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-29", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_704773329", + "DeviceId": "ac66b68b-9da7-4339-bf95-2b7c60a34ccb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-30", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659040023", + "DeviceId": "3e3f1443-f54a-4f7e-8a73-ad62d9949381", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-31", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116534377", + "DeviceId": "5adce8d5-c240-4e2f-913e-9b4bc435e788", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-32", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_412845885", + "DeviceId": "51efc226-e98f-4311-85ca-da330819603f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-33", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430413104", + "DeviceId": "ec69fc67-948b-4026-92ca-fe06950622a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-34", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491838875", + "DeviceId": "916f4ddb-6493-4da4-befc-d7da3b3e9e5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-35", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242183949", + "DeviceId": "e3853eaf-704e-400d-8fcf-190c3a7ac81c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-36", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539238460", + "DeviceId": "c11699a8-5377-4b61-9221-490c78c7263c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-37", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695617923", + "DeviceId": "28a575de-3fee-4043-a22b-e64e13719936", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-38", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944665276", + "DeviceId": "685a5c79-b01c-4a25-aea0-52c845772442", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-39", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772118215", + "DeviceId": "f46f6a66-31a0-4d55-b189-6d87ecd6daf9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-40", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_186130998", + "DeviceId": "7197eb60-e963-4ccf-930c-28924b7ae0af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-41", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921764588", + "DeviceId": "28cbd570-5d35-403c-a1dc-52df7b21208a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-42", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455370011", + "DeviceId": "ae44b5b8-cc1c-4b0c-97c3-132f606163d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-43", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878302073", + "DeviceId": "68f8dbb7-3026-466b-8ba4-78afd41b06d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-44", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_943989290", + "DeviceId": "f5e41419-52d3-4dbe-9915-2da9b1e87add", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-45", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322260334", + "DeviceId": "ec091f62-1f7d-42ed-bcf0-11b4ac26fc89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-46", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_166445174", + "DeviceId": "1008881f-3471-47ae-a875-10ebb71da146", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-47", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121175498", + "DeviceId": "03158674-78cf-44dc-aaa5-4b86b96affd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-48", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430215805", + "DeviceId": "ad58277c-2e98-4865-a0a4-02777042a55a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-49", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798967239", + "DeviceId": "30f9b480-5cdc-456f-85a7-0f3179363cbc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-50", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338369669", + "DeviceId": "a046a67a-2e59-41bc-83cb-994d3869eb7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_525232309", + "DeviceId": "076f2696-9197-4b76-aead-477f3c56871d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0634b733-3aaa-4481-a3c4-17997502833d", + "TenantName": "Tenant-0634b733" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants100-sensors1000-2906260251.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants100-sensors1000-2906260251.json new file mode 100644 index 0000000..616c32a --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants100-sensors1000-2906260251.json @@ -0,0 +1,9502 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261122406", + "DeviceId": "ac67190b-a459-46cf-844a-26ed40cecbc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680392590", + "DeviceId": "750e30ba-764f-4fae-ade3-9e6e4569db14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_489494598", + "DeviceId": "424d1aca-ae35-444f-ad40-991d488d2846", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636176886", + "DeviceId": "cf7e25a6-aa79-488a-82e3-f830f013ef28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153388019", + "DeviceId": "be7a2227-a064-4680-8932-7350b0845844", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_912811828", + "DeviceId": "601f62c0-e746-4976-9530-9f08927bc9da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707226137", + "DeviceId": "5e18b784-95bb-4cfe-9c58-fbe81a623afe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_538626301", + "DeviceId": "b8f543e1-2a78-4dae-8f3f-22a6ce62d578", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213282331", + "DeviceId": "3c204dde-fd20-4357-afb5-329761d250be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621775930", + "DeviceId": "83ad897a-1b26-47d0-8975-7b195ebac7a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_442781326", + "DeviceId": "f3358db3-9cd7-40e3-8cfe-9e8f0ec93151", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6902a1ac-23a6-4834-82d7-06a60264fb0b", + "TenantName": "Tenant-6902a1ac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_507225055", + "DeviceId": "179286e2-ccc7-40ba-b1b0-0e45f30793eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_469823729", + "DeviceId": "5c4ba954-9695-4476-87ab-e8e424d8c052", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451890862", + "DeviceId": "9c3af921-98e2-41a1-b4b9-3085be8625e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417648012", + "DeviceId": "01532364-acdb-47c6-ba76-8d4bae6d8429", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992321911", + "DeviceId": "e8edede8-501f-4121-8959-136dd0386963", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508033212", + "DeviceId": "7b09c686-fe1a-4a97-a1d3-dd5b91802adc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_849904166", + "DeviceId": "dac7d917-e7cb-42a5-a93b-46ce324beb62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681631365", + "DeviceId": "6dc8e016-18c7-42f6-9326-3c2e2effb7aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_147855502", + "DeviceId": "0dc54236-40b4-4b9b-b93c-4e181c69813d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596341972", + "DeviceId": "15e6f892-b40f-4b50-9b1f-f0004c02e754", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_658217817", + "DeviceId": "72f23695-f31e-4bc2-8d94-4a18d156cb83", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c6405c9e-b34e-4a79-9e96-012ee1576252", + "TenantName": "Tenant-c6405c9e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148327676", + "DeviceId": "64ac2867-4349-4dce-9898-21859d0aa1e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765126029", + "DeviceId": "94321c0e-929b-4881-9934-030a200429cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136113404", + "DeviceId": "839de351-f224-41d9-9a60-ffc3a19691a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320396491", + "DeviceId": "16a5397b-c9a8-4655-affc-0913e8cefc26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810608332", + "DeviceId": "5efd047b-544d-4e35-bf73-92eaf8ffe936", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741820007", + "DeviceId": "f267b31f-c196-471f-8619-1831520c3bd3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902621158", + "DeviceId": "6b407ba1-0775-49df-95d8-0c3b249d8399", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592761730", + "DeviceId": "b8edd599-75af-43c6-a2bb-3e1bcc9f44ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_680222387", + "DeviceId": "be5494c5-28d9-47ff-9ca4-32b74b559187", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_398627679", + "DeviceId": "28565fe4-79eb-47bd-af07-c6f3d973cec4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_833074209", + "DeviceId": "d88eb987-531e-4d90-ab66-ea248102374d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11f9740f-6300-4b49-b41f-d51878f6ed4b", + "TenantName": "Tenant-11f9740f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781951984", + "DeviceId": "f9911714-1845-438d-96e7-5652b614bd46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_258028139", + "DeviceId": "25570c8a-9a42-438e-afee-b143bb618105", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739583517", + "DeviceId": "1bbc4683-daff-42ab-8260-06e82d10ae62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900499666", + "DeviceId": "951424b3-c87b-4ad2-b9d1-6a68fbaf6522", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314843519", + "DeviceId": "3f711627-d31f-4849-b1d6-c319337ce8bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953540337", + "DeviceId": "5bc424fb-01b3-4bf5-9795-d246391c1fc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818955305", + "DeviceId": "c7229004-252f-43e7-9fd5-ab1c987faeae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187649948", + "DeviceId": "420d872a-b783-42f5-89fe-7c53a47e4a0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752425419", + "DeviceId": "cf6d37f5-14f5-4c40-91e3-c668492ff158", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781402999", + "DeviceId": "6159c143-a6f3-4910-bc79-1de3795c188e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_197195870", + "DeviceId": "c9b03a56-08aa-4ce2-8fbc-632b351c06fd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0a5a258-4841-4c5e-b951-c14fe6b08b3c", + "TenantName": "Tenant-e0a5a258" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_889688593", + "DeviceId": "d837f7e5-f826-44b5-800a-9ca65fc0f56f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556416326", + "DeviceId": "ac346248-53bb-46d2-b568-4ccd14ddc508", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_174349020", + "DeviceId": "a34ea905-ce31-49b6-980f-7703e1217749", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403275731", + "DeviceId": "50fb043b-c7b8-47cd-8d9b-e6ffaf649485", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914225216", + "DeviceId": "b9862233-59d2-4279-8249-2b001993a99d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879478974", + "DeviceId": "72ffa721-c76a-4c17-b38f-1e1b25affa8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_753832957", + "DeviceId": "1567c7eb-3445-474f-a08a-71e0e83e5587", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_759183367", + "DeviceId": "61a85161-2a01-4362-8f46-3609cde5a3ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501528354", + "DeviceId": "6e70d8ca-e31d-4216-8c10-8a7ca31a05bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_807991902", + "DeviceId": "79c1dc4b-dc09-4577-913d-bd118b968a97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_263087837", + "DeviceId": "6de586eb-b1b8-4dce-a7b8-d4e6d7c17da5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0b34322-0446-4968-89b8-520ccf457b09", + "TenantName": "Tenant-e0b34322" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661934189", + "DeviceId": "df40491d-1702-4e09-833b-7d1bc17bcf56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332057315", + "DeviceId": "eab86f74-ebbc-4701-a082-830bd91c9b4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651860696", + "DeviceId": "29774b40-e36d-40c2-bb02-d7f3e2504330", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873720001", + "DeviceId": "6d2e9d40-36f4-49df-bafa-79234fa24ecf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657722430", + "DeviceId": "76fb452f-1020-401c-a35f-d1cdc0349df5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_240761229", + "DeviceId": "084f1e76-ee58-4509-8801-2f15a3ba2fc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292074188", + "DeviceId": "e8112671-78fa-4173-9f02-92009249e419", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505814783", + "DeviceId": "d258dcae-3265-4de7-8bd7-586aeb964653", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645618165", + "DeviceId": "58704c7e-3638-4306-be13-8fd530a37a8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379447571", + "DeviceId": "884a9bf6-a518-40cb-8928-5aa9e038458c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_418284099", + "DeviceId": "5d0be7b7-7727-4d40-aef4-8fd60cf18341", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4b92216c-e6a4-4983-8bd2-7252d1ca0415", + "TenantName": "Tenant-4b92216c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744340955", + "DeviceId": "91caf831-f274-4d2e-9d8e-ef6b3d18a558", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704392334", + "DeviceId": "fdde7295-2e7d-4e11-bfb1-85e91cb7b936", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_577579377", + "DeviceId": "7a2765b7-21aa-4c92-954e-81401c9370d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290646094", + "DeviceId": "9b06153e-6736-4db4-87ad-1ef3e13dd520", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364669356", + "DeviceId": "5a563cab-98c4-4cc9-8c81-385ac1a1b851", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110586257", + "DeviceId": "fcb85cb9-e2b3-47f4-aeab-a9c23736c793", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227414788", + "DeviceId": "74fa5d25-93da-4a0b-95b9-c38f222cbad0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869915852", + "DeviceId": "21df46eb-4190-442d-b386-eb22cf3cf36a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733779238", + "DeviceId": "598a120c-383e-44f0-8dc2-f9416adcbbdf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_544615654", + "DeviceId": "e1705c64-e165-46d3-ad43-29bb6d6e2039", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_989415275", + "DeviceId": "9c82f825-6cc4-4109-b0e5-9306bcb65fd8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4aad9eeb-c196-4c20-a459-438735475802", + "TenantName": "Tenant-4aad9eeb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867652610", + "DeviceId": "8d34b91c-c79a-42d2-815b-c37e377de496", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_988599818", + "DeviceId": "e4e34b92-ceed-4556-b38a-f350cb2e8376", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_623626168", + "DeviceId": "c76ca927-03f4-4a73-b5ab-61a9bb6f1ad1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977824641", + "DeviceId": "11d99247-453b-4e66-8dff-83eb2bd549c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413601610", + "DeviceId": "f0cbef02-703d-4a51-a974-ae4d1fd844b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452390439", + "DeviceId": "241acbd9-8de9-4174-a264-dccf04773c54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763391552", + "DeviceId": "cd5ff7cc-304c-41d8-9eed-e7f06ff9b1ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414525090", + "DeviceId": "0e2c5057-a914-4b57-ad96-05b7adc6af82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_874754633", + "DeviceId": "87bba6b4-a170-4de6-ae17-50516acc31f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158523092", + "DeviceId": "c8a07063-7eba-4b09-af97-d5f855fce6f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_671612402", + "DeviceId": "fa48dd7c-7c5a-4aa2-b595-053d02b3d105", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "277e88ff-cd7a-45fe-a573-1f422b3cae3f", + "TenantName": "Tenant-277e88ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682692371", + "DeviceId": "2af58532-881c-43c2-8af2-38fc1e180a09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127361894", + "DeviceId": "d806200d-50ec-4b5b-ac6d-2a340c6fa643", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_297876103", + "DeviceId": "7cd2c9e0-1454-4600-abdf-314b49f2ee8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462169248", + "DeviceId": "ab7f2de3-1d5e-4dfa-b35a-7f5e68990dfc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290329825", + "DeviceId": "5706d6c2-c6c4-4a81-a5ed-ba193dde61b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_431405596", + "DeviceId": "ddb35872-d14a-4e3c-aa48-818413904b4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137739475", + "DeviceId": "e5a135b7-3713-4a8e-ad38-12d9f1efaf6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328166241", + "DeviceId": "330f9c88-fcbd-4f6b-b024-08aada1cc5e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_870394754", + "DeviceId": "a73b8fde-1f57-4cb4-ad4e-1da383dd58ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854814398", + "DeviceId": "0b9d4535-6beb-4c9b-b07a-efa9f6e96a82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_888726626", + "DeviceId": "02c77a20-c845-46f3-94f9-c9ebe17fe812", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "310d725d-f811-4670-907c-79d68e75ebd5", + "TenantName": "Tenant-310d725d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661933367", + "DeviceId": "e1aa923b-6bcc-40e4-93f8-8cb0cc85a0f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_785975011", + "DeviceId": "50b51d9b-1af8-4626-8d01-208e617ea252", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294055335", + "DeviceId": "93ce39c6-0a40-4bc1-bce4-8d1eec30b650", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744793320", + "DeviceId": "c4953bb9-368c-4fd8-98fe-a62e8e9c4470", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839302039", + "DeviceId": "f5f70f41-6d3c-486e-a5f4-314c5133d810", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_431758389", + "DeviceId": "810ac674-2056-4fbd-9753-5ef034644f2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_805564785", + "DeviceId": "6062e037-ab32-4e9f-8405-bb3285a1c92e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702612505", + "DeviceId": "b8d3e9b5-df1b-467b-b358-d8562f939f56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534768575", + "DeviceId": "fe4bff0e-d30e-4f3b-8b88-5e151fdee2ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410685757", + "DeviceId": "2f8700b0-3eef-463a-a4ad-64e3f7a1b0af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_683374292", + "DeviceId": "a00d14f4-4394-4a45-abfb-4d6510d6eed0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "58878bcd-292b-4378-9f21-24e927893f3e", + "TenantName": "Tenant-58878bcd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926101991", + "DeviceId": "24625ee3-fe30-4225-81a8-68c218c68bab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982628040", + "DeviceId": "def8a3cf-0c4b-4042-acaf-53189150e7ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794610011", + "DeviceId": "d8681e6f-d823-4d78-8525-f6ae4584d50b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_367188174", + "DeviceId": "62068ae6-3eee-4c3a-ad3f-9f3447b2121a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213896219", + "DeviceId": "2fc42f13-032f-4157-8485-3a50c9c1119e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_305682864", + "DeviceId": "5325d991-8d9c-40ce-84de-0f0fac298cf7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307530592", + "DeviceId": "a2039c52-65f6-417f-91d7-523c75544485", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825369492", + "DeviceId": "d8281dae-e19e-47f7-b60b-e344f9591007", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109970335", + "DeviceId": "1aab4c55-8bd5-4c75-8c1c-1ff8729bbb64", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_785160139", + "DeviceId": "9f583cb4-d32f-4ec0-b71a-81b0e97daaf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_136785967", + "DeviceId": "a7c450cb-a452-40be-a7e9-06275af49464", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "10b6353a-b619-4758-970e-a7cbb3756b21", + "TenantName": "Tenant-10b6353a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332764674", + "DeviceId": "ffea5968-ea22-40ea-b77f-3ec02d17b470", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468268116", + "DeviceId": "f522ad6d-6f6a-439d-af35-c3b3d7a9a0f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_775470305", + "DeviceId": "6d5b6eac-567e-4ac6-aced-b15f205c52a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913135419", + "DeviceId": "f4e7a28b-09b3-4a11-acea-b6646b43f1ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_817585902", + "DeviceId": "a9fba1db-7baf-4567-bd00-e022b0e53e17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_280912694", + "DeviceId": "1276cc75-63b8-4abd-a9de-8df80c081dfc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389398522", + "DeviceId": "12a3b2de-acba-4726-9719-1afb55f92b16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_669723847", + "DeviceId": "7849654c-8ee5-4d4a-953a-e9edeb46666a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249673418", + "DeviceId": "5b442285-c227-4a34-a2f5-a1ee3ce36062", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511509761", + "DeviceId": "c36dda1c-97c4-42bf-be83-ef4ee8bfb080", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_968218235", + "DeviceId": "7111dd55-fda9-4f69-bd7c-b25716bd5dae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f29f13e7-13fb-4c01-be73-21c501377060", + "TenantName": "Tenant-f29f13e7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_921908369", + "DeviceId": "fa823c64-9ada-4692-9349-8083aa2c05c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567687442", + "DeviceId": "7eb088db-700d-4cd4-bb6e-01f36a3fdfcf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964963356", + "DeviceId": "d8f603c5-08ca-4873-a17c-e41f4d3f00c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728075715", + "DeviceId": "1723adf6-b817-4f52-8c59-69fb69323900", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765961513", + "DeviceId": "37fe1eda-897d-47f4-9659-c66e5abefb76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636235545", + "DeviceId": "3e2ac6fa-e556-46e9-80af-ebae29bfc201", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429675292", + "DeviceId": "205da535-2458-425c-bdbc-3ff1c760f9dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735824111", + "DeviceId": "9bd69fc8-692e-42d3-8786-7afe9ffd63cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777586661", + "DeviceId": "3ad78ed3-e8f9-4461-ad52-1dbbe5b1b792", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_276254552", + "DeviceId": "fd581105-91ff-467f-8c1d-b66708a6bd46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_407452387", + "DeviceId": "ebcbc742-4daa-4464-8661-f536e093dbb4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5540a95-d96a-4086-b305-059741805b46", + "TenantName": "Tenant-d5540a95" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797865830", + "DeviceId": "0d296209-ef70-4de4-be64-58f4e381e57a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922521055", + "DeviceId": "52c4e587-2152-48c4-9a10-2f586718d776", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_181030761", + "DeviceId": "a6ae5a3d-993e-450f-8436-ec9cb618fc36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232614575", + "DeviceId": "5574c760-06ee-445a-8498-a3e071c1c771", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349621638", + "DeviceId": "0e8447fd-8aed-4aae-b339-d105e1fb13fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777716752", + "DeviceId": "a1198ca6-3222-4a87-bed4-c2331151bbc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782433176", + "DeviceId": "b39b4575-3acd-4418-8fb6-40a3a3e551e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331333924", + "DeviceId": "68650d93-da3a-4a0d-92b4-d74d4a0a1a24", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433622383", + "DeviceId": "6d6922db-15d1-4699-8483-8bf7d6d82f42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189710282", + "DeviceId": "2bc10003-b9fb-4ab6-b922-b37c823305fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_243368481", + "DeviceId": "4fd81723-af24-4f42-89d8-06ff9f723d4f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e08f7451-cbb8-4a20-82b5-c23e0a2595a5", + "TenantName": "Tenant-e08f7451" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709825256", + "DeviceId": "114ed089-4878-44bc-902f-a1911afc3ed6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_173370053", + "DeviceId": "233ffbcf-9aa0-4418-94b9-8c209530c17c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108604425", + "DeviceId": "c5be1a97-be3f-4425-a9c3-e6b984cae2ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534024996", + "DeviceId": "335e11cb-419a-4ff6-8e23-340f0e6a4da9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140224149", + "DeviceId": "43dbb5a4-a823-41f9-8216-ed3634716d9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_156444743", + "DeviceId": "fc73ecff-6865-45bb-a7ab-744f4b23272c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580782099", + "DeviceId": "cb79d63c-ff47-4aef-b1fd-06ba2ce7cd87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846824971", + "DeviceId": "e76df75b-d764-454f-9283-0916b9558116", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524236012", + "DeviceId": "7240b36a-1d59-4737-b444-fbb4c6d623a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597001972", + "DeviceId": "944006cc-a65d-44f2-8204-4d7f80c44a45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_690715490", + "DeviceId": "25961a9f-9d9b-4e55-89c2-bf051109383e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "02d9dba1-eb60-4926-a194-ee7f8b4772c7", + "TenantName": "Tenant-02d9dba1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606729172", + "DeviceId": "202e0109-5c2a-4d67-a1e6-55f6e5e98782", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167222592", + "DeviceId": "459bce5b-57f0-452f-beab-87e812228e6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_277510718", + "DeviceId": "a9f3555c-3f82-4a3f-953e-d2544bbe031d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457066257", + "DeviceId": "408d289c-6089-4004-bf0a-7a37f6baaee1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_256686305", + "DeviceId": "c33043a1-2472-4918-99d8-8d68ceae32ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173386565", + "DeviceId": "679c8427-3ddb-491f-98d5-4ee24d15c58b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820557037", + "DeviceId": "5488c9fe-d5c9-4b7a-b2ce-4888c219d6ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_259668531", + "DeviceId": "0ced1662-c816-474f-852f-20344a825b1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480378585", + "DeviceId": "fe158b8c-6869-4832-b512-a4fec2c0ef39", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_551711670", + "DeviceId": "caad4e4c-8dd7-4945-994d-2d67f5d6c5f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_173952167", + "DeviceId": "6ec4c576-ec68-43c8-8c15-cbee782e111b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e17bb8ec-a644-4a77-b802-450632e62a9b", + "TenantName": "Tenant-e17bb8ec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407553551", + "DeviceId": "16e807a0-ca76-405b-b926-cafe2dcada34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213365518", + "DeviceId": "40388454-10ac-40d2-b405-b2bbdfe18f38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917991126", + "DeviceId": "fb250640-a330-463c-9439-e90992638713", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_390685286", + "DeviceId": "e60c552c-77c4-449c-999b-5ab5b08a51e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145150534", + "DeviceId": "40751439-c195-4095-bd58-7d615679c51d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557510898", + "DeviceId": "961e50f2-43d4-49d1-ad5c-75d22cbd62d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_864705667", + "DeviceId": "3f256e82-d289-4eb7-9eea-2c67e5821c82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545367499", + "DeviceId": "95d3e0d4-9904-4cfe-90c2-05d9ebe898e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370876090", + "DeviceId": "97efe6d9-d266-41a2-bafa-377724b9ab55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606103706", + "DeviceId": "c5de71c7-7b55-44d1-a4c9-1d9bf5ffcc10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_319299349", + "DeviceId": "3812f66c-e62e-4269-9312-8172ccffec22", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "17dc1e3a-66cf-4ba5-a0ee-ebfff3d35482", + "TenantName": "Tenant-17dc1e3a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773045485", + "DeviceId": "8a00a643-0da2-41c7-a865-b75e983f85cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989092722", + "DeviceId": "422904bf-8c94-4098-b04c-b2d68da4b5d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914605357", + "DeviceId": "b1d92c9f-dc2b-4fc0-8c5e-7db3bc0ff960", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351124303", + "DeviceId": "ad0d8492-ab91-4c74-8ea9-15eabd77e22e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939275991", + "DeviceId": "cd9d2702-a1d5-496b-b064-74cef6b5b6f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_159158686", + "DeviceId": "f92566a4-e1b9-4761-aed8-e41a2f20050f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_683151807", + "DeviceId": "4903211d-2590-48ca-90ae-2779fac1b135", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334041946", + "DeviceId": "0fff3322-7321-4e13-a095-fb9bf0ae1553", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580422105", + "DeviceId": "8a59ce4e-a793-4729-8b86-b933fdca7636", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_465824104", + "DeviceId": "5b6ba059-8139-4360-93a8-bfd49d7f12a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_783881793", + "DeviceId": "9b3d0c76-4c3a-457f-a1ae-9133f389e955", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0542738f-8e48-4270-be5d-40b5cef05dd7", + "TenantName": "Tenant-0542738f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_179763034", + "DeviceId": "18a51348-fc99-43bf-b220-ffde1c597617", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271580471", + "DeviceId": "ed8d36d7-88db-4539-ac61-9feb87227b1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509423763", + "DeviceId": "649ee27e-5c07-471e-96c5-0bed49316666", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153317938", + "DeviceId": "befa397f-62d0-4bf3-abb8-d0275c9008f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155983891", + "DeviceId": "b8f6e926-a2ad-4964-9972-a1ae5297af58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241186563", + "DeviceId": "349b9450-88d3-4c4c-a997-cdfc9ff07483", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310555720", + "DeviceId": "bd19dc8a-a647-4bc8-9da9-cb5abeea8c8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_756034295", + "DeviceId": "e61194ec-9112-49b3-987e-b9a7962e3030", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_104883069", + "DeviceId": "1c08e972-2b56-497e-934d-ab0e6240a6b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827886838", + "DeviceId": "a72e514b-4191-495b-8608-db7b6a52f4d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_502193752", + "DeviceId": "cbb0bd59-23c6-4673-a042-d13660452b00", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6940ec8f-7f08-4344-92b1-f2adee773cb0", + "TenantName": "Tenant-6940ec8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_683524964", + "DeviceId": "de7b7ff9-806c-45df-b62a-9afd4ed7eb1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708115628", + "DeviceId": "7c9bb940-5065-4cdc-99ff-dde955e70cca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936165854", + "DeviceId": "4277e089-78b1-4876-b26d-e9fd1def7385", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250047173", + "DeviceId": "8d621f82-9512-4b26-9faf-6a30fb84e2fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714554279", + "DeviceId": "dde2cea3-1ea7-4bfc-8fd7-0e06dfc801ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331628926", + "DeviceId": "7278a34a-b680-4f43-b9ec-e99076896079", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857904269", + "DeviceId": "4366beda-419a-4db4-a2d3-06131b33c3ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316797378", + "DeviceId": "bcc2483c-b7e3-457b-bfe0-b9abc59f4b33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650182039", + "DeviceId": "20d0aa4d-6c5b-4c7e-afd8-569924f52f82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_652194018", + "DeviceId": "9457f28b-0932-43dc-8fed-83a55a22bb13", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_637521482", + "DeviceId": "a817f378-9bc0-4abd-bc47-4cb018b3029f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "033c2588-d657-40e2-b425-e8eb8ae69d45", + "TenantName": "Tenant-033c2588" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437677690", + "DeviceId": "9dbc5cba-02aa-4d78-8f69-c0ba005374bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657483985", + "DeviceId": "b238d4d4-6d9b-41dd-9818-c5df5b9e061f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_133311746", + "DeviceId": "c545d364-6681-4c28-a047-2782f11869c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892487402", + "DeviceId": "048ef923-2e16-4562-a591-6972ce6d826c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163603128", + "DeviceId": "29942edc-d487-4192-bbee-34e249b5ff63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500633803", + "DeviceId": "7c48196e-ffc4-42ca-babc-2304e37c9672", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_483805235", + "DeviceId": "71d88aeb-1911-4293-acb5-244d4779c965", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843190023", + "DeviceId": "03e484c2-6485-4cc4-ba00-18205b6b73ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165299160", + "DeviceId": "cb98784d-c33e-4179-8ecc-37728375f636", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765732121", + "DeviceId": "fc8a55da-b4ce-4bb6-adec-c4e8d2f5652b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_655776613", + "DeviceId": "698441ab-61ef-4187-8a12-d80e202c2e3a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ef1a75bd-3252-415d-b6a8-3f03d89407ce", + "TenantName": "Tenant-ef1a75bd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_777639797", + "DeviceId": "3c20f4a3-9dfe-43ba-9867-4881c02dd584", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633395559", + "DeviceId": "81c91ad5-0cb8-420b-8506-37ba68d1d5f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_778722488", + "DeviceId": "bc2426c9-d71f-4794-8470-78dfc7becc72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800575719", + "DeviceId": "ddacd2da-21aa-4e55-96f8-1e419d20e4a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_453265152", + "DeviceId": "c8aefe0f-0283-40fc-af0f-e58dcb7de479", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270707401", + "DeviceId": "67bb27b7-d097-4a51-8624-118179c67674", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_652927725", + "DeviceId": "5182388c-e7da-4fb6-85df-c81c5f13747d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490775077", + "DeviceId": "db7ceb78-7b1d-4bfa-9c07-d765a116877b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820847196", + "DeviceId": "1ca91ee2-90ed-40ce-bfbb-86777596ab2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_535078433", + "DeviceId": "4c19b028-7612-4d15-a4b0-a87c5ba7a4d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_618284934", + "DeviceId": "377efe11-373c-441f-8e4e-1e60e032c6bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c4d2f8c2-54bd-4335-aac0-a9cc6f0120c9", + "TenantName": "Tenant-c4d2f8c2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439993091", + "DeviceId": "6cf88e02-b608-43cb-ae7a-8758486fdf32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_135684963", + "DeviceId": "7d8c3440-7bb7-40f3-9c94-948744bcb159", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516236893", + "DeviceId": "723d8442-8bf8-4e90-9651-8c1885a01128", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684637461", + "DeviceId": "47b0cf7c-51c1-4be4-b123-415194fd0eb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682644995", + "DeviceId": "a71d97c8-f0c1-474f-9e54-1ac095cda01f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973662791", + "DeviceId": "452f4e7b-2f5d-4990-9087-1f303b0943d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337112388", + "DeviceId": "87ea8dd6-fdd6-4da2-876e-d0b9f58c75d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_318541965", + "DeviceId": "1dc4644c-6e27-4f27-8755-71915d0eedca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657165740", + "DeviceId": "27284289-3ef4-42f8-89e0-9a85cce1b0d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369908073", + "DeviceId": "28d25cbf-4f1b-42d0-bdb7-2a24d63f1159", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_953885198", + "DeviceId": "07e3c6ef-8c14-4c51-87e4-2821d8b22a6f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "38704768-07ad-4323-b1f7-da145f4ef5f2", + "TenantName": "Tenant-38704768" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929382615", + "DeviceId": "94f5eb0d-df3b-448a-b989-678d480a50c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_865121411", + "DeviceId": "ca50c4c1-5494-4c8f-9349-b994883806eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992296907", + "DeviceId": "c84a88e4-3690-4bf4-9089-0cdbf3f6f879", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639697716", + "DeviceId": "dcd16b78-d2c9-4f95-b8c5-9ba16035220d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825864401", + "DeviceId": "2aa6d75b-3ac4-4710-9dde-51a705888848", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393172145", + "DeviceId": "d5d1b742-7a51-480f-8bea-f7bfbea39909", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359097075", + "DeviceId": "e92f2d97-9f8f-4683-8b6b-c8f84e203297", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_686048183", + "DeviceId": "53d05151-1b34-48fc-9b29-bcd94ad61077", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_202725621", + "DeviceId": "3de6969b-fa65-4731-8ef0-1f7789e1479d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523607386", + "DeviceId": "d7b3b0c8-0b0d-4199-9978-65b0e297dc68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_796830655", + "DeviceId": "bb2bf878-d4da-496a-928e-0a20bad8ee89", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "078a2c5c-2337-4047-a98f-677a3144e820", + "TenantName": "Tenant-078a2c5c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587627254", + "DeviceId": "149c7cab-4468-4fc1-a688-9414122ab1a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387793289", + "DeviceId": "88407294-edb4-4a27-8eb4-6b4542c9647f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925892371", + "DeviceId": "5f58cd0f-3ab0-4502-b870-264a0047ddaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_754671805", + "DeviceId": "70862b1d-fe3b-4d77-a1b1-b41d871dc2f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_150619861", + "DeviceId": "33a60ae5-ddd3-4e31-9dbf-199a0919d9a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701100503", + "DeviceId": "1f176e97-d15b-4cf6-9bc8-b21e06dd6dfd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_920838679", + "DeviceId": "1333683e-942e-4be2-832e-4903fd8ac0b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618733422", + "DeviceId": "2d7e88f3-a0d8-47e7-89d1-e842b5d06430", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128327709", + "DeviceId": "7b330d6c-566b-4fe0-928e-1f9108bbcbe6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_786059288", + "DeviceId": "8a02c24e-0434-400e-aed6-cde54ff570ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_222053478", + "DeviceId": "9a5985ba-b652-41ab-921f-1df271bc07ed", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fb4b2d7c-3706-41fb-839f-6b1165facd57", + "TenantName": "Tenant-fb4b2d7c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484566520", + "DeviceId": "dad90ab5-9f07-49f0-a33d-af2d522ccd21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_406579389", + "DeviceId": "87bf5767-bc55-436e-947e-cf3c88411eec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125015738", + "DeviceId": "efba8ca7-9a5c-4cab-bcd0-c947532f413a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666875895", + "DeviceId": "50887bf5-93ea-45bf-abd9-57baa3a92167", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850349819", + "DeviceId": "74ff9885-1744-4cdf-9341-1009ac042a39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177161705", + "DeviceId": "da96058b-2210-4348-b3c2-b39e3507a11e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_528564814", + "DeviceId": "8ee89464-d5bd-4589-aca6-558f67e1ee31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232916424", + "DeviceId": "a762146e-a38a-4829-83b8-376c024277c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515730498", + "DeviceId": "8fdc8404-531e-472d-a503-679c95c2dacc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_144468282", + "DeviceId": "bb6814ea-5fa6-4338-800d-80bb13bda4c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_404617975", + "DeviceId": "09b7328b-2335-4f9f-830e-054bd4ad5c30", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7f99c8d3-3767-48f5-81d3-dab09191bbe7", + "TenantName": "Tenant-7f99c8d3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650513364", + "DeviceId": "88f7f20d-c87d-4598-aa37-20475b533f96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_627092955", + "DeviceId": "02c228d7-785a-4ebd-93cd-f9e223d85992", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451691239", + "DeviceId": "4fab1003-b61a-4bb1-98f4-a65405f47772", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112293020", + "DeviceId": "6d1a1c1c-a4cd-46e7-a5d6-81992be73e57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_106592261", + "DeviceId": "258f956b-873a-48b1-a1eb-205573a23c55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_211198712", + "DeviceId": "7c7b508f-5a26-4aa7-aaa4-5070d7d533f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137138850", + "DeviceId": "02595c1f-bc87-4e71-a0d6-7414c7f85dc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527065062", + "DeviceId": "4a5fe320-12ed-4fe1-bfc1-aabf1bfe6036", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527570893", + "DeviceId": "55cfbe85-6a28-4bb2-af86-79bc1c254bb1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557829217", + "DeviceId": "1681cfba-09cf-4551-b236-28b685eacc30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_440290030", + "DeviceId": "cf4ecee5-f870-466c-bdf9-3c25e1405ec1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8fac7712-2e3d-44ff-a1c9-9d0fd2326feb", + "TenantName": "Tenant-8fac7712" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_696088934", + "DeviceId": "43d9bb5a-05c8-4fdd-b1fc-f4272ff57a43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_501894230", + "DeviceId": "1c6e1519-ddb1-463c-b907-a87998b685d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612247435", + "DeviceId": "99acfbce-ee9d-4c0e-ae6d-60be4ef8bd0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_240410438", + "DeviceId": "33ede6b6-d26f-4567-b244-03b23ea39300", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773040068", + "DeviceId": "2036ecde-2a6b-4abb-94cd-382c4a76142d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_228760406", + "DeviceId": "693b7172-65ac-4bef-b421-0f878e94f096", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_833452524", + "DeviceId": "1ca34c52-e950-44b4-898c-3afbdf47ff25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549069301", + "DeviceId": "3dbe2b5d-e315-4b60-8495-215103481a53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_628798625", + "DeviceId": "f948ea07-986e-4d17-915f-07b1839dc741", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359724412", + "DeviceId": "8926a0da-16a1-45a1-b927-a8fe4633781c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_969623276", + "DeviceId": "64f47693-0aa9-425f-a0d4-c7f386b622d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "04b6a4d4-a859-464a-967c-e3b2afc427be", + "TenantName": "Tenant-04b6a4d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768747065", + "DeviceId": "0d9d3e56-2682-4b52-b911-7267ce4f4e5c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_645914634", + "DeviceId": "900fe59f-47cb-4388-b7d0-96d3e87697a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294741014", + "DeviceId": "7879d9b0-b3af-42eb-8c0c-867717b5fcc3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818277276", + "DeviceId": "b5852731-5589-43cf-881a-3deced19fe6b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851646190", + "DeviceId": "914b9d1b-7931-4ca9-bf55-0c4cb489d678", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915540236", + "DeviceId": "8b077fe1-6bd1-40b9-8c54-93edd7a9fdf1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_174589932", + "DeviceId": "03d1dd69-6f17-47f6-a86c-29aea8de578d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_563137668", + "DeviceId": "bbd28cf6-fc6a-46a8-8da8-7a5e5e5f2f42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_518320788", + "DeviceId": "8d24f8d4-1cf1-411d-8fe3-030aaac42890", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_884721042", + "DeviceId": "eb75f473-9fe9-4a68-92e1-78473a47395d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_429828165", + "DeviceId": "130a3e83-89a6-4be2-9979-9893ca27e1d4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b6442b20-18e6-4f56-8b72-a60903b8c6d1", + "TenantName": "Tenant-b6442b20" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_863793353", + "DeviceId": "df2cada1-04fc-4969-ae35-07a4263497cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919413516", + "DeviceId": "f442d80a-de7e-4d1f-bb89-0a2d9fca795e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_887556920", + "DeviceId": "73bd2b6b-9a47-4f39-9885-377e60457e40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998356226", + "DeviceId": "53900d42-70ec-4cf7-988f-02f080f60beb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302318043", + "DeviceId": "45396fc9-c070-4ca8-950b-9def9c4be6ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809200858", + "DeviceId": "594cfb14-c252-4366-be7d-87919e007380", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442152940", + "DeviceId": "f1c4ba4a-b394-4ec7-b30c-622eff6e5e2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_460421743", + "DeviceId": "2c31712a-7d6a-4948-9ec7-c86ce98d845f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_362457249", + "DeviceId": "ea7b11f5-308d-497d-b544-97d8a973662c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730997244", + "DeviceId": "44581c60-2ee9-4a14-a174-45f805abfabf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_980877823", + "DeviceId": "33bd1b76-acd8-47c5-8308-07adf5791d9a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "83cab846-9614-49d7-b26f-77b695e0d0a3", + "TenantName": "Tenant-83cab846" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643168639", + "DeviceId": "a0d90f27-8615-4d36-aa5d-30ae310625aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625380495", + "DeviceId": "b01b556f-b6d0-498d-b6e2-96c61ac2080b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153376607", + "DeviceId": "3a744ea2-f19c-4a18-b367-8a8303ce8a95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_551208054", + "DeviceId": "b686543c-029e-4c46-be29-3ea8243a9b35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_683474614", + "DeviceId": "e46ddba2-206f-4825-8fcf-46565d87292d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777339343", + "DeviceId": "3bbc2313-c1d9-4730-8374-713bc7a12cae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851662699", + "DeviceId": "5c055d48-4f9e-4ab1-a892-bdf67f520643", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827730971", + "DeviceId": "dbca5354-30dd-45cc-9a40-d35141091bed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613029341", + "DeviceId": "1ef6cb88-e408-48b8-bad7-1687ca5b413f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926888630", + "DeviceId": "01520f34-5763-4e79-a845-dc0671f8a8d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_199363809", + "DeviceId": "786a17c9-38bb-4a0e-a07f-5b58c4e8a31e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3e2867c3-5e9b-42e0-9f3a-8a860753865d", + "TenantName": "Tenant-3e2867c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_994058227", + "DeviceId": "b27ede06-b931-4106-9234-a767223bf6db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_497045226", + "DeviceId": "14cd3068-ec94-485e-9beb-8ef392d32eb8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_729253536", + "DeviceId": "68cae441-4cc5-41f0-be81-ca63be1ce248", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286590753", + "DeviceId": "ebd0ca90-ea96-4866-a9e1-c267cbc8be4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_183615648", + "DeviceId": "1940d110-df57-4b26-9a07-f2ecf5a80127", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828537842", + "DeviceId": "eccfb854-327a-44ad-a89c-05af5a774b1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_236288461", + "DeviceId": "d0763f8b-a85d-4691-87f4-aee70679caac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324013511", + "DeviceId": "7947bbc5-23ab-4eaa-a8b9-d8f8af366ef3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_317960758", + "DeviceId": "76fdd213-9e6f-4cd5-b43e-0150cd7b4306", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_259119367", + "DeviceId": "d24140eb-a435-48b4-b38b-cc314dc05a79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_992607666", + "DeviceId": "32b57974-4103-42cf-a254-199a5554e7de", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "119cba6d-9053-47fa-a52e-4b063b7ac35e", + "TenantName": "Tenant-119cba6d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_544246900", + "DeviceId": "93cf016f-3e56-4c81-8113-93654019e2a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112368658", + "DeviceId": "f96ed7ef-cef5-4535-9371-af9bbe069462", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505622422", + "DeviceId": "104e7562-92f7-4739-8555-0a8096609f97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657015318", + "DeviceId": "9ede3250-ccc5-435c-9f44-506a177d99a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746700828", + "DeviceId": "d85f82db-c6c1-4cb5-aae9-92c78a31b618", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853088758", + "DeviceId": "5cd62c60-143f-4f09-86f2-8aa4fecba0f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379852078", + "DeviceId": "4cf60604-d58e-4a62-aea4-f4c71a09f299", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809172298", + "DeviceId": "9e366b2d-c5f6-42a8-b84b-39f59cad20d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_285083520", + "DeviceId": "7a9c77c5-80bc-43cf-875d-7fb2a05b77e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_923649108", + "DeviceId": "5d0e9928-7f97-46c7-b9e5-6c323c209ee6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_171428580", + "DeviceId": "a6f909a4-c728-4367-b307-b97c0f31c94d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "031ef278-9e11-4f94-9be1-17773a2e4cdb", + "TenantName": "Tenant-031ef278" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598064622", + "DeviceId": "e10d85c0-c57a-4f9a-887e-e4c614e27cb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592173947", + "DeviceId": "e0514fed-b03c-481b-9acb-3a96c9e269e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951789221", + "DeviceId": "c84df501-302c-4dc4-8fb0-7d84a19b5953", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307461967", + "DeviceId": "b043f367-4daa-4933-a866-7428ddcf2854", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443185056", + "DeviceId": "9c560880-55ff-431a-9d57-d2d2b7b5a91a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527565547", + "DeviceId": "fa246b7d-8b06-47a7-821b-160a611ad9e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_864892798", + "DeviceId": "025ee7ce-0a52-4552-bcec-21f9ca1a1821", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_267713191", + "DeviceId": "d279cf83-43ba-43a3-9900-0d2276f94dfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581890941", + "DeviceId": "6c2c4a43-b73c-4288-bab4-3f2738b0199f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749563572", + "DeviceId": "f3280871-6fef-4fcd-ae57-3f70a2a0fd43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_942703291", + "DeviceId": "9a9cf327-5181-449f-8027-f860ce0f308a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "115580e4-1892-4faf-99c2-a1675387d972", + "TenantName": "Tenant-115580e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407742151", + "DeviceId": "6e5516e6-25e8-4df7-b38b-f944cd43ca59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_859087270", + "DeviceId": "4ab4329e-807b-4483-ad2f-6065612723de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332335652", + "DeviceId": "40aaf6e6-90e5-4004-82bb-d1a2e210071a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746501567", + "DeviceId": "b8862dfb-964a-45e7-845c-69318d02bd6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900882492", + "DeviceId": "89897bb4-6f98-4466-8cfa-a202b44474d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_653429487", + "DeviceId": "a009c7c2-5e2b-4d26-a579-df287b9722c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481570416", + "DeviceId": "989e0578-debb-4006-a3dc-c10176e42f75", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966547696", + "DeviceId": "fdd53e9f-4d32-4aa8-b993-cddcfa58b4fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481826280", + "DeviceId": "9681c1e1-7682-47c7-a6d3-96b987a1d2f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596886007", + "DeviceId": "84acbe8f-e68a-4e0a-8ee2-1cf5a1648469", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_694567100", + "DeviceId": "939f021e-5a6e-429e-aa21-cd1b6aece291", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "517a1d84-c0e1-458c-84c2-98416e8af646", + "TenantName": "Tenant-517a1d84" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506806910", + "DeviceId": "d5bd2fbc-a847-4489-8e00-f86c3ce24ae5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400152520", + "DeviceId": "761f7f4a-422b-41bc-963c-22e1d1cc2bda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_189736586", + "DeviceId": "48ba571b-1b36-4094-9bf0-a2937a16da06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825215911", + "DeviceId": "179f0c90-d67f-4182-9719-826e0abe49ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572795982", + "DeviceId": "6833ab16-4efb-4c91-9a7a-c879144a3c5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594405047", + "DeviceId": "a3723ce6-c044-47ce-93fd-d71e58bdd1c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688319834", + "DeviceId": "d62c6c3c-bda0-404f-aaba-8cd005b97290", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494283127", + "DeviceId": "4eb798d1-ff5a-4ecd-afbe-d61b2049ac70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915882947", + "DeviceId": "85f23218-1e56-4254-8537-7819004b7755", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862158715", + "DeviceId": "c0bf90b5-349d-43e7-9962-3ce1c39318d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_497631725", + "DeviceId": "502d957b-b059-4ffa-a589-591fa29fc2d2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3ec9d3da-143f-446b-b1f4-25b7b8aa8270", + "TenantName": "Tenant-3ec9d3da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987342284", + "DeviceId": "a1004e9d-61fc-4409-a022-d7d62f060e0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661775256", + "DeviceId": "2aebfeb4-0bf2-4b4f-9a5d-d074df7d5e3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113319170", + "DeviceId": "0d74cc2d-92b6-4dfc-91bc-af6d8bb41496", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466997082", + "DeviceId": "0958e5ce-74ec-446a-a55f-668c9d7f7cb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387569694", + "DeviceId": "6154b57f-9982-4043-97b8-0bb12844d74d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760259204", + "DeviceId": "5638ca0e-9d53-467e-9026-f502084ab72d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_219274767", + "DeviceId": "65863df0-8cd7-4a14-b254-5e09ef34ce80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_627384032", + "DeviceId": "e27c22aa-ed50-431f-93bc-63ff64f3dd30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517111136", + "DeviceId": "cf951d3c-8ce4-4681-946f-f2e8a261038e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558624663", + "DeviceId": "761ac00b-7491-4626-871a-1bd9cf9eda9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_702043482", + "DeviceId": "92b84b68-2c4b-4858-bc32-af5a4edff8cc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "35d56dc8-8815-468f-bb9d-72821e097451", + "TenantName": "Tenant-35d56dc8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951930977", + "DeviceId": "db0e5242-524f-4265-adfe-9284bb3da5f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575640291", + "DeviceId": "f74fb28a-921c-4001-a517-457dd1e8b682", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997469955", + "DeviceId": "e3cc052e-df78-41e9-9a0a-e9c152419964", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_473934394", + "DeviceId": "2ce4c0a2-b087-4c66-83bc-d52bef622490", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845877898", + "DeviceId": "7d86f862-79c6-49ef-9483-448796284279", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342297988", + "DeviceId": "2a352c53-e4a6-41d6-b8ae-5a543a663c46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_280445148", + "DeviceId": "2e2bc4d5-b4e3-47e7-8277-cce9c31ee34b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_156661571", + "DeviceId": "a2070aa0-2d30-484c-839d-762acb2313ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930336750", + "DeviceId": "f48b97b7-e106-4b08-a7e0-4783e078f464", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570203060", + "DeviceId": "9f962477-fa7b-480a-baa2-e360407216be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_646921384", + "DeviceId": "17e18a67-0ec4-48c4-951d-d64d5bf0662e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9d6e829b-d20b-441e-b26f-936df25f07c1", + "TenantName": "Tenant-9d6e829b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441660368", + "DeviceId": "95e0be8e-770c-4c59-94cb-6a1eac475a51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922468423", + "DeviceId": "9415c277-1074-4a08-9a1b-7582afdde266", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290393824", + "DeviceId": "d7c194b7-54c3-455f-9ff8-7891738871fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972696874", + "DeviceId": "4d3480a5-db38-4cd2-a145-d33fbab991da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588797371", + "DeviceId": "b7f72acb-cc16-4e4a-917b-7d011e3c3b78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643769062", + "DeviceId": "ef0e78e8-bc3e-40b3-870b-cf90ec97cca7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612131871", + "DeviceId": "2eee5c22-ffaa-4e50-afdd-75f196748193", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681906554", + "DeviceId": "499e2f90-fa9b-4855-ad48-dd21bf52c881", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220625867", + "DeviceId": "763b7cb7-3d79-461d-829e-710c7de7cda2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820674986", + "DeviceId": "4fa6bf78-6b7f-4939-90e7-2da49d17649d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_157657547", + "DeviceId": "59f48d85-316c-453a-9476-cf884c7c987b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "25850083-3d76-421d-aea8-7e62dfe4e994", + "TenantName": "Tenant-25850083" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721015986", + "DeviceId": "1f640794-c1fd-4d90-b6dc-3b2e9e529a30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951421941", + "DeviceId": "6e40a235-2ff0-4a98-9ec4-340784a9c121", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844425894", + "DeviceId": "2a9da0fd-93b9-4187-83ed-c61a91a32b4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207293904", + "DeviceId": "268187ca-63ff-4cd5-8627-f8b86526f6a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409962221", + "DeviceId": "788689f9-6ac5-4bd3-8a89-096688025760", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231340730", + "DeviceId": "916b0774-5cae-4603-8003-aaef7e5d7043", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561621670", + "DeviceId": "80ea47fe-12e7-43d6-a27b-7ac2ea825b12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793741563", + "DeviceId": "5c4b7bc0-95ec-4d56-8893-d5e2ebf54c6f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_298845761", + "DeviceId": "88f3a600-6a89-459a-b062-12d4f578b628", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257240210", + "DeviceId": "e3112629-7dd0-4077-81ec-23485c31f5b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_917797111", + "DeviceId": "7cc25479-3add-4c9b-8409-1c1291b3ca08", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "98085dcf-4510-46b4-b030-b0ef10324316", + "TenantName": "Tenant-98085dcf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_586865660", + "DeviceId": "17a25367-b36a-4e17-bdd7-ae634a167bac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400353797", + "DeviceId": "f0735d76-fe20-404c-b242-2e484eeb9815", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327718166", + "DeviceId": "cdee421c-64d8-48db-855d-342f0258ba86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107191418", + "DeviceId": "1901f948-62e6-442b-bd02-5817ab1f69b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_700923906", + "DeviceId": "d47e48e3-a919-4f58-8895-073e7240ecbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_774280186", + "DeviceId": "2622a5dd-0a0a-4a4e-8f0b-17fdeb180ba3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220051057", + "DeviceId": "ac6fe305-9bd2-438c-8ca8-c405e2552bee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515241942", + "DeviceId": "6b5f48fe-9994-4621-ac66-819224c6221c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_503614828", + "DeviceId": "d2db2449-847e-4ca3-b9fe-579aefab8078", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_883731116", + "DeviceId": "a489df82-5ddd-41fb-a2b5-816fd131570b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_563253726", + "DeviceId": "80a10179-e882-4783-9b4b-feb6ff09a9d3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e1fe7df3-a07f-446c-ae40-8e5a12e48824", + "TenantName": "Tenant-e1fe7df3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259306076", + "DeviceId": "0f972b09-26c1-41d5-a875-145ebbcedb73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540111894", + "DeviceId": "c7a3d298-7895-4608-a658-aa2d1b37c4b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582815078", + "DeviceId": "67e9e438-aba8-4870-813f-eebbdc994356", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466992131", + "DeviceId": "e49682b2-7fe1-42f0-ad7c-c7ef00764be0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839136714", + "DeviceId": "cdad9058-c533-429e-af77-484d5944ec26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_344872740", + "DeviceId": "651611dc-7d23-40ce-8a29-5a8e29b9f7a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_407754055", + "DeviceId": "22b4e3f9-4456-4174-a3fc-295393dfd6a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737347172", + "DeviceId": "e7fd75a4-4c06-439d-b211-dd46463edbec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659613866", + "DeviceId": "5ba62b58-6c47-4c32-8e09-84e48773c41e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116710554", + "DeviceId": "f233ca71-66bf-4919-9cac-f00b479d948a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_532195685", + "DeviceId": "fd9a8475-1012-409e-ae7f-b91dc83cdc9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "44ebe9ea-975a-40a4-ad2d-4254406c8ef6", + "TenantName": "Tenant-44ebe9ea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_555056560", + "DeviceId": "9532159f-473a-4b7a-804f-91c9bfbe0db7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_157294425", + "DeviceId": "e40044e9-599f-4ef4-ae04-c5b21f0b3596", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433887594", + "DeviceId": "1f4230c1-870e-40cb-80ee-2363691f73dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851837068", + "DeviceId": "04669de4-c92d-48c6-8cf3-439f2f9ee79e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876469062", + "DeviceId": "8ec6783d-3da4-4b22-8bcb-2c50e600df61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286215500", + "DeviceId": "aa80d6a6-32b0-4e6d-be2e-31f0db3f6307", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908302240", + "DeviceId": "b6b83d53-5be3-4569-bcb8-535a8e6665e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599649642", + "DeviceId": "f54b9ff0-d8c5-49ce-b29d-5074f3367f4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_990407508", + "DeviceId": "57f6d458-2ed0-4346-9314-4e125004e032", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152274975", + "DeviceId": "980cbf0e-f2cf-4471-87a4-8749ba178bc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_902507765", + "DeviceId": "c537d1b7-a2a5-4f6f-8adb-a560959dafe4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "28fd25ca-bd01-4389-9dc1-7d90a51091cf", + "TenantName": "Tenant-28fd25ca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278902882", + "DeviceId": "c2637bbc-bdf7-48f0-b338-5daac96dfbc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_133032367", + "DeviceId": "87e5bdc4-1bfa-4d74-9b28-6dfef7a3856d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790132433", + "DeviceId": "bee2ab53-bc86-40a3-a893-8606620f5125", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109281356", + "DeviceId": "eec0ca00-b5e4-439e-87c6-2ca2dff46aa7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862670878", + "DeviceId": "0a4515c5-c2f3-4a13-8849-74a611b3d855", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_276728904", + "DeviceId": "d2dafda1-25fe-428b-857c-d591ca65e164", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781182665", + "DeviceId": "68534d2f-b7d2-4bda-b079-d26160d27f19", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135849270", + "DeviceId": "3fdf97cb-ef23-4027-b4c0-8c013a43348e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854185839", + "DeviceId": "2bfc7dca-c615-4747-bcb7-1241e281c4b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_950501360", + "DeviceId": "5319c937-5e4b-487b-a4e3-ac72e0a083cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_185743460", + "DeviceId": "feecac1e-449d-48a5-af2d-726db3841aa5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4a67d9e4-6f71-4256-9cd9-ca32ea4da0fe", + "TenantName": "Tenant-4a67d9e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_782133522", + "DeviceId": "2ef52ff6-4380-4375-b683-0665555c3406", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666999076", + "DeviceId": "2edd5ab9-b851-4948-94cf-50ef5fbfcebd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631698900", + "DeviceId": "30b1b517-32d7-4bf1-975e-19a161e8f3d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_653400575", + "DeviceId": "98aa08c8-8c59-4283-a9f8-72b91c700080", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896860786", + "DeviceId": "5aa94695-39f8-4983-96e4-0291d0db236b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187688180", + "DeviceId": "71b00463-c38b-4fde-bf59-6763203ba349", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575449941", + "DeviceId": "7938125f-6b34-4f8f-afcf-eb53ef39f5e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932903876", + "DeviceId": "686fbfd8-4f7f-496d-b91d-aaf80f1da8ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452630506", + "DeviceId": "adb5d209-87f5-4039-b6eb-d052a781605a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_734658483", + "DeviceId": "9db75f71-ac17-445f-b2d4-3059371de47a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_799865313", + "DeviceId": "79a27448-cdb1-44f3-ba2e-f1ecef124034", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e32d8023-aca2-4e39-bdcb-9688c0685783", + "TenantName": "Tenant-e32d8023" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393997449", + "DeviceId": "333d6f05-1d63-47fd-9d84-8879e3a5a2bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212405530", + "DeviceId": "87b42657-c32a-4da3-821d-8812f93b9c16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_715942542", + "DeviceId": "24fe072e-d85b-4478-92ce-797cc4f44446", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295139551", + "DeviceId": "09414a84-13cf-4164-b7cf-441ba889aa41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561975327", + "DeviceId": "630d0620-d80f-4c0d-860d-6e5b03dd6ff4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508151896", + "DeviceId": "82a6929e-5480-4a03-b6ea-711b0cbe7cd9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313159814", + "DeviceId": "862a77fe-252b-4a79-a984-69cbb46398f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105627795", + "DeviceId": "e2910339-8170-44b5-8e84-41be1fc48549", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_852081066", + "DeviceId": "5cc96794-2692-4958-a437-e6c2b42a4608", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139833599", + "DeviceId": "f73730f5-c16c-4964-96e5-2e2f37e0b856", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_468282891", + "DeviceId": "6c9d97b3-e464-4e33-b69d-56d72df7936c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "26e4eb93-4909-4f22-8677-c36d5000d04c", + "TenantName": "Tenant-26e4eb93" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_106135818", + "DeviceId": "ea495366-02db-41b7-bcb1-fd8efd929322", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608546688", + "DeviceId": "b7aafe37-447e-4a28-bc64-a1a16ce0e7f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_289323325", + "DeviceId": "b9586665-7099-4a3f-a61d-4c71fd995864", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387588571", + "DeviceId": "968af436-07d6-4fb8-8272-85e2a5563d3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949622173", + "DeviceId": "a872e45f-5575-4906-a6d2-7902e46f4b28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223408591", + "DeviceId": "58fae3dc-72ae-4093-ad68-b32bccfc0b69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937106928", + "DeviceId": "39239081-564f-4e65-92d2-44d793b862e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136020282", + "DeviceId": "1b235ece-3bf8-43a3-8871-2f04731f4389", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795658897", + "DeviceId": "3ea743c4-3b9a-41a7-83a8-bd8dfd41074f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_871520332", + "DeviceId": "ce48d1dd-6407-4b66-9ff2-484403a33896", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_472330940", + "DeviceId": "b378b75d-aa1a-4a7c-a9cd-6364de658fba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f59e056f-2b8b-47eb-990d-eefa7ecd4a2c", + "TenantName": "Tenant-f59e056f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822087864", + "DeviceId": "4a012c7a-b948-4f80-8cdd-5b29b04b9d9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596266929", + "DeviceId": "05ecf55e-7984-4e3c-85da-b6911add973a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_857838998", + "DeviceId": "d879e471-0e44-4074-a66c-55e2560eaa72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279788734", + "DeviceId": "bf681b6b-4341-452f-b0b7-9074c598c5cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930772919", + "DeviceId": "70e25987-1a42-45cc-af61-657c22bbc64d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171192012", + "DeviceId": "09efa4c1-b7ca-4970-bf67-77c190cdbfa2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_353499636", + "DeviceId": "efe1b24d-e693-48c9-93ef-a81da747e95d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335062205", + "DeviceId": "591a5052-4626-4082-a7f0-43f84341e3b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190747010", + "DeviceId": "7420ac1c-5fc9-4dc3-836d-8fbd2dad7af3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993771470", + "DeviceId": "5353a074-3f48-4af2-82f1-e81ee02960c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_290125578", + "DeviceId": "757008cb-8e1f-42a6-a2eb-736a0127e629", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0b0a15bd-9d00-48f2-8a0c-7532e278c1ae", + "TenantName": "Tenant-0b0a15bd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847192054", + "DeviceId": "444d7138-b4ec-48cf-bef9-1e3a38ea21d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485162843", + "DeviceId": "60953a7c-e04f-4e28-90ca-430e83dd0d1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_660381831", + "DeviceId": "ffaae565-21a7-4537-a6cf-296edbe9993f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437080659", + "DeviceId": "241243b6-2567-4c16-9a3d-ef6622d2eed4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286313702", + "DeviceId": "ed0730db-f165-4b84-87aa-5e7b17a7a41f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_920126467", + "DeviceId": "c4611fbf-974a-4a00-8406-b30c0ee897ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559606829", + "DeviceId": "c2c9a724-e268-416c-af7e-05afbfca60c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765651249", + "DeviceId": "f07f9b3d-d527-40a9-a9f6-98780e60e6ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_240803549", + "DeviceId": "d1e01bf8-19ef-44b4-94df-adc760c65c18", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_147304499", + "DeviceId": "aa6ee3e9-cf03-4596-b58e-d00e9cd30b8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_866392919", + "DeviceId": "97f4db51-0629-4013-a3a5-9939d087de9c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3dd3c78c-cae4-4423-8f22-d4bc6c535ef1", + "TenantName": "Tenant-3dd3c78c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_510357421", + "DeviceId": "55c3385c-c3d4-4cd7-a2c0-05ce3899efc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651378430", + "DeviceId": "02cf3594-062c-49d5-a6f7-94de9424c1e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436962337", + "DeviceId": "1b75a4ec-b4dd-47be-bc8b-d6e8dafb57fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628507334", + "DeviceId": "20baf522-8759-4745-84bc-d28d40b42ba5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_594389678", + "DeviceId": "ab238253-5e1d-426b-9479-d97c4c560772", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467214641", + "DeviceId": "caccfe2b-43fe-45cf-9ef9-fc7e6df82061", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_555133676", + "DeviceId": "3932cc8a-158e-4827-9208-07f7e1516be6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_101304976", + "DeviceId": "3b62d26f-e9d5-4986-b699-9a365f67ba8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_789972313", + "DeviceId": "b7819885-0af1-4ee5-a4d3-dca230fa768e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_646234638", + "DeviceId": "95866405-20e5-4366-850c-f9cc63f76da8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_746049986", + "DeviceId": "24d1a422-f35b-4d05-a5de-c1e12292ff53", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b070578-3e80-44f9-b787-754d8168aeb4", + "TenantName": "Tenant-2b070578" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708094651", + "DeviceId": "c97e6a7c-545c-4f7d-8c96-a26d4273f311", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567908678", + "DeviceId": "885eb5cc-a09d-4b7c-a421-1ba61d4c84f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_943179325", + "DeviceId": "2839dfa2-f187-4b8e-b625-b3e82f6b2c92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743152072", + "DeviceId": "a7b16559-4a6c-43f1-a33e-e303cdf03a4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234409512", + "DeviceId": "44b922e6-0f27-4c37-b817-3a6c3c563b64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_412814930", + "DeviceId": "31b5e623-8fb1-4c4d-a0be-48416471c6d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932794879", + "DeviceId": "b84e30d2-86df-4d2b-a8ea-c2d12e52b65c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938030985", + "DeviceId": "05c55d40-2a29-45dd-a711-4095f448aee3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810621621", + "DeviceId": "3d8902e1-b358-41c9-b7bd-8dd6b013ccc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479212708", + "DeviceId": "0dfde356-0d3b-4b59-b593-037cab655a1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_858121218", + "DeviceId": "6864e9eb-3400-480b-a64b-4b9bb7b66107", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "69cc871f-2d4f-434c-a3bf-91dc7b925f12", + "TenantName": "Tenant-69cc871f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398227306", + "DeviceId": "d507a507-e89e-41a1-a8d8-ae900d93b1a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371583853", + "DeviceId": "86e37e56-bffe-4328-ad1c-ef24d95de05c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628842190", + "DeviceId": "f788ac02-961c-4efe-8403-7aac4679c17b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821601291", + "DeviceId": "38a5af95-0560-4d84-998d-38b1f10e8586", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976098407", + "DeviceId": "fb87743a-c404-47da-a4a9-502cc1f4fca4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390934319", + "DeviceId": "1b92006b-e511-4005-985b-f76a96c5e78a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606461833", + "DeviceId": "a541e00c-912e-4cad-bfa9-b351aeed2d35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_317833744", + "DeviceId": "ee350fa4-acce-4a8f-bc07-20db1ea40cac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246171295", + "DeviceId": "8a078062-51ea-4fb6-8451-0dfcc085fcd5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_710309724", + "DeviceId": "071e8a21-c394-43fd-acbb-944b036496b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_265834163", + "DeviceId": "e31043f5-1850-4c60-83b8-dc1a1cfbad4e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "88f8a271-816b-47a2-91e9-ef5e51b5a894", + "TenantName": "Tenant-88f8a271" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475680860", + "DeviceId": "614c5343-1c90-494f-b87e-159e3720e72e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_792024136", + "DeviceId": "af523eee-477e-458f-b82b-e9c3e59375db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_660311312", + "DeviceId": "81deff78-4760-4b5b-bb62-358bc4527615", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255500258", + "DeviceId": "2c5cfa87-53d4-425a-bce0-651ea26d5b1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794201082", + "DeviceId": "e7bd3c22-9570-4302-87c9-a325a9c78480", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769043398", + "DeviceId": "53fb06d5-affa-46d4-b01a-ef1a72ea1145", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810173834", + "DeviceId": "e29de4f4-df2b-4c36-9adb-5bc3af33e132", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953448818", + "DeviceId": "d097b941-fbf2-4c6f-a26a-3aa4f12f1524", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_179146566", + "DeviceId": "d9ffdb50-5727-4b8c-8f80-5cc8dad1e690", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527558899", + "DeviceId": "d8f7d0ad-d138-49d9-b08e-80a3d4691e4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_884678037", + "DeviceId": "059a514b-f55b-436d-848b-3925cf0d0f44", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "98ac856b-aab4-4510-92ff-04463e858006", + "TenantName": "Tenant-98ac856b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694753907", + "DeviceId": "a3e2e5ab-807e-419b-b9b0-40cad74b3350", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429967192", + "DeviceId": "e7109f0b-ffc5-4534-8963-270a0454d807", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_672663812", + "DeviceId": "f80d6c96-6f1e-4de4-89fc-8f2c4a91e57a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827570804", + "DeviceId": "90f77f01-afbb-4d71-9121-cb3db9f9ecff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245702474", + "DeviceId": "dcfe51b6-e701-4398-a4b9-7fee0ee52a49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_998350740", + "DeviceId": "f8427e70-bf40-473b-9a32-bdadf9c314a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841796071", + "DeviceId": "e06f4548-59fc-4335-a4e8-d520033ede89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_983044028", + "DeviceId": "62d35bb9-1afe-4121-b68e-02251e541bc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953245788", + "DeviceId": "6fc11b0d-7eec-4498-a3ff-594b42fafdac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542226815", + "DeviceId": "dbb4be26-000b-43e3-a096-6825899e5827", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_876543230", + "DeviceId": "941c0abc-354f-493d-9379-3dc82a129d7d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aa9ea03c-8af2-44ad-ac9c-b79d0d2d0480", + "TenantName": "Tenant-aa9ea03c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327747998", + "DeviceId": "c07cb1d4-789c-49c8-b9ef-9075601a3f5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658223190", + "DeviceId": "4c04ee13-877a-4504-96c4-f19aa53ff5ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498508906", + "DeviceId": "da17af6d-321f-4f24-8e69-a2b69052faa6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_493868394", + "DeviceId": "81f57628-40ae-49f6-98c6-cadb7340a129", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556716854", + "DeviceId": "41a2de8c-d411-4f24-9485-eae9b0553d82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866768975", + "DeviceId": "b2a5634e-74e1-4379-9989-d406a0affc25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574185556", + "DeviceId": "d4083c7f-9ff8-424e-8598-367470473b41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_689966427", + "DeviceId": "32814a6d-4457-4ad6-991a-887a76b413d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644210181", + "DeviceId": "c02cc36e-7c11-4321-a2c3-b5721f743e51", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651951395", + "DeviceId": "695f8a04-934d-49fd-8e1c-ecc9fcabfa8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_364921209", + "DeviceId": "60ebcac4-a423-4353-be3e-52784cf2fe49", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad117b40-1a7a-4087-b1b4-5eebb340477f", + "TenantName": "Tenant-ad117b40" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568322110", + "DeviceId": "0d4f8241-ffe4-4f8b-92c2-9c50826a5563", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_667621324", + "DeviceId": "d11271ae-cf53-49ae-9b25-abd98c96e1f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860360612", + "DeviceId": "3fd89eb4-68c6-4f74-ab33-960fa736fff8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508937740", + "DeviceId": "871e30af-27e8-49a4-b1ee-5c28b8e37ba4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597168516", + "DeviceId": "dcd52ff9-2c3a-4e63-ba0a-a1cc39ecbb37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818745868", + "DeviceId": "8873eb77-fe39-47d8-a33b-4a546e301c71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618545641", + "DeviceId": "5b4097b1-7697-4d6b-ac37-22ac166bb5c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621211152", + "DeviceId": "bd13578d-d989-478c-adfc-768faa26bbdc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456324945", + "DeviceId": "24532cba-e6ce-469f-9174-d6f460f93537", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596739651", + "DeviceId": "a40980a9-80ec-4dae-8788-4522c5f37b02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_487074251", + "DeviceId": "dc2eb2ae-b020-4457-b8b6-03d65bd6a6ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3904cd7d-e5b8-4a67-8585-aab9c88b859d", + "TenantName": "Tenant-3904cd7d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318462632", + "DeviceId": "50e04579-8a6c-4a15-a46b-b8fbd79149bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230375809", + "DeviceId": "fe7212b2-6e3b-4353-83cc-174fc588c340", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163880324", + "DeviceId": "59a5d480-e86d-4def-9215-c80ad5ad7a47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_299070440", + "DeviceId": "95204570-c4b3-4ed4-aba9-e4961eee45b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437666762", + "DeviceId": "cfe2fbbe-cf48-4d7e-9fb7-7d64907832e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539264100", + "DeviceId": "870b29f8-288a-463d-a77f-83dfa42ef503", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_468296461", + "DeviceId": "42cba19c-cafb-47ae-a155-8584f3235510", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999174835", + "DeviceId": "fdd84ee7-6f97-4e44-b1ab-2e461f1f95a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906401000", + "DeviceId": "546869e5-4561-4d09-921d-04307aee0d4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170978678", + "DeviceId": "8d6a3f61-09bd-4b68-8f47-f31b8020c2a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_564094985", + "DeviceId": "44cda52e-3987-4444-89ad-b95d300b0cd5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5210612-1e21-4a9a-a6ea-90a4627ab434", + "TenantName": "Tenant-d5210612" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599757372", + "DeviceId": "ca367b26-a939-4c76-9e9a-5a3b55faa8a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771682292", + "DeviceId": "a1f55c96-7884-40f4-a7ed-9e293a27f8ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259087981", + "DeviceId": "e6ee596d-1b65-4570-a329-0da5753ad20f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325747815", + "DeviceId": "70e704be-a3ac-485b-ad07-0456b79dfca8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610814906", + "DeviceId": "c4b0a908-1dec-4069-92cb-e57e6ef9579f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408103488", + "DeviceId": "bcf5a83a-a07f-4ee7-9b12-a7c1f3077bd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258341480", + "DeviceId": "79f585cf-e35e-4f81-82d4-547399ea1227", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500308500", + "DeviceId": "d7743495-2a0b-4342-8115-21c1fbf00d43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_236536578", + "DeviceId": "fed004cd-d390-4189-8754-b88cff2059df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_302229174", + "DeviceId": "4ca43279-de93-4f6d-9fe3-3e4464a86279", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_307406657", + "DeviceId": "bbb498de-2dd4-4ce1-91c4-c9931a91c079", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4de9f895-5910-4b23-971d-86ad8e9acffb", + "TenantName": "Tenant-4de9f895" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_480198408", + "DeviceId": "dfa13ebd-679e-4a37-9018-e9b248394c4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_961238651", + "DeviceId": "b5826d7a-327c-4524-a484-3f3eecadd38a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638745476", + "DeviceId": "320d4e93-5a41-41d7-84ee-16b8ee339d14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881777163", + "DeviceId": "9f6ffe5a-8761-44d6-8c97-73f0736723fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356734449", + "DeviceId": "cdac0438-d34b-4c29-a9f4-2ece3e5d179b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429205019", + "DeviceId": "73826736-0860-44c2-b431-64b1239424eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411483333", + "DeviceId": "71c2d392-e8fc-44fd-aba6-e46638ea5dd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691988552", + "DeviceId": "623186ff-e1b6-4cbd-bec0-39c2696a26af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_792695613", + "DeviceId": "efe0982c-8ecd-4a47-ae68-d5a18975125a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947299865", + "DeviceId": "7a1d556e-d7a2-4f7c-b8bd-b453b29d87c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_146155775", + "DeviceId": "00667dcd-1fa0-4343-97cd-4920822e5bd7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1f6f177b-e160-4189-aa84-53e41d16a8bb", + "TenantName": "Tenant-1f6f177b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366605353", + "DeviceId": "4239dfd1-3586-44c0-a129-658e24a32ed4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_956212146", + "DeviceId": "06cb6438-aaad-4eda-8885-a50bd903e1a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_321534447", + "DeviceId": "25c9f1ff-cd7e-4567-beea-86efc42f5809", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432285197", + "DeviceId": "334fdfcb-978a-452a-a261-df6f3f40813d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_118238194", + "DeviceId": "443171f5-cc97-4cf5-899c-c9ab5dfa1ceb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846466384", + "DeviceId": "65b84842-5a94-400b-a358-028f48277e61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495626951", + "DeviceId": "ff972fcd-6e56-455c-b06e-94d1ab7e89c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860510343", + "DeviceId": "b7acc41f-f141-44fe-85f3-c4dca3c6bae4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736461773", + "DeviceId": "07bf383c-213b-4181-8aa7-0581ad4aa0bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250076535", + "DeviceId": "71aab31b-a2ca-4929-a707-550dc45eb441", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_735501618", + "DeviceId": "86874978-5b98-4c0f-a068-d0210fce19a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2f1a4151-172d-42d6-a849-ab300c6567f5", + "TenantName": "Tenant-2f1a4151" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259276678", + "DeviceId": "5d8049b8-50f7-476d-8e0c-476f0ef22574", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_344853616", + "DeviceId": "724282ee-3cbd-4707-9791-6a316bf29ab5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_269776562", + "DeviceId": "7fd321b6-9643-4aa7-95f6-87b695e07c36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_583099300", + "DeviceId": "347225aa-0661-41be-be20-7f90748e19b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141359289", + "DeviceId": "c6247303-3a1c-4d15-b1f6-c8fc5c62d941", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457287268", + "DeviceId": "c892822a-240c-41a4-a262-4ca56d9157c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_950905116", + "DeviceId": "c4f8927c-dac0-4bca-ae97-032809cf6f49", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_560030984", + "DeviceId": "a7b43230-2827-4a27-bc4b-76a36f1d8209", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_805550593", + "DeviceId": "5585ba33-7f50-4269-8741-ee29421724e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168317101", + "DeviceId": "880ae60a-db36-44c6-83f7-1ec9919a66c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_194011724", + "DeviceId": "4d509ec0-b722-4c63-b129-629d9788725d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c110ce97-c781-4b9d-9c8e-329e00d8f0c8", + "TenantName": "Tenant-c110ce97" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_195881374", + "DeviceId": "9ba8cfe6-1964-4325-b515-e83b069c4ddc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158597462", + "DeviceId": "159628cf-5242-4ce6-b305-a433edcdc55b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_196119669", + "DeviceId": "fe6fdc93-02db-422b-b572-b431a87f216f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_389260273", + "DeviceId": "8032e893-2595-4775-b412-d79a649bcf83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_830356111", + "DeviceId": "5c09e14e-56fd-45e5-b10d-f7a599f26920", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549468683", + "DeviceId": "26b67c40-15c2-4092-acca-5e39a8d6fb7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_892094335", + "DeviceId": "f59416ec-4e4e-4495-9240-04a4dc6edab1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_830248871", + "DeviceId": "8dd39bdd-ee00-41f9-b631-455df6dcfda9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694461249", + "DeviceId": "3a8d728c-2928-4871-965a-acadefcc3611", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348742387", + "DeviceId": "45b68f13-6146-47b1-8949-30b3592bc983", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_291934445", + "DeviceId": "18eb4a9e-4612-46e8-8cd7-28ad769ddf16", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "36bb5e78-231e-40d0-b465-dee25a548ca9", + "TenantName": "Tenant-36bb5e78" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611920259", + "DeviceId": "034cacd0-5b4b-4f1a-b9b2-fcb6c2fc4ebf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428033727", + "DeviceId": "04939964-0ad0-4191-bf8c-67c3d6fa5b71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346927564", + "DeviceId": "0bc80504-d2cb-4a69-9882-1aeeb44d3ca4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606451064", + "DeviceId": "b1e181e4-9917-41e9-9a90-ad2feb276587", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789178737", + "DeviceId": "b8bdd180-7d59-466c-b805-4dfb83ebb302", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373806368", + "DeviceId": "1b7d8893-a6c4-436d-b5eb-bdf26bc804c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740547921", + "DeviceId": "01411bae-91c1-43a3-85c6-4aa584d611c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123495000", + "DeviceId": "e0441a94-62b3-4d9d-8a56-cef891466688", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328452179", + "DeviceId": "cfb38f5c-d511-45d0-83ec-b7bf8eb98a46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_144194989", + "DeviceId": "82574fb6-7c52-4a69-99d8-e01a6f588526", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_155551760", + "DeviceId": "b5bf3b19-bc3f-4779-a10f-23c316147305", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c75b1faa-b46e-42a6-badd-082e9f001c0f", + "TenantName": "Tenant-c75b1faa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550060694", + "DeviceId": "9940f6ae-f403-42a1-8c68-809af961f156", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661105444", + "DeviceId": "70b0d49d-a244-4d2a-9630-f472fc36c658", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582674348", + "DeviceId": "c3520d6d-ee5b-42f7-802b-5ce63733b688", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_776907326", + "DeviceId": "93621dd7-1d32-4db4-87a4-a643dc79b27f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278484428", + "DeviceId": "12b9960f-adb8-4f60-bf17-a934473e20cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_267506688", + "DeviceId": "097a7917-dfe4-4055-946b-1e8097893d67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145184822", + "DeviceId": "3c0dd86d-a79a-44a5-aaf0-f4e3efd40649", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_228188365", + "DeviceId": "251989f8-2bf5-4462-93c5-d4b808e4b5e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_294649825", + "DeviceId": "37d74076-8752-49bf-ab83-b15d58d4a15c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945260791", + "DeviceId": "13b48d0a-0126-4ed7-8bf1-19c4c79403e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_982844148", + "DeviceId": "4c585c69-548c-49fc-a6d0-b55ac90ea74c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7e8ac64c-c3b9-4154-bc06-ec4b6a8227bb", + "TenantName": "Tenant-7e8ac64c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835365268", + "DeviceId": "6702596a-95c3-4b76-bbb5-4bd2362948dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858305462", + "DeviceId": "9568564f-f9aa-4e56-9a14-b24c3d7bd2ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345795222", + "DeviceId": "7bc5ceea-ddd0-44b7-acf3-c5bea0e07edc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_235770705", + "DeviceId": "fb1910f5-0955-4d86-b25d-bcbbaf6bc4e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602694915", + "DeviceId": "2002919d-a7a8-47a9-b2bf-0404e95f5c66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182030709", + "DeviceId": "84620b57-8584-4657-b80b-73154768454e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324571191", + "DeviceId": "1e2e0c9d-93ef-4cb9-b66c-d4a67784aea8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_605680053", + "DeviceId": "73e664ef-3f40-433e-bb23-b60c67e091bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_436490247", + "DeviceId": "6f7c0892-e6bd-448a-aa80-e89a182648f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873024471", + "DeviceId": "8995ee52-add5-49df-9603-4a3cfdfb0cee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_471240902", + "DeviceId": "be3e0f03-1be8-4abf-8b94-42c820e75821", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "45470ba5-594f-4c57-8fd6-a3a7cf28dfc4", + "TenantName": "Tenant-45470ba5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542281775", + "DeviceId": "ac377fa3-690f-426c-928f-832b85014398", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158718926", + "DeviceId": "ff97b841-9fcc-40f9-8f77-7390df50c5ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102889672", + "DeviceId": "feab4b0f-ab58-4e7e-a670-9674f78bfdc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_507674153", + "DeviceId": "3aa00cb3-1e3e-4106-b535-3fb5efa39540", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_326346096", + "DeviceId": "f7c1acc8-797c-4e1b-a73c-236ed844aeb7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393221943", + "DeviceId": "3acac98a-2568-43ec-9f33-b880f7215a3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622932115", + "DeviceId": "72caca30-b35f-4922-93e1-f18c3e45dbe1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_712741550", + "DeviceId": "4e146ceb-6356-4fd8-9771-3d946b7a5fcf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569664430", + "DeviceId": "e8b61441-1146-4639-9e7c-7f2a9fbf44f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_572732586", + "DeviceId": "0b71075c-ef21-4824-a684-28a7845927e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_311009271", + "DeviceId": "cecfd6c4-7378-45fc-b944-b7a2b9dc1deb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be13e829-8320-467b-8a35-b706ab41be79", + "TenantName": "Tenant-be13e829" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491319830", + "DeviceId": "a740159d-e7ba-4a5b-ba20-a3ac893bcc58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_880311586", + "DeviceId": "88c706e6-3e10-4a3c-88b8-60b8a3d3539b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547498266", + "DeviceId": "b0ded87f-ae1a-4d55-8a97-a6927aa32494", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_340167038", + "DeviceId": "ab477246-54c8-4129-9e0f-69e39016e603", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553986836", + "DeviceId": "64ee85c0-9289-443a-a5a9-80cdd7ebeaba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324663282", + "DeviceId": "5d10b544-f550-41e2-a053-1bda917699ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_218685530", + "DeviceId": "36f9c34e-3666-40a4-94fd-2fe5653100af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_803472990", + "DeviceId": "e4929445-d50c-4d43-ab91-066d49b88669", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_842267367", + "DeviceId": "73b48cc5-9b64-4c2a-9d80-f74585d7cb50", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_353215045", + "DeviceId": "f83adf72-bb7b-4bf2-b6e5-0e7b2721659d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_399036946", + "DeviceId": "c70ce01d-ee7f-4050-b1b9-712ab36a173f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00ce8d8c-8261-4319-bef3-36073907702f", + "TenantName": "Tenant-00ce8d8c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548227835", + "DeviceId": "9ed8a1d1-d661-4712-9f2d-ebbafae61f5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825101015", + "DeviceId": "233ba854-e368-4038-a19a-a6d1da05ebe5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140344155", + "DeviceId": "76a7bc44-a3ed-4d93-93a0-5befae6adec8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380153458", + "DeviceId": "de66bcf8-999f-44e8-83c4-0c56a31737a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681137094", + "DeviceId": "82e7abd5-232e-4ef6-b069-cbd38a619dbd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_776006280", + "DeviceId": "4e1f81e3-95f8-4344-afd9-fa1dc06a53ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660115439", + "DeviceId": "05b513fc-035d-497d-a101-ff363a75f0f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869190822", + "DeviceId": "2806f1bb-e504-4f5e-ab7f-cf3fa71d5ccb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_775719184", + "DeviceId": "a6952722-0dbf-4373-8532-eaca586bed0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_779209498", + "DeviceId": "00a70245-6e16-4493-8233-ae7823722d4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727477981", + "DeviceId": "db513f8b-bc73-4479-b901-df5fb13a6518", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "58e68b7c-ad54-417a-89ab-ecce528cd2cc", + "TenantName": "Tenant-58e68b7c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239906508", + "DeviceId": "c92a3586-9ee4-4a90-b032-68a9355ffafc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658828938", + "DeviceId": "e70bff08-b8ca-4ed0-a52d-fcac5f25344c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_686103065", + "DeviceId": "4b57d014-fcb7-4b6f-9c5c-a358bc045ff1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_594922905", + "DeviceId": "e19423db-9a79-47a7-82bb-473dce24fdc4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_877747973", + "DeviceId": "0630eb90-5912-4a0c-b1b2-9e2d7120ae88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358011696", + "DeviceId": "501605f3-249a-4ade-8294-8cb899025df6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260988719", + "DeviceId": "13ee7fe6-74d1-4d45-9e60-208102a5f0fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456591793", + "DeviceId": "82629ef8-060d-430e-8617-d81624f812fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313456211", + "DeviceId": "aeba9f23-6564-4992-adba-4a9c5c00fda0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281087948", + "DeviceId": "8db29bc5-c020-46af-9dfd-7e522f7b9be6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_372147795", + "DeviceId": "958b22e3-3e4b-4c03-aa6c-6de8e838d384", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f7ff241d-8e8f-4b83-b8c3-ab96b8b04476", + "TenantName": "Tenant-f7ff241d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616738750", + "DeviceId": "3212e8ad-c5d0-4cba-b902-4e035217632c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538052890", + "DeviceId": "489d8629-2229-40de-8098-c3b5d3782584", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722928600", + "DeviceId": "396480a5-6222-428d-ada9-49bafb16bc38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525391042", + "DeviceId": "1d803dd0-bede-4eab-a92e-a9973180d98e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_143645387", + "DeviceId": "36268cdf-dce8-4078-a602-a003b2e88aa3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795548281", + "DeviceId": "9b5dda4c-aa99-469e-bcc3-882669d58822", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546782072", + "DeviceId": "226e5a36-d71e-462b-bafc-f54630805af2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552457589", + "DeviceId": "10dd9635-2b80-4254-9f67-167a4c73ca41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585524243", + "DeviceId": "e9801f12-8e6d-4197-9d59-b7e062287780", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524355854", + "DeviceId": "b594d31e-e4c3-48a5-b2c2-29c0f81865b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_747073821", + "DeviceId": "bef46e86-328d-4245-b8d0-d28fd1ef9d17", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c681931a-e3a6-4ce5-bcec-8610a5be4f23", + "TenantName": "Tenant-c681931a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802890977", + "DeviceId": "eece58ef-dde0-42c6-9eb3-6bb300f4b461", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580890866", + "DeviceId": "c9d61a27-fecc-4e05-b259-a974ba0ba935", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_277456671", + "DeviceId": "eaf60393-2e2c-4ef6-b921-b60b499128b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929559663", + "DeviceId": "c44279fd-5914-441b-98fe-816f5f37f64e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_135602216", + "DeviceId": "2b33c47b-ee61-41ba-a7f2-aaefb383e799", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647877037", + "DeviceId": "d23117d9-4373-4a2a-bf44-386711b113c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_497489407", + "DeviceId": "404335d8-5177-4e96-aed5-ab4f3640d9a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495937164", + "DeviceId": "957c9652-f69b-4168-a442-846af337df1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_474378468", + "DeviceId": "d4386eaa-ef8e-4ec2-a5bd-76aa2ec8d2c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532454504", + "DeviceId": "75ad9678-c076-416b-8660-79b0dbf91f97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_771546509", + "DeviceId": "a5099c69-941e-47d2-9fa1-75ae9e092d18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b89be3ad-5169-40e4-b4f3-160a6db80f7e", + "TenantName": "Tenant-b89be3ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842075564", + "DeviceId": "24d89ea3-00dd-4b41-8dee-266f7253d282", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372941934", + "DeviceId": "e1791530-dc1e-4c7c-b973-fde92251adbf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126132093", + "DeviceId": "8752ed03-109c-4602-b0f7-f76ec705202d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_277067129", + "DeviceId": "0aac4e39-6e95-44dc-a6bd-4fbefcd29247", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201221433", + "DeviceId": "137a8802-e061-472f-a110-b9fd6bb0f3a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658287652", + "DeviceId": "97ff441b-f815-4f6c-892d-af6c35221382", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347799627", + "DeviceId": "3be94758-7f7a-4391-a861-109e81987f7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681582625", + "DeviceId": "d9fc832b-60ec-4cbd-8b6e-30d6f723f7be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_633106130", + "DeviceId": "ac967815-fa00-4fdf-a0c4-eebb589eb36c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139747410", + "DeviceId": "510a7983-3970-4cdf-86a0-9787e908426e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_919418841", + "DeviceId": "38243630-d928-4ad2-9dfc-0cb51b56d1c0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4d879de0-0d09-490e-adb7-d16e887ec785", + "TenantName": "Tenant-4d879de0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904921351", + "DeviceId": "15b41963-4176-4f6b-b983-ffda06cb764b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364704755", + "DeviceId": "a6e96974-eed4-4d76-bdf9-2b78edc6dc14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298565966", + "DeviceId": "c0e7d6a9-70d2-4429-9cb2-01c5298a4ab1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933442984", + "DeviceId": "4c79cb1a-d261-4ff8-b4c4-5da3cb993767", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435265428", + "DeviceId": "162ba9e5-19a1-46be-85ff-25e215caa4c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962676529", + "DeviceId": "f585a187-5e8c-4aa7-9055-f159773af551", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_803240976", + "DeviceId": "2e8fed4f-1a57-4c9e-b627-d27fa4cdba47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727766929", + "DeviceId": "f5173405-1c2b-41da-b346-ad69e34e6221", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399804546", + "DeviceId": "c55efdef-7041-457b-a8ba-a6ab98caf2d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609814616", + "DeviceId": "5d417535-e9da-4e38-a1af-b84eefd827e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_494975717", + "DeviceId": "ca49fa91-4056-47af-a0b2-ba5bfa35b5bd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ced77136-0be0-4e0b-bbba-4f56b40432cd", + "TenantName": "Tenant-ced77136" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210365638", + "DeviceId": "36d5bdb2-b29f-4be0-9053-86f71587bb31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964139219", + "DeviceId": "5a684b33-c544-4304-b0ac-7c1b1236dedc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286334583", + "DeviceId": "a083e1fe-f79b-49f6-9d41-f56c9cb51e93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276625761", + "DeviceId": "5d1eb67f-ada3-4a25-a1f3-ff70c6a695cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_702078434", + "DeviceId": "73028331-40c7-4429-9fd4-5ae5cd46fecb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490783919", + "DeviceId": "f5557256-c07c-4b21-9708-c951c572b0f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697537578", + "DeviceId": "d8b76795-b5bd-40ff-ad74-2d828615145b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566994742", + "DeviceId": "a63a42aa-6b13-4244-b792-92d956b30119", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143926722", + "DeviceId": "3d62ddfa-fa65-40e5-bb85-c835f66823f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390408798", + "DeviceId": "09fc8402-d5d2-4b5b-8822-8c1653b62aad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_269033339", + "DeviceId": "06ebc450-d3a2-4948-8d9b-8de77dfeef1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e53e7ae9-346c-4718-8619-7ab54eb92a30", + "TenantName": "Tenant-e53e7ae9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888894718", + "DeviceId": "c46c57d5-8b87-46a1-87da-efbae687acff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311444777", + "DeviceId": "1c376a35-1c00-40c3-ae9b-dbade5883a1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424088378", + "DeviceId": "37e29c6c-cd75-44cf-beed-a49161d3295d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997260523", + "DeviceId": "b8e81d26-6104-4550-8192-f75f268d709f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818775080", + "DeviceId": "72f865f4-e813-489a-bc34-1de044c05b8d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772741310", + "DeviceId": "a92b9cf4-e9d9-4d58-a663-5b02cc13f762", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241661477", + "DeviceId": "8979cedd-d87a-46a3-8c2a-116ffc79afd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136361464", + "DeviceId": "333899be-5fd4-41a9-9b04-8444b8c90998", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_404016002", + "DeviceId": "6da81bb4-5579-4d07-8126-b44760aa09d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515583913", + "DeviceId": "cf2fca8b-0bee-4a07-90e0-3bdd04e4c9f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_851121303", + "DeviceId": "6df04c84-fb04-437b-859b-28096c0851a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a32d7f9f-64c4-4c5b-bac6-fc65a658c2a4", + "TenantName": "Tenant-a32d7f9f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585291205", + "DeviceId": "98d57ef7-9495-4661-a195-bdfeba4435e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_942114352", + "DeviceId": "4a55d455-9f36-4b32-a788-56b2ff65dbdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948738958", + "DeviceId": "8f105df8-2d14-4a46-9c52-fd5894fa56cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400369545", + "DeviceId": "433f38cf-5850-4af6-9616-e64c15882a1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529636609", + "DeviceId": "3dc8f139-7033-4808-831e-8f80e369ed4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_949586522", + "DeviceId": "85d6cffe-b20c-447e-9ea3-17a230119fc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273035288", + "DeviceId": "4de5149c-c56f-4d2f-8065-3391662e8321", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739220659", + "DeviceId": "ac9d6c1c-06c2-48bb-b437-01eb57e45a61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861503779", + "DeviceId": "cd9c6167-483b-4b38-8b6d-3057f67d8436", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416459835", + "DeviceId": "b0217b32-0e14-4af2-9d4c-349a1c37485e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_500093620", + "DeviceId": "68edf585-4c42-45b3-b536-6c917aea756d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "92fc5004-70bd-471a-8215-b6e510031718", + "TenantName": "Tenant-92fc5004" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882238768", + "DeviceId": "abbbc51a-5aca-46f5-9dbe-00e940eda327", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_695095725", + "DeviceId": "903b6c90-1ebb-4790-aab8-16202a567bd2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565008728", + "DeviceId": "92f22357-55b4-474a-9d5b-7ab385e0d6d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334991702", + "DeviceId": "9961491e-ca1f-40d3-b5ca-5b052b0c3804", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_385247743", + "DeviceId": "2f4fdd03-ce50-4b43-a900-cd0df486e811", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242097862", + "DeviceId": "f0543ad8-9608-4572-baf0-57058c4e0632", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897810614", + "DeviceId": "1d61698f-7d83-4735-a6b0-fedd3ed296cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_346170442", + "DeviceId": "c88d1f55-0f33-4087-a781-e07351a5636e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533248488", + "DeviceId": "f631499a-6eca-415c-8c49-77cf37e057ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687594315", + "DeviceId": "83910bd8-5096-409d-a2d0-347608788b73", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_744867519", + "DeviceId": "fb3d8771-b033-4c0d-8310-f943851af350", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "28d59be4-d0c6-4d7c-bc9c-7f592476dd41", + "TenantName": "Tenant-28d59be4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538363432", + "DeviceId": "3bdd0564-aac4-4d45-a85a-71923b2e8e28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_247911283", + "DeviceId": "e3dd189f-860f-403a-8559-ed6832d90248", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_627732662", + "DeviceId": "344ee9ae-e006-48bc-b13d-e377974b88ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356756201", + "DeviceId": "02f396a4-9d78-477d-865a-44399ecbbeb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642489540", + "DeviceId": "c8c36b96-d062-4eeb-a4e4-72847639a083", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_653501851", + "DeviceId": "b91f824d-69af-4041-af9c-e86639a21f5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794204663", + "DeviceId": "8cfaff17-a86d-480c-b8c3-7ca3e52ad458", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956430505", + "DeviceId": "f930869e-fad8-4c03-845a-c726373b994c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866547537", + "DeviceId": "d0d3828f-e276-4edd-af6b-929e28c4b658", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281173642", + "DeviceId": "971000ba-443d-4b46-bc0f-e4ae220765f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_423885580", + "DeviceId": "874dd007-1c34-4b1e-bdc6-3b8431892d12", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "61809f8e-cc10-4fc0-8a16-46d71b7651b9", + "TenantName": "Tenant-61809f8e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455609507", + "DeviceId": "d7d81d6d-ea7d-4963-85c6-f81934d8b528", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767123581", + "DeviceId": "987fec81-5786-40b4-aed3-6fe0057e6cce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578973639", + "DeviceId": "4ee70649-19c5-40ea-91ec-d164f52c860a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432657340", + "DeviceId": "4b52bf00-95e1-4652-a504-84e5d813dd82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148013208", + "DeviceId": "965b2019-8b26-4756-9110-0ca43dd89998", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138162643", + "DeviceId": "9e612700-3e68-4be8-b12a-d1b9edfcd291", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_589677335", + "DeviceId": "81bccb30-635d-43c2-8741-4694b9b5d20e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875713849", + "DeviceId": "015924a5-1517-4458-8b90-b70e39013005", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290865331", + "DeviceId": "2e137a10-38b9-469d-833f-568d915214cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_175434918", + "DeviceId": "6203c455-59fb-462a-8791-4dccdad52835", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_970343117", + "DeviceId": "8e76dad3-1f32-498c-97a7-b92db4b4073c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4570ebcf-d642-4f29-bf23-80f671716030", + "TenantName": "Tenant-4570ebcf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730417732", + "DeviceId": "4be1c938-567d-4492-bec8-2b553495efe6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_222014456", + "DeviceId": "7e0dea62-47e1-4f5b-aa5d-21311f8bec0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_733479291", + "DeviceId": "eefe0364-a477-48fb-8063-af548527f5b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404693031", + "DeviceId": "fc0c670d-1792-4d28-bbda-343c4aeee778", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_902608304", + "DeviceId": "ff8864cd-f8eb-4604-b9a0-a28e6b7d96f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547799685", + "DeviceId": "10bee3ba-ed43-4e5e-9a36-b1bd53451ac4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945994130", + "DeviceId": "cfbf871d-fee1-4ea3-b93b-cc0c8e814503", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_669947095", + "DeviceId": "bb12575f-1c09-4c2e-b45d-78b1e84ad7fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290356440", + "DeviceId": "f43cd3cc-0eda-4039-bac1-62b4b64aa6c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411090722", + "DeviceId": "97d81125-40f9-453c-b15e-0d01ebae30af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_484613527", + "DeviceId": "1fed48fc-f13d-4b82-975c-8ca53781efdf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c3d12811-299f-4823-8015-24aaabec539d", + "TenantName": "Tenant-c3d12811" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899972954", + "DeviceId": "0e3d876e-1953-4332-b740-a4d21ad819e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167590264", + "DeviceId": "08df8e93-ccac-4d7a-bd33-77747f318744", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827047481", + "DeviceId": "019b79fe-8a03-4985-b15c-eb357e7d97ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231344287", + "DeviceId": "641aa26d-56ff-4302-90de-27ad8ea1e4f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334954697", + "DeviceId": "64f1f3a4-d5e4-4819-a391-7d9f4448df49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_807767698", + "DeviceId": "1d3615cb-be0e-486d-9356-db81a3680292", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580508059", + "DeviceId": "ebd8e895-8025-4173-8377-f248d2b09073", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_882765191", + "DeviceId": "d974bc28-a4d9-4daa-9b81-6c13aafa68cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545703271", + "DeviceId": "edda6da3-8298-40f5-b84f-6cdcd4f3c433", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964840330", + "DeviceId": "6eb22a6a-b599-4169-9e42-03527cf8807c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_450316237", + "DeviceId": "81ecea6d-cd01-4c4d-a782-b133f0646f95", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "331c4868-bb00-473f-94a9-5b0f724fb7cf", + "TenantName": "Tenant-331c4868" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739523494", + "DeviceId": "58982b16-ef22-4e48-be9d-5b3b2e04e7ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957236180", + "DeviceId": "dc561d64-2c43-47c1-8a6b-9bfe8425c5a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393060668", + "DeviceId": "2dce9b47-a57e-4270-8a30-dde78056744d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311034123", + "DeviceId": "f4b7239c-52cc-415f-a350-a9f0c6928ecf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663811005", + "DeviceId": "f609ceff-22e7-48ca-a2c2-0d39bf828ce8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_464303166", + "DeviceId": "3c3b40da-9464-42cf-9721-66503f022c54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357823997", + "DeviceId": "c43383a9-c6b7-4455-83dd-4dad40ea24b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729687570", + "DeviceId": "43d9da66-0ee9-4f1d-8e6e-ec629bcf66c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_417748288", + "DeviceId": "aeb673f7-b9f5-42be-93c3-7eb5cacd781a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651535893", + "DeviceId": "c877c342-e43e-46bf-8f50-aaf969697d70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_652019046", + "DeviceId": "e27c41d2-b2aa-4ef8-858f-b1966a96490b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "edf29c78-5cd3-4e94-a2c8-939a6170279e", + "TenantName": "Tenant-edf29c78" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991575612", + "DeviceId": "2747d556-97d1-4934-a6ec-e92f6e8be234", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506992693", + "DeviceId": "bc3d76eb-d958-480c-9cdb-80d5e863c34b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233412461", + "DeviceId": "bf544fef-dfd4-49e8-aeaa-2612e0892a52", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_106197778", + "DeviceId": "704bfb6a-1740-4151-8bb3-4973d77d2b16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285186243", + "DeviceId": "f4cf127c-5314-4080-8011-74fd83e791f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292898227", + "DeviceId": "3081812b-6208-42d2-a806-a0069ccd4dee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481003315", + "DeviceId": "6d304943-9776-4c50-9c44-73802567279c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316099443", + "DeviceId": "a7da320f-910c-43e7-b6ce-1c681a4705e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820905287", + "DeviceId": "b420e449-a69c-465b-a1b3-1688c671ccc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_203643194", + "DeviceId": "70c15b4c-276b-4b5b-b6b6-857f7ff27d62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_395382764", + "DeviceId": "317f59e5-62f0-4d66-9eda-1b9694808555", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e331bb2f-8856-4fda-8fed-7b166488dff3", + "TenantName": "Tenant-e331bb2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171420945", + "DeviceId": "86c657fd-3508-4d3f-a8ec-62590d3cf934", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755699195", + "DeviceId": "8b06de7f-9ede-4873-bb7a-7ba8fe80e308", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_479033707", + "DeviceId": "a7afae00-33ee-42a5-8dac-8f5e39d0357e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998706587", + "DeviceId": "2e5baf28-bae5-41f9-b1e6-6524613081e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588801664", + "DeviceId": "05002d27-ec2f-401f-bc22-656c22a5d928", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647070548", + "DeviceId": "f8c34251-04f5-460d-9ab6-f5ccfb5248cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_269795275", + "DeviceId": "78f5b747-19e1-4251-8caa-8b9e29f4c670", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408714523", + "DeviceId": "8fb76bc9-d096-412c-82f5-e3eef1e86d3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614184827", + "DeviceId": "4d4529e2-703a-4151-aeaa-70ce2a1cfcba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_738765746", + "DeviceId": "32a7ac4f-8e45-4cbb-b1c0-bc1a4cd69f2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_773197673", + "DeviceId": "94774ebc-75a2-4fe1-9637-9f85a7febecb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9b75649c-de95-45e9-abd7-5cdaf144cc16", + "TenantName": "Tenant-9b75649c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_470822282", + "DeviceId": "d6b29e77-e1e6-4b3a-8213-d1703a0bc254", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_493723673", + "DeviceId": "155fe8f5-0875-4017-9b74-36d7484ce55d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_662824507", + "DeviceId": "59911f01-d4e3-454e-aaaa-b3a548dcdcda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556298080", + "DeviceId": "60848bd6-d3fd-40d5-b4aa-ae548558f21c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534018662", + "DeviceId": "6063c7a1-3cef-4e9a-9c95-10a5289937c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_603760633", + "DeviceId": "45c1be83-a0a0-4479-8d40-926adde81a8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_779355115", + "DeviceId": "87b7ef5b-9730-48a7-99c0-8c74984347b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_304826565", + "DeviceId": "f6a70f88-678b-4761-8781-d50164e54b78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812043004", + "DeviceId": "3bea518f-9dc4-40a1-ba05-acf0e9ca8139", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_435177904", + "DeviceId": "5e20cde6-5cd5-4afe-a1e2-ca21db910604", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_566353667", + "DeviceId": "9133f849-9d44-4aa3-8206-a3134832b92f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b2c36fb6-2d22-4645-a8fb-0e4fb04f7bb9", + "TenantName": "Tenant-b2c36fb6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882778677", + "DeviceId": "3933c35e-7745-4c3e-a264-afe4d1834181", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241383188", + "DeviceId": "6b6ef24a-ad88-499b-93d7-10915d98bbf7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325431694", + "DeviceId": "f255f89d-af4e-4705-97c0-b40a84b14a63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726929679", + "DeviceId": "ee4c01a8-c805-4e6a-bd07-d88147efcc48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515554053", + "DeviceId": "41a65d99-cf83-494d-ae12-d88d191e5342", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246932843", + "DeviceId": "4f7253f1-677d-49dd-96da-7a79976119a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307680389", + "DeviceId": "7c9b9356-8f89-4651-aa6e-f3d87a9d8733", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582593183", + "DeviceId": "9a932212-5847-408f-a4a9-3cf759030e4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553898789", + "DeviceId": "74c11d90-7d7a-402d-9ce5-20cadd988e9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329989315", + "DeviceId": "c366651c-84ef-4513-ba3a-e34d34467c91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_161578229", + "DeviceId": "6a7c5a8d-77e7-4b39-b5be-219105e65cc0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "df36ad22-1a66-469d-9835-8a874b721279", + "TenantName": "Tenant-df36ad22" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_959244597", + "DeviceId": "2ea1b9d9-1502-4a07-949f-3ce537a1ee4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929867675", + "DeviceId": "ef604230-3c44-46e7-b458-ab3974a07635", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538027648", + "DeviceId": "db82220c-a6e0-45b0-918f-9bbf13d39e1c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712172509", + "DeviceId": "bc90c05d-0f53-4f58-8dc3-d6603e0d9052", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223172049", + "DeviceId": "bf50971a-9e20-40c8-af4e-6e6a0fcfb3a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287183243", + "DeviceId": "b2afb5aa-59d5-4d70-abca-1488fd600b67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926374354", + "DeviceId": "ea0c6dfe-ec75-4e1f-bef4-7d7133cc8d1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575964799", + "DeviceId": "850e86be-9efc-415a-b4a1-eca42d5ffe25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176838042", + "DeviceId": "be78cf58-dd55-4bac-bf40-a2e0fad13e36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380247670", + "DeviceId": "b3dd06b7-de36-4301-ba1e-12512fafdb22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_797065579", + "DeviceId": "19789fe4-51dd-42cd-99ba-62cdc44ba475", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9cdd3dba-d5a2-4b13-ad96-9931cef03227", + "TenantName": "Tenant-9cdd3dba" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302594227", + "DeviceId": "e8dce337-34bc-4e70-a1bd-2488394bcd21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964378931", + "DeviceId": "72d2d661-a9b4-4f1f-ae98-b31ea5816d71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_614218881", + "DeviceId": "c307b8e5-6032-47a0-9b60-9f271131ae85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808566548", + "DeviceId": "68fa6795-8433-44a0-9b16-0709c30e49f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_886145800", + "DeviceId": "648d8f19-9023-4d42-9867-8197faf867a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886360396", + "DeviceId": "8968a703-69ac-4b29-bb6d-ce8b0bfc72de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_824292033", + "DeviceId": "ba1a84ee-a5f6-4ea6-bfd9-f629d8955fdf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534082248", + "DeviceId": "70f12c19-5458-422b-a13d-22cf5ccab298", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463057541", + "DeviceId": "936e1efd-2718-4369-8fea-357dfb66cc89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454277764", + "DeviceId": "3417b379-0007-45cd-9814-56b212ad02ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_930544746", + "DeviceId": "23f54720-0162-4e80-b131-83075b36b2d5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f3b8449c-03c7-491d-a35f-21b4be1e8091", + "TenantName": "Tenant-f3b8449c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166931502", + "DeviceId": "0caca340-d15d-43b7-8b36-bc62348b09d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616570733", + "DeviceId": "58d43ffd-0f17-4c18-8bbe-8566ff5d2522", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694141966", + "DeviceId": "4a013e46-5d3d-4647-a697-f5bdcbfdba4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730861948", + "DeviceId": "50c95868-c259-42a3-b287-fa58cddc8873", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169646196", + "DeviceId": "dfc8ebb1-3c40-45fc-b349-8be2aa5312db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491513587", + "DeviceId": "914698d0-59e2-4619-af70-b3f4a83bc1b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406708134", + "DeviceId": "8c42d46a-b987-4f74-8e6d-9a599433577a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319635104", + "DeviceId": "12ed2213-e01d-4b19-a6c9-9b8a9fb0007c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_240451030", + "DeviceId": "4ad8f834-a72e-4923-b018-7deaf63e6e9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_228032825", + "DeviceId": "1f42ff1b-2b6f-4bfb-8695-b54f51242ad1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_915149349", + "DeviceId": "f3f18317-cbbc-4a92-a2cc-d00bdfa09c0c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "873bb879-d684-4caf-ad36-7d161780814d", + "TenantName": "Tenant-873bb879" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_448225452", + "DeviceId": "f639210c-e70a-491d-9c36-82bcceedf3b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_110533748", + "DeviceId": "cffb27e2-729c-47fd-ac6e-e622f98edf64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767660225", + "DeviceId": "e7b04d22-89ac-48ab-aebd-45633aaf23ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538868499", + "DeviceId": "33da4136-a45e-496f-beda-85b768db41f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379183066", + "DeviceId": "676836f7-1469-4e7f-8ea0-8954a9a45f70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612139236", + "DeviceId": "d05ae3ce-f857-480a-9b2f-4562124f2981", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320515762", + "DeviceId": "bb6dd97e-427f-477e-8e28-aad1d20c76af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770172695", + "DeviceId": "9694864d-f857-4610-812c-98ba9b3cda38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_903566345", + "DeviceId": "dde2640c-ce35-4f4c-9f5f-89ca6022e2da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_835458996", + "DeviceId": "e155e150-16bd-4334-bd32-d0459a327d50", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_617493047", + "DeviceId": "41e68eed-ec9a-472a-9950-07d2cc0c4a8d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ee9a17bf-a470-4c5a-a0d4-f269ae6388a7", + "TenantName": "Tenant-ee9a17bf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_758192863", + "DeviceId": "97652917-2bfa-46e5-a62a-044e0e1cc8be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844852669", + "DeviceId": "8fb205ae-74cc-424c-ba30-d70fcc01dae5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129147900", + "DeviceId": "2372fcae-caa9-4157-9b40-cd1c9a860ed5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969817655", + "DeviceId": "d1231570-1535-445c-a80d-56cfc240aeb4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_389936748", + "DeviceId": "3748f6c5-9abf-496b-8c3d-81f015884515", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676681582", + "DeviceId": "4a94b48b-a8ac-4528-8741-15c07f7b00ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297557889", + "DeviceId": "3190e5fb-ce54-46d5-93a4-9f4ffcc48cc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735715242", + "DeviceId": "1c0cd9a5-63b2-4e4f-86c1-82b4b2fc1c9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_214657120", + "DeviceId": "89d8f3f0-a5a2-440d-92e9-91763e68eda7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462891735", + "DeviceId": "03895e54-37d2-412b-a714-08d6ee7d9895", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_588337978", + "DeviceId": "e0c28e60-2018-4f83-aedb-ab8ed85fa04d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf9dbd62-3327-4a23-abe0-46a041d7d6a9", + "TenantName": "Tenant-bf9dbd62" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_848608105", + "DeviceId": "4f7e9a44-901d-4c03-88bd-f19ec7d2ae7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_583400261", + "DeviceId": "ee0e737e-31e2-4457-83df-7e42e4750f16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665129317", + "DeviceId": "2a12c24d-3055-4fe1-8e60-4d88bdaf3d25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476596227", + "DeviceId": "ef1a48fb-440e-4961-8d04-68dc9344c46f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230981811", + "DeviceId": "e27c7c21-18a0-4a43-be33-2259a2e028d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_699130343", + "DeviceId": "e665955b-b151-4ec7-9ff8-dad00ca114d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471112226", + "DeviceId": "644f279a-0292-471f-a67e-497438f73860", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490832605", + "DeviceId": "3c965435-21ef-463b-be74-f6793021b0db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721025568", + "DeviceId": "db556293-33bb-4524-9855-ae7cec022568", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942667696", + "DeviceId": "50e4b463-f233-4e9c-ba0b-4aea89ab62fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_734115040", + "DeviceId": "858af46f-393e-4c5e-a137-9a42d723c6d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ab3297f-12eb-4723-897c-d6d62808c714", + "TenantName": "Tenant-2ab3297f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_664533283", + "DeviceId": "2abfb806-5180-49a9-819c-ef98b94538d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736276987", + "DeviceId": "c053b848-4ce7-41e1-8b81-aac982fb52a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286129026", + "DeviceId": "5bcabee4-b143-4e41-98fa-0c13a681091f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485467847", + "DeviceId": "4848db92-1c90-4d92-8a5c-81d92553f8f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518076094", + "DeviceId": "cb2db02f-5efc-454d-9a03-2ff0e55f00b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_543801387", + "DeviceId": "d1b6a745-2e56-45ec-bb84-0f59eea026a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198826973", + "DeviceId": "37836432-eae6-44fa-ae95-ae57a64a0e7d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_419366391", + "DeviceId": "b744b79a-2975-4da8-ac3e-d3c265374b2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915548028", + "DeviceId": "25cfa427-1fe9-4b24-88cf-9c949ad50df0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257035819", + "DeviceId": "e65a9943-3f37-4f98-ac3c-d31cdeb93ff2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_481892795", + "DeviceId": "917ae672-b604-46ed-bf00-d5dd27efb28b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b9884054-4227-4fea-91f1-61ad13413797", + "TenantName": "Tenant-b9884054" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272369665", + "DeviceId": "23cd2fea-8174-4d49-8181-7989a467ea02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808792437", + "DeviceId": "6b576cae-c67a-44fa-804d-117b80eb63c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743153772", + "DeviceId": "0a7d4fe3-696f-4b41-8072-2f82980a734c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837774101", + "DeviceId": "e5c4b601-0588-4ccd-b83a-3976cf9111ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_627254896", + "DeviceId": "a00a9e45-6fe3-49ed-a78b-a2dea5dbd269", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_847977063", + "DeviceId": "f94321e3-27fd-4968-85e7-565cdcbd3a5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828682337", + "DeviceId": "1908943b-4db7-497b-9713-49d86af14fb9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334369548", + "DeviceId": "3eaa80bc-a24f-4e7e-a0d5-4837b3e3a259", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_639471176", + "DeviceId": "aacf4d15-ce5d-4e8a-966f-fc1cefb0356a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_339293919", + "DeviceId": "55568772-9655-4b2d-831b-16085fa75bf5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_130279558", + "DeviceId": "6b3e2703-ec83-4959-bfd2-11bac73a9638", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f2a07457-9737-4229-8d8b-687acea3f122", + "TenantName": "Tenant-f2a07457" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755076214", + "DeviceId": "e905d556-ce13-49e8-8687-cdea08140fe0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215141344", + "DeviceId": "8dfd1463-3914-42ea-924b-b4c18f832808", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635889413", + "DeviceId": "58e2eaaf-e2fb-4fc5-a3c2-9fd9eeef4f39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_280390394", + "DeviceId": "83b91d4f-f6e9-49f9-a546-4688dcde0bf7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328371456", + "DeviceId": "15195612-9e25-485e-b501-2caac2823273", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_731293935", + "DeviceId": "690f4c77-5fc8-4167-8ee9-5baf9094d51a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752631309", + "DeviceId": "5271e43a-a80f-4e1e-8d47-8343e1b3d5d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_705608386", + "DeviceId": "a7acbc42-8515-4211-92c4-857f652c4a99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_514732085", + "DeviceId": "2c6a8f25-4f82-4f3c-a91e-c1a8bbedabb1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206024778", + "DeviceId": "944c02ec-e9d8-4f12-b06f-2f71a33184dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_600219848", + "DeviceId": "a1e05522-c45f-49b8-95e1-bc6e31d7a194", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "885fda91-67a7-4530-ac75-acb7a59adbfc", + "TenantName": "Tenant-885fda91" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665082238", + "DeviceId": "de8507c5-21ba-484b-aaf5-358ad95e08d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_764827612", + "DeviceId": "b75ae6ab-67ed-4c33-8d0c-4475750719b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982338521", + "DeviceId": "0c6018d4-8254-424d-917c-48fc8a32299a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259133395", + "DeviceId": "1141fa29-8d8a-4846-b8f8-ff5dab626536", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744356733", + "DeviceId": "0ad2ec9b-2175-4318-abdc-33d94c6d630a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771486275", + "DeviceId": "d780282f-a13b-4932-a146-a58518e4e4b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581142157", + "DeviceId": "fa300187-6618-4382-91f9-cdbc369230f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_975852322", + "DeviceId": "c75bc298-6e4d-4f47-bc7a-255143fd5ec2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_778189749", + "DeviceId": "fb6736f6-d063-42a7-a9cc-4f31d338fb38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356752242", + "DeviceId": "0f581507-01ea-4ff7-8c91-0cbd4454af28", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_777005573", + "DeviceId": "a0147c31-4af0-4a35-8e68-f09ef528b287", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5c00a998-370c-43c5-9116-9154f12fbc08", + "TenantName": "Tenant-5c00a998" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112417664", + "DeviceId": "882d31cf-c64b-4c43-87c0-b4b23349f6ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154627208", + "DeviceId": "02c331f0-6c50-4a94-895c-ecdb2c06fe56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_306842689", + "DeviceId": "a1bd4942-c748-43f8-b697-ce49557dcbce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504606073", + "DeviceId": "8f975059-7594-4045-bd77-0733e074b66e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802771470", + "DeviceId": "7b8fbed9-c362-43bb-b3d9-f7d7db06f0fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707786733", + "DeviceId": "691a443f-32d6-4a18-b87e-4efaf174c5dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137343994", + "DeviceId": "d2a4c3c4-2819-4055-867b-79a52aa1c6e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384440503", + "DeviceId": "7699340e-6ef2-4ed4-a2d1-511b2b3cb711", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725169704", + "DeviceId": "3f20c0ec-4e1b-4cea-8875-7a8ab98e9871", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_779171446", + "DeviceId": "982c843a-95b8-4d0a-8aea-8af3e15c67d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_778290718", + "DeviceId": "e5d14e0a-552a-4e67-8d1c-e33099fac04b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "793a4df5-e0d1-4f0a-b143-580a3b456684", + "TenantName": "Tenant-793a4df5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727098422", + "DeviceId": "4faa4539-859b-49d2-a0af-ab47af814f29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130192651", + "DeviceId": "ca148306-7e91-434b-ad44-b0d5e96c478c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658848184", + "DeviceId": "5bd9fca0-9a1b-4842-8961-dd33f3685457", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_132800616", + "DeviceId": "4644affa-60d9-45cb-88dc-f2fb6615d785", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436008221", + "DeviceId": "aa4a673e-8bd8-4384-a025-2c70a27d17bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469362297", + "DeviceId": "9157ce5d-a533-48d4-a501-8a3dad2b3023", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_759435993", + "DeviceId": "3d1d9230-ec8e-4a5c-a598-3409162b6b8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_778108782", + "DeviceId": "7ab88c61-f5f5-4211-8568-ca8bda0acf6c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736858470", + "DeviceId": "63da83b5-e657-46fe-9fb1-82fe105d75be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914813852", + "DeviceId": "0fe3e655-b978-464f-ab5a-a52910afa87f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_251908141", + "DeviceId": "63f5875b-9597-4b49-ba7a-1112c36463f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "31c0bdfb-c3f0-442e-a919-f057f6f50082", + "TenantName": "Tenant-31c0bdfb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701748290", + "DeviceId": "4b4dc75a-f586-4c3a-b28b-915bb1526670", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753618311", + "DeviceId": "3e309fd8-68b5-40c2-8afa-36269b21082d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402021863", + "DeviceId": "cf0bc377-bab4-4e3c-a1c7-0f0b4477c47d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_815655284", + "DeviceId": "a868dde6-1c9b-44d4-85ab-13b32fe598ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371444002", + "DeviceId": "68deea99-bf77-4e2e-84e1-5ab9e6c7cc16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341751802", + "DeviceId": "8ece64f3-0d5b-4ac4-8137-76c760470f27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_716081748", + "DeviceId": "4588a367-5936-4712-9f8c-875375bb292d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523416877", + "DeviceId": "f87c5792-8a2a-433b-b80d-52e95b5a6db8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790753277", + "DeviceId": "b94317c7-dd27-42a6-966d-36b3e32e2b14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616471356", + "DeviceId": "04b99596-9ed4-4a5d-bb2b-17b3f83401a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_101533215", + "DeviceId": "43cd3b87-0ecd-40ff-bf34-0ba2679f22a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5cba0cd2-209b-4591-9663-f65d25bd17f6", + "TenantName": "Tenant-5cba0cd2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356741990", + "DeviceId": "8f502a89-9725-48b5-9df4-bd52e2cdfa7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635664362", + "DeviceId": "45b4ef50-cca7-4f57-8150-2518939191a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741218180", + "DeviceId": "9cb16de5-89d6-4fd2-8098-4514298277e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885183642", + "DeviceId": "fde0bff1-6b3a-4b59-ba3a-8b4a6775da28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221626073", + "DeviceId": "39cb6cc3-8ec4-42b7-9a29-b6bd198722b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_586778502", + "DeviceId": "fca6dd32-e522-4b01-9c74-68af64a8ca73", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530064238", + "DeviceId": "5277c10d-072d-4cdf-940b-b7149f9a5497", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_150337398", + "DeviceId": "cb19b86f-24b7-4525-84e9-425d1f4af4bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313175628", + "DeviceId": "9c036f7b-d9bb-4000-a54e-18e72ab13c00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640694794", + "DeviceId": "a1babebf-fec1-4811-a78f-c41fa9e2c55d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_888060517", + "DeviceId": "0be267c6-d786-425d-a9eb-175954b42455", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "01640c2a-a517-4571-b2a5-f898d2fb1a41", + "TenantName": "Tenant-01640c2a" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants100-sensors1000-2906260252.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants100-sensors1000-2906260252.json new file mode 100644 index 0000000..f649d9a --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants100-sensors1000-2906260252.json @@ -0,0 +1,9502 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_915566172", + "DeviceId": "dad826ab-2e5d-480b-9642-afabe032ef93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131076254", + "DeviceId": "72b43a16-3bcd-4005-b724-e5b9b263bf74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152454776", + "DeviceId": "19df9dcd-4f61-4126-8126-1c76d9f54d6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_737077491", + "DeviceId": "cd952ef8-c161-43bd-938c-8052481fb2eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_698111445", + "DeviceId": "f4676b5b-00ac-427b-a1d5-e22d0f0f6181", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972751591", + "DeviceId": "c4b0891a-ca37-4c9f-995f-e6e009fe5035", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500987938", + "DeviceId": "cff8b8b2-e8fb-4c09-80e5-c6c323514d87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651516507", + "DeviceId": "d6e801a6-28ab-495f-8c72-e66eb326131d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334307198", + "DeviceId": "fb942082-3c04-4e98-8909-3d9f3d678271", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319552384", + "DeviceId": "78ce9d8a-ae6e-4ff2-aedd-1726ecc4fd0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_271157239", + "DeviceId": "eaffb694-0f8d-4b02-b13a-c0034d835e76", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "90a3b807-fc67-49e6-b1bb-48aa4f1e76cf", + "TenantName": "Tenant-90a3b807" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727083288", + "DeviceId": "8eb74fc8-a6d5-480c-b76e-ef49ccda34cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158217508", + "DeviceId": "458e9019-4a8c-4a58-bcd1-7f8548711a7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136451975", + "DeviceId": "bf7e231d-6beb-48fc-9582-ef20fea3151a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934378958", + "DeviceId": "2faf723f-fcfd-4859-a270-2285340e9e79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_220085325", + "DeviceId": "679015f4-9bd8-452d-a0e7-c0501e512371", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973502489", + "DeviceId": "df90115f-5f96-4ec1-be9b-d4fee192f1da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910418444", + "DeviceId": "573253fd-d812-47fa-9dae-916507e7300b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755452116", + "DeviceId": "bf0cb951-8060-4a1f-9fe5-97d83ce04381", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843984330", + "DeviceId": "799c3e11-8d37-49f3-aed9-3ff8a771b2a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_458299383", + "DeviceId": "9149b6a5-58a6-4277-8c8a-c062882e8c56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527884684", + "DeviceId": "4cd84ec6-d8f4-4154-a091-a015facb96f6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b5d38a43-0937-410e-af8b-6f4eae87c91a", + "TenantName": "Tenant-b5d38a43" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931417179", + "DeviceId": "1cf3472f-df6e-4275-8946-1962ab3a5bbb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_243711785", + "DeviceId": "ddee72df-f592-4f09-b89a-aca12dc999e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171822147", + "DeviceId": "480b0286-df5c-45e4-9c15-11ba520bbaeb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900644270", + "DeviceId": "7bf28d27-0b49-4416-9c3e-25a9b33b3251", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471803832", + "DeviceId": "cc174292-5de0-409b-9c6c-bf9684318424", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522075132", + "DeviceId": "59a4b89c-ad73-4bef-8ff1-8a1bd904928e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533689035", + "DeviceId": "74a05688-1972-46af-95cc-691e15664a8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_874112081", + "DeviceId": "ea4cc74e-6a05-42ea-a001-21f70a7bdf88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873807705", + "DeviceId": "0106f115-d14a-4781-ac9c-b03f796ef132", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566292211", + "DeviceId": "4b10915d-aa30-4552-a9fb-11e5606d2db7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527917219", + "DeviceId": "c555748c-8d17-44f3-8c0f-4ca8416cb32b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cedfa7b6-3003-4f5b-862c-b1f526b3e63b", + "TenantName": "Tenant-cedfa7b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115653902", + "DeviceId": "2ff3ec40-aa9d-423b-8a48-807adeb2deac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_308251667", + "DeviceId": "d2270485-c09d-4202-aa90-8631f5756fba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127290004", + "DeviceId": "4fd773d0-04d6-4c47-8262-d20ab65bd8a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_733355190", + "DeviceId": "313b1193-d58d-4f0a-a908-d4c54d0115a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_865047333", + "DeviceId": "381977fc-494a-4899-a329-4d910608cbb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_822815927", + "DeviceId": "ad00f26e-5f98-4204-865b-38295f55894e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575838227", + "DeviceId": "2543e9e6-9258-4e99-a55d-51fadc30a966", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828666338", + "DeviceId": "4131eb76-2b01-492c-b1f6-69b807c017e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771603387", + "DeviceId": "37d10de4-7780-4d3f-a888-66d605579e55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_409819774", + "DeviceId": "8af0c4a5-7d58-4c76-93cf-eb88bd3e8602", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_352970158", + "DeviceId": "79882111-0b71-47ab-a8e9-5ae49f7332a3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6fe69dff-2493-4466-b795-6977a0010bed", + "TenantName": "Tenant-6fe69dff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244367971", + "DeviceId": "23016da2-0b8a-4173-b29d-10813cdb9e8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_581728773", + "DeviceId": "c56b526a-da00-45f2-991f-3db123aefe15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159394681", + "DeviceId": "c8870d0e-07cb-48b2-bd79-9b7f19e2a3dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345749739", + "DeviceId": "5b715a46-78ce-45a6-92ed-5d40c3699b5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262987037", + "DeviceId": "36b570ae-0fd7-438c-82a1-88ca5c7ac8e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674621311", + "DeviceId": "09c45ad1-49d1-449f-a1b9-2074e1b81e84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576915494", + "DeviceId": "4c80c299-5888-4761-b6d5-f76b616daf38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_115447487", + "DeviceId": "ab760ef0-7fd3-4020-b8cb-5dee590ce559", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996167441", + "DeviceId": "c4b2366c-a46f-4706-82c2-8fef5d25c2b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_125105065", + "DeviceId": "ff634350-6e5a-4f02-84c1-cb79c85f244a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_485477158", + "DeviceId": "22e50788-51ff-435a-8ae0-818277e1a27f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f0c75904-fbd7-4459-a6eb-1cd598e882fb", + "TenantName": "Tenant-f0c75904" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422558731", + "DeviceId": "d3df2010-ece4-4838-ab1d-335a41e71c27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_595345434", + "DeviceId": "78f571a0-b0ff-4766-a285-f2ebdf511fa5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_343291340", + "DeviceId": "d9ce5caa-b454-42ec-ba4a-b9e9ad1d4c5c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_877709822", + "DeviceId": "b0f30242-d758-49f4-9305-49ddd5bd5c1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602809528", + "DeviceId": "86477f74-89b5-48ed-9269-511758d2440f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463519983", + "DeviceId": "8b1a4dc0-2974-4b89-be02-d5bda5262af3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195268240", + "DeviceId": "241e96f6-f8c9-444d-a34c-45996b4df7e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319431076", + "DeviceId": "4a668c0f-f6d9-4dd5-9ba0-66f7253174d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_140592909", + "DeviceId": "eaa58551-e337-4806-a427-647c37910adb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_578545187", + "DeviceId": "7449366d-e8be-4803-95b5-7c8d6aeec468", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_682212422", + "DeviceId": "e137e3af-2cd6-4721-b8dc-dfad1d50ffe8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ac8e867-d3c4-4252-9abc-9c623df91580", + "TenantName": "Tenant-2ac8e867" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_799478356", + "DeviceId": "9603822c-dacc-44b1-a924-1df33cdc8c6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_815201971", + "DeviceId": "78a1d7d6-5f93-49aa-8be1-054abd993713", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498846127", + "DeviceId": "ba717c47-2cd0-4fc7-98c9-90ee27eebade", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358745189", + "DeviceId": "5fd54bb7-71c1-4d43-8d45-6712588714fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166296713", + "DeviceId": "f98f7deb-5c7e-424e-9d53-08e3de98107e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_722917227", + "DeviceId": "a5777e31-a7a8-4100-a950-f32d730edc90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361086764", + "DeviceId": "cfc518b7-f084-4335-9930-14e8ec64396b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_179026348", + "DeviceId": "e5fda082-c4ad-4829-9801-9d3cd924b1de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_218943445", + "DeviceId": "73a33de5-322a-446f-93a4-e43daabc1f30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456148731", + "DeviceId": "ff539874-88aa-4a89-91c3-12532328a6f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_722681504", + "DeviceId": "73099375-c119-4917-b8f9-22246f9449a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3b383069-bf2f-4a18-8375-0fabe5d312db", + "TenantName": "Tenant-3b383069" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409346352", + "DeviceId": "db6c4348-4646-46d9-9154-d3079bd32466", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201655858", + "DeviceId": "39a21a35-f94d-4081-b064-e68219bf0052", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922868992", + "DeviceId": "24fc0806-f2db-40b0-a341-9ee78da999e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_576398004", + "DeviceId": "9f7690f6-4101-435a-9fe8-a60d77a80535", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900399843", + "DeviceId": "b4691e9a-9f4f-4063-b857-538a52246d1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425739975", + "DeviceId": "f61f27f6-194c-4b1f-a06a-23153354e166", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918399770", + "DeviceId": "d49fa068-69e1-44a0-8c66-65e8f7d0a0a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491547488", + "DeviceId": "03e9eaaf-14d4-4b0a-803c-f8d67b5f7629", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_976206105", + "DeviceId": "b525b6e9-1d5b-400d-86b6-d2658397e65d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836335288", + "DeviceId": "81f6ba51-feb1-46e6-8a65-0245af10b0f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_320730091", + "DeviceId": "e9e7fb8b-ca58-455c-8757-4d3c031d082f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "984d3d4a-80cc-45ff-86f9-1b158fe072c5", + "TenantName": "Tenant-984d3d4a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351602877", + "DeviceId": "c7145056-7b7e-40dd-afe8-f554f4392ff4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399764640", + "DeviceId": "52498968-027c-4b8a-a7f5-34f98f5049b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974299434", + "DeviceId": "fbfe9055-6cb0-492a-991e-8e2d83865e2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212946875", + "DeviceId": "d42e51e2-84d7-4b62-b750-03b03b644c9b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797187129", + "DeviceId": "ffbd40a4-a935-4a75-90c0-729ab2952b5a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342550892", + "DeviceId": "b55c1d95-e9be-4e50-b68e-cf814dccaa40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942944085", + "DeviceId": "6a244e74-63b6-4187-97a9-00b9bfe521d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292266215", + "DeviceId": "9d48abe9-673c-424f-b075-411888d80186", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297915583", + "DeviceId": "f89ca43f-844d-431c-8b4b-18d21e8b890c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390415141", + "DeviceId": "a5a1fd38-2788-4195-8ee2-052717262870", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_610511064", + "DeviceId": "b1639df4-e73e-4757-bbf5-b9476a4c8e96", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "10caaaf4-a7d3-4795-9f7d-ea4ea67b23f1", + "TenantName": "Tenant-10caaaf4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341091484", + "DeviceId": "c7bc6c5f-610d-4dd4-ba2a-0854c7ff9646", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570667201", + "DeviceId": "a0a43ed1-affc-4202-bc46-9e549dd7e82f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621973964", + "DeviceId": "7edb56a4-0bcb-465a-898d-d721fa3840f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659589135", + "DeviceId": "1e3127d5-7bc5-46a3-aaa2-c881c83c4ed4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471584442", + "DeviceId": "24f6e3c5-65a6-4b2e-a9ab-090820541d13", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596228152", + "DeviceId": "b78f4747-f331-4994-98a4-c4bbf3c2d38e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695371551", + "DeviceId": "82d0e838-1342-4c7e-989c-7cf7d4efbc0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_315757243", + "DeviceId": "8d96c25b-d298-463c-b646-16272f6e6c01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254617768", + "DeviceId": "98ab1c1a-ec4c-4840-9392-af5474c664cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320685700", + "DeviceId": "5829b3ec-7199-4e0b-b978-67f7cab4a0e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_967365139", + "DeviceId": "e1a8eeb4-4d52-48ab-a1af-f49d99b0926d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c496be76-a4f8-40ab-9a20-4d915c265650", + "TenantName": "Tenant-c496be76" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139074196", + "DeviceId": "320faed6-5765-4561-bd50-a926941539a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295572383", + "DeviceId": "78a7061a-269e-4cb8-8635-730dbc4dc4de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610176787", + "DeviceId": "277f7f3a-48f2-4a64-81c3-bc8bc452eb4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585334642", + "DeviceId": "182edc0f-2117-48f0-9c2a-4513498e227b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668012324", + "DeviceId": "77e179ab-3e09-45e0-929d-9d2cb1a25e74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873099277", + "DeviceId": "2bcc5a1a-f1cf-49b1-9f17-5977150f35aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_839688666", + "DeviceId": "051bcfb8-cce3-4016-909a-e449c0e62bc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456710058", + "DeviceId": "60223760-c8b8-4a30-ba96-f02a3d5a780e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580165613", + "DeviceId": "939fdc70-e232-4ad2-8e63-ec771a5b90e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509084221", + "DeviceId": "be275557-5a2c-4e82-a06c-b835decadea9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_123513397", + "DeviceId": "aa206692-1c16-491f-a33a-f7af9c34adc8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f6169d9e-0512-4e43-bd7c-1940850ad3db", + "TenantName": "Tenant-f6169d9e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951831904", + "DeviceId": "ef3a0705-4236-44f3-9699-6d688855dd15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221816809", + "DeviceId": "226d8568-2032-4649-bb82-0be95bdfa989", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741026263", + "DeviceId": "00abc7bd-7f33-4985-a914-7b6a8c955449", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347957128", + "DeviceId": "0e7477cb-dee6-4ef8-bde1-75390013cd67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400303741", + "DeviceId": "2d6c7206-ac10-42e9-8cac-01c70bde8b46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368448175", + "DeviceId": "4f1cf7ab-e64f-4598-a83d-2bc85b74d5e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794813685", + "DeviceId": "ab0ce621-b03d-435a-8b2b-588cf35ee3b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128778374", + "DeviceId": "0b4e0349-84d6-4a30-b482-5c119e27e69c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523707791", + "DeviceId": "89822b9d-1717-42ba-98b9-43315fca9e5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_571123192", + "DeviceId": "3501c8b6-19a4-4eb1-9e4f-d2a23aa12444", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_495281737", + "DeviceId": "5cc684d8-4475-4121-9c9f-069fd5e5452c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2db354cc-d00e-4436-a599-509f454eb164", + "TenantName": "Tenant-2db354cc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325391816", + "DeviceId": "21b91cef-4bbe-46e7-97a1-dcbf798bcc0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789714524", + "DeviceId": "3fae127a-5c16-48a5-8d8c-bc0350a2915c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646116051", + "DeviceId": "df5da6a0-6dff-40d5-bf74-3809bce73e55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644631938", + "DeviceId": "54e79ed2-b5d4-40d5-b74b-c3778fd9d0ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640352107", + "DeviceId": "f97e735d-eabe-4a7d-86ac-ab712c85c643", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132035550", + "DeviceId": "beb3bd67-9440-4517-9f6b-6104edd05d92", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_151951905", + "DeviceId": "1efbeef4-64e3-41be-904c-b4e2a4a33345", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_985492647", + "DeviceId": "96c57bfb-b822-46fe-952b-8aae23058c05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656880250", + "DeviceId": "6e5b0124-c7b3-4316-9585-669fad2cee6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234994671", + "DeviceId": "be8bfa7c-0217-4d99-86b0-2d733a51d414", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_535122162", + "DeviceId": "cfc656cf-b61d-47e5-81c9-8701ebeb74ee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "59c05089-2d89-4b68-8269-aa0db0c96415", + "TenantName": "Tenant-59c05089" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287380441", + "DeviceId": "d4bf3c92-2ad1-45f3-9f0c-f1f0cdc6d382", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985547972", + "DeviceId": "b6c19ab1-3c13-422a-9070-dedcc7b2d316", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602541382", + "DeviceId": "8251d457-ce81-4c0c-a274-2c10f7c39b88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_921783322", + "DeviceId": "5de090f4-a9fd-4871-bc21-08ecb2a9c9cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129458248", + "DeviceId": "1b30caaa-586c-4d8a-a673-36efd1ab5cd3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_516584184", + "DeviceId": "4ad7790e-6a4c-46dc-99d0-25fa12d49add", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401988984", + "DeviceId": "792bab2c-879e-4f08-b90f-2c4d327162fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319495997", + "DeviceId": "04d66a38-63ae-4322-a44c-a0e95d5d6c44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_261355375", + "DeviceId": "8a0aacc2-e877-4d0e-8247-d3363a71181b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_468754642", + "DeviceId": "01537ca5-5290-4d5b-b34a-aef9ffce5456", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_353321737", + "DeviceId": "46fe2813-34b5-44f6-9d9e-c68ef9537919", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ac92fa72-f94b-43ac-81c2-99efdb8f82c6", + "TenantName": "Tenant-ac92fa72" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285322442", + "DeviceId": "6f2f7785-2f58-406e-9fb8-087829cd4c2b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171688553", + "DeviceId": "0ca4c5eb-5f7d-4be4-8e86-80aa29205ada", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312165513", + "DeviceId": "f7a27a23-da89-4970-b169-e254758337c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533860421", + "DeviceId": "e7b9eca9-85ae-4557-9317-5eb6a7dcdaef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_434399738", + "DeviceId": "08b4d1af-9545-45fc-91f7-a58fdd9595f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126247306", + "DeviceId": "96f216d8-910d-424b-ba00-29914395daad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_863560947", + "DeviceId": "cac6d457-bf29-433c-8a77-9b85d97deb99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314680414", + "DeviceId": "6925901d-b2ad-45a8-8d3c-72f5b6420c70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_191958169", + "DeviceId": "60a7b3ec-b753-4a04-a754-5cc934118901", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231945133", + "DeviceId": "e38bef35-5acd-4ceb-8d00-ea6dc075c45b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_237400645", + "DeviceId": "990816ea-d73e-47ab-b7b8-de8d40b7ba1d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cc4bca81-0dd2-4d13-97d7-ac0f671d24b7", + "TenantName": "Tenant-cc4bca81" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_306517543", + "DeviceId": "1116ac2d-307b-43f0-b2a6-9b28246e954f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_583561331", + "DeviceId": "e24aa96f-5288-4cfe-8747-1fb04ee4e868", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812022750", + "DeviceId": "d848f2c6-f8ac-43f3-8482-1e615ad890ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564295561", + "DeviceId": "fb9bc55a-1dc0-4686-bc2d-1529c86bb4e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_448712362", + "DeviceId": "3456cfbc-1654-4aad-b9c4-5315d5520967", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_535409505", + "DeviceId": "c5b8dfab-15e9-4bbf-b07e-e7f60542aac4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936514565", + "DeviceId": "c308a34e-3dc5-46ce-8e30-44cb1a73d5d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123167723", + "DeviceId": "9d0db31d-26df-49a9-9c3f-5b0d1d786023", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929731386", + "DeviceId": "800fe77c-ad92-4b6c-a2c6-62473b3c6155", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143259879", + "DeviceId": "b3cba7ea-a87d-49a6-8e05-abb414dd9d3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_100391549", + "DeviceId": "aaff21be-96c6-4208-bf53-ddd059c0b3bf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eb5f961e-d97d-4722-a277-a42c1fa566e9", + "TenantName": "Tenant-eb5f961e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161103028", + "DeviceId": "203cf4d7-18e6-4436-aaae-d045cb6ac31b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125402766", + "DeviceId": "2c357255-a0b5-42b7-b633-89697ec11a47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439451647", + "DeviceId": "59dd5439-2fca-455b-937d-92c27273d2da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980459313", + "DeviceId": "82eb7aa5-c907-4e5f-b22e-63ec8107fa48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159941161", + "DeviceId": "b041ee5a-6caa-4f4f-82b1-92bb8ed266bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_147012634", + "DeviceId": "3467145e-b883-4430-931d-c556dd9574cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708537532", + "DeviceId": "5b3d84b1-7f93-4d3a-8f97-dc505c97f670", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386310200", + "DeviceId": "b7da8494-cf06-4d63-8125-50de4841415e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702257586", + "DeviceId": "b4a89e57-2dde-4523-bb53-4c1cd78eb7f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_746275046", + "DeviceId": "0c6f10cd-6865-4775-bdbc-9131014956dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_209663407", + "DeviceId": "e698489e-03e3-46f0-a858-c616975dd0a4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "17298d53-6809-4edb-917f-897e66308dac", + "TenantName": "Tenant-17298d53" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186633221", + "DeviceId": "a02d1e38-e8c9-4908-ac3f-676b539ced88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981694571", + "DeviceId": "a6cd3660-5e90-46be-8c1f-f2bbd99254d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292996794", + "DeviceId": "88b2fa74-cc9b-4839-b2fa-433dde154cd8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_338958003", + "DeviceId": "55081dbb-632e-4fbf-af23-504458cdd8d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885122487", + "DeviceId": "e7e81a0f-be29-4ca9-a446-7f995c3efa5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865354115", + "DeviceId": "49cb79ca-36ea-47e8-9791-945561374b6c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472999784", + "DeviceId": "665e4fbb-73ea-44eb-8098-ce5517e6cd3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373386230", + "DeviceId": "649edac8-8f21-46dd-b9e7-ae57d85d8e8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886755420", + "DeviceId": "071cac95-2e3b-4012-96fc-1d69c0610198", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_987817770", + "DeviceId": "a471db22-5534-444b-9715-63ca2cc43c69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_562139572", + "DeviceId": "342aed3c-f191-4b47-aef1-ff771bd3f117", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fcdf542d-1faf-442f-8963-799f9292529f", + "TenantName": "Tenant-fcdf542d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365524024", + "DeviceId": "723bfa19-07c3-4357-b28a-92ce019ef548", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706451949", + "DeviceId": "c0a93f4a-2a63-48e0-92ab-103f1be20e66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366049782", + "DeviceId": "240e575a-5166-4462-950b-bb8a48f94853", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546209078", + "DeviceId": "05727bf4-f4c2-4a04-b283-b3c530a36906", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281044805", + "DeviceId": "1caecb7b-0bf4-4bbb-88a7-bf9e4bbc024c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438109376", + "DeviceId": "e58be452-c9a8-41e0-b94e-6124da892be9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_890584036", + "DeviceId": "608f87d2-2ebb-42c4-be21-81ce882588cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_528541848", + "DeviceId": "f06299c2-d019-4077-86c4-28bef4094a2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_159500096", + "DeviceId": "5f021ca7-0325-4196-a585-a832f078d463", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_544891414", + "DeviceId": "5d368c14-90d0-407b-8ce1-f5a4b10a44dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_127502284", + "DeviceId": "26c9fcfe-5797-4ef4-9311-89ca921c4790", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad355b5e-a4cc-489a-952f-479d62c12540", + "TenantName": "Tenant-ad355b5e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_627091288", + "DeviceId": "6dfd7f5c-8c91-4e0e-b58c-b279119e7a97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_211556016", + "DeviceId": "02aa52d6-fab1-494e-8aa1-f21fdb0b0d37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_243188017", + "DeviceId": "100ef8aa-b48b-4649-8cc7-6f7b07be6746", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320476616", + "DeviceId": "323befd8-cc92-400b-818d-278bd7dd9f4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_143820267", + "DeviceId": "fee2839c-0c01-4df5-b7b9-1176ed888f1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_971327276", + "DeviceId": "6c604836-a0ed-4757-8142-9b8ac48110e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475824161", + "DeviceId": "ebad7a0e-9438-4a87-960b-490da80f9991", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881680672", + "DeviceId": "2c7b641e-a9b4-43de-8d14-81e861f89067", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_437848786", + "DeviceId": "96bb1557-81df-49b1-9827-9bb69acd2371", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416966102", + "DeviceId": "923cf891-d661-4a48-bce1-857bdbabc60f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_454278678", + "DeviceId": "ee27e7fe-0f55-497b-a07b-b998da9bf409", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6580cdf1-42ed-4ca8-8d48-1270c7fa3158", + "TenantName": "Tenant-6580cdf1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158659859", + "DeviceId": "2cbf61f7-e4b0-4eea-9055-306416d923cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584781521", + "DeviceId": "3af0d19b-4434-41d0-9d46-d57bb71c5415", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924186614", + "DeviceId": "d74c9a9d-e303-4652-801f-3d10be12a63a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_510430387", + "DeviceId": "fa94b025-a3e1-422e-b7c2-adee5ed3f56b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970766638", + "DeviceId": "4e3e78c4-b49e-4723-aca0-c28406c7aaf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866490062", + "DeviceId": "9b18bafb-bc67-4ab8-95c9-73f28b98f8bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254168067", + "DeviceId": "ce212ae1-524c-40fc-8ad4-5c0b379d083f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_538514680", + "DeviceId": "9a883dfc-7295-49a9-9513-f048015f2b84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_821818298", + "DeviceId": "d74fc0a6-0b17-409a-a223-c33500eb1904", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724739963", + "DeviceId": "5e72abb5-44ec-4773-b551-9f322b8829eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_882935803", + "DeviceId": "037921e8-6db1-4d05-8aec-82b212930559", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e73847b-6834-4f86-93c9-d78744b50700", + "TenantName": "Tenant-5e73847b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787244772", + "DeviceId": "6567a1c6-da7d-45b6-85e4-52d54a1a9307", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739634062", + "DeviceId": "50dbcbdf-37cd-4896-9855-1c5c57aaae87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_647711198", + "DeviceId": "001d435b-8c39-4068-9f41-63ca541b8fb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985171896", + "DeviceId": "4cf30857-fc73-4dea-8921-29f75d260ebb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_830233278", + "DeviceId": "9a642536-de40-481c-897f-48110bcc1650", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552287123", + "DeviceId": "cb4c27ba-d3e2-404a-b66a-53d176f19b7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809705037", + "DeviceId": "2bc03b84-2903-42b9-a411-a3896898bce6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_706669929", + "DeviceId": "7d14fd3d-6c08-4443-83b4-8bb5def18752", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915393311", + "DeviceId": "941763b9-e5de-40ea-8d52-a1fe8f902ab5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152313183", + "DeviceId": "49eec50e-e6c3-40b1-9a0d-14abae8b6c70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_366161806", + "DeviceId": "a4d74518-b71a-4773-af81-06c9dd481997", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5f2c7198-4dfe-4fba-a825-3d05a08d88e3", + "TenantName": "Tenant-5f2c7198" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_615750426", + "DeviceId": "6e6b9e90-4300-4274-a8e1-52eafc8628e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697396561", + "DeviceId": "a3ee9734-4c7b-4a60-977f-16636a10d082", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292713659", + "DeviceId": "ac7eb823-16d2-420a-908e-4ccad28ddb40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286090092", + "DeviceId": "82e8bd36-f181-4c4e-94e8-05789314c645", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682967028", + "DeviceId": "94874eac-1a5b-4b75-8f53-eee1cc3825a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_343606920", + "DeviceId": "cce97c03-ee36-419b-9f91-fb201fa2f3da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925940178", + "DeviceId": "1347f1de-1b3f-4831-8c06-e9fece0fc2c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193400319", + "DeviceId": "8e15c465-3586-4b6d-beab-71571ca5938e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_339128783", + "DeviceId": "293a0bd3-53a9-4d91-b70b-edfdcb3a340b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916726226", + "DeviceId": "5e42669c-6691-4433-a015-69db86f2b045", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_148385527", + "DeviceId": "2516d6f4-31fa-436e-b41a-43d334eca97b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4ab067d5-e43f-49b6-8d39-b47614b80314", + "TenantName": "Tenant-4ab067d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_367435182", + "DeviceId": "a0fddb67-1801-4d53-a7aa-f0b259a3ec74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102446847", + "DeviceId": "08925dce-c5e7-49ed-8454-2f3ad5994ddb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605320719", + "DeviceId": "ab0ba679-a739-483d-8072-004977cf720e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117226401", + "DeviceId": "ba030433-36a2-4de9-9657-0f2dcc71bf16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403561662", + "DeviceId": "4d6c787e-c2b3-44b1-a751-fad2c2715f93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_832875607", + "DeviceId": "26f9f68c-62d0-4b2b-a6e3-dc69525a05a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_156322674", + "DeviceId": "d5c052ec-7789-4677-ba58-3c51d37dadcc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573898172", + "DeviceId": "a3853559-d5e7-4131-b4cd-207fc9155d21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114552380", + "DeviceId": "1b698c25-2ffd-476e-8ce3-8a8ff97d6db9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485338645", + "DeviceId": "37316563-0f43-4966-9289-1a696f011eb4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_906626671", + "DeviceId": "056d5f8e-19ee-4497-8bbb-fb4dd09c7702", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9fbe3345-abfa-4d47-b047-ee3a0f5808f5", + "TenantName": "Tenant-9fbe3345" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975026934", + "DeviceId": "8b3cd073-82db-4caa-9f03-3a269362b713", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404788576", + "DeviceId": "ffa6dba6-e3b5-48ba-828c-ffbb2c9789ca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979527672", + "DeviceId": "43728048-503d-470f-8927-fad65fe3f14e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642098573", + "DeviceId": "a6d9d84f-0b51-4c3c-a42c-7056c7d9b079", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492351309", + "DeviceId": "701def1c-cd2f-4e1c-aa93-c08a00a45c42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_705939613", + "DeviceId": "04e4bef1-cd43-4531-805a-4484fc4cfce3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938783642", + "DeviceId": "38fba3f1-d9a0-4fe9-bb8e-2ed696bf04d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_751210746", + "DeviceId": "58b41e9f-b507-4f8d-8ab3-f3f6ecd291b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865135016", + "DeviceId": "285e7c95-ce0c-437a-88c0-f73130ac55df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575635581", + "DeviceId": "e4b0824c-5a9d-41a3-a8a0-b59a1ead9818", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_551278066", + "DeviceId": "7efb662f-0403-49e5-8e1b-a9d3e256c364", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5686a0b2-d19d-441f-8361-fe8d4ff308bb", + "TenantName": "Tenant-5686a0b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601193470", + "DeviceId": "d819741f-df89-45f9-9a66-3e75dd8968cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328754707", + "DeviceId": "025cae33-e148-41e0-9ed8-62779717257c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405353463", + "DeviceId": "e80d1768-4e8b-4740-9f3c-08627bc03ad1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404254819", + "DeviceId": "bb98fb78-9469-4e61-8338-9e6b2ebff7ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145199884", + "DeviceId": "2d7296e5-be7b-40a9-937c-d4e8d83cfd9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_207233308", + "DeviceId": "f4916edd-db1f-4567-a962-9d24aa6ba71f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524420495", + "DeviceId": "ac8aecbb-f603-43fd-bc69-dc89b8527e26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379596280", + "DeviceId": "25f98203-9d34-4359-bd7c-4ae19784ea2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321184959", + "DeviceId": "a8362907-56f6-4925-a729-851640b4b058", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665787093", + "DeviceId": "4572d784-1c89-4aeb-b86a-c99c9c1ca140", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_819564301", + "DeviceId": "4ae031d1-44bf-483d-a15a-f08815274136", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a993f57a-376e-4623-ad08-d7f08346f831", + "TenantName": "Tenant-a993f57a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572433214", + "DeviceId": "5d84b52b-35bc-4a37-a2e6-47c2827d884f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373898745", + "DeviceId": "3beb6739-06b2-42b7-83b7-fd15d2b51081", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_198011130", + "DeviceId": "5a9c3007-03b8-43d1-bc36-035e04f28bad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_577461039", + "DeviceId": "48717bf9-0053-4717-a442-68f96afac6cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_664608255", + "DeviceId": "7688f428-7119-4f8f-9bb5-a214a2b4e4f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857413421", + "DeviceId": "20483f4d-57fd-4ad1-9617-b1a01aa389af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_934286478", + "DeviceId": "6491a690-8280-4c51-a552-065f7562dbe4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640714204", + "DeviceId": "1c9e9f9f-c5ba-4dbb-bcf1-1e7d47525636", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512733296", + "DeviceId": "5e9c4d87-2c49-4d42-aa1c-e12fbcf73249", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_958589841", + "DeviceId": "427fb131-3378-4508-bfd0-8cd0d944b3a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_461331917", + "DeviceId": "2ad42ec1-482c-46fb-a2ee-d418afbb4f29", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "35d5e2b8-7d3d-4db6-b973-1c86f8ed4d4f", + "TenantName": "Tenant-35d5e2b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659253433", + "DeviceId": "507a67bd-050b-4101-9425-73b54291517d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203208783", + "DeviceId": "afcff13b-1f92-43ae-88a6-70838381f405", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_647782194", + "DeviceId": "d36dce7b-8830-4f28-9e57-6cff88837a80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252001794", + "DeviceId": "9d37f1cc-3d9e-44ec-91d0-afef47eb0df0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514801577", + "DeviceId": "8d44191a-e587-48b2-991f-29fd92aa9803", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_712744595", + "DeviceId": "770c4759-4be1-4093-9041-d25e6b685e03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_646886600", + "DeviceId": "3eed27dc-4d6a-445b-b7b5-6b85228fa727", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_957649624", + "DeviceId": "f6da2957-37bc-4833-ade1-a1d921781cf4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244809394", + "DeviceId": "91b00b6e-087d-4433-8d9b-42638af78add", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313873783", + "DeviceId": "c055dc5a-a139-44ed-b1dd-57085633466d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_569195345", + "DeviceId": "b2a7a0ba-4806-4fef-924c-5d4f14460808", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "504d6c75-d4ec-4f7f-b47c-03591f01825d", + "TenantName": "Tenant-504d6c75" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_527649361", + "DeviceId": "10532035-7e36-49d7-a977-0687133fd8a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351682425", + "DeviceId": "9333487b-f6d0-4416-a6d8-2cdf4890a010", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661036573", + "DeviceId": "a59a1e0f-dd46-4ea5-9ae7-861d79e31431", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_486280654", + "DeviceId": "d33670e7-360e-49c1-b9f3-71f74cb83510", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244961342", + "DeviceId": "894adb01-ab08-4054-aa82-94e6ea82dbe4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381536019", + "DeviceId": "5e2b0bfc-bc8a-4390-ae8c-bf9ea157d5e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861389792", + "DeviceId": "b96ea3af-71c7-4a77-b148-3c3a29cd8cb2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938717437", + "DeviceId": "45eb99c8-1ba6-43ea-a811-2156a1fd8ffb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_646711766", + "DeviceId": "b2ed2b6e-7fdc-4e5d-941e-705fd49bae5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988104135", + "DeviceId": "b4c0f782-45b1-4221-a8dc-2831135aa487", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_329438826", + "DeviceId": "0165a4fe-944c-4752-bab0-c29d58e887ac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "47edac25-3f6d-48cb-811c-45cca4d09a54", + "TenantName": "Tenant-47edac25" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949922466", + "DeviceId": "7a32489b-d9f2-49f1-a2f7-d842fb0a25cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979466940", + "DeviceId": "a907eedc-0646-4c93-b1e5-c6a4a70801d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659066818", + "DeviceId": "49836bf2-c460-4969-a3a4-48da013d906d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771466438", + "DeviceId": "fe5ce2b8-0ee2-44f9-a775-2c1662a0849c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_805102813", + "DeviceId": "cc78aa52-3d3d-485e-895e-24c630ce7626", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691083792", + "DeviceId": "9d97283c-fc34-4c97-ac49-e71e7f4d3d83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364956108", + "DeviceId": "36286fb0-99d0-41a8-814a-f593e1fa48ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360866740", + "DeviceId": "c71cbce6-48d3-4d77-9b01-7589eb8b449f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148396006", + "DeviceId": "68842bb9-fd4f-4ce3-a69b-f7bcff6f4ffc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_750444410", + "DeviceId": "a481326e-4070-4936-990a-97b54fad042d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_407499328", + "DeviceId": "65ae9ec7-1950-4ed7-91f7-ec648292d571", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5b120ec-f051-4d59-851f-1506b3bad6bc", + "TenantName": "Tenant-d5b120ec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_110274479", + "DeviceId": "49c76f40-51f2-4297-bf39-8c34444114a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652483544", + "DeviceId": "7e174c29-cd29-45b5-a3d5-b8c7ce7e2d0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999046086", + "DeviceId": "751d55db-1f80-435e-9d9c-135d51bbe07d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652959297", + "DeviceId": "6cf65e15-3d2f-4d55-a946-e85e65669d83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751332635", + "DeviceId": "ad7bc5f7-7a64-4434-b1b9-ea2e27bd7233", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256313129", + "DeviceId": "634bf28f-a074-4da1-ab54-ee1bf09109ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_267564574", + "DeviceId": "a1cc6554-8631-4890-a156-5e2308215c0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494459420", + "DeviceId": "8d8c8540-94ea-47eb-a15f-661dfe95d165", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_277224242", + "DeviceId": "a5896e85-5ed6-4157-9a3d-483d26f2ff7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231222860", + "DeviceId": "40aff3db-986d-44aa-a1f6-4c006da08e96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_449992407", + "DeviceId": "7f74eae8-3b59-4827-aba6-b24d1f9a9389", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1060fac3-4b39-42c8-be15-3eb68098afb3", + "TenantName": "Tenant-1060fac3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748672123", + "DeviceId": "415a9509-14cb-4906-84d8-6a9151db1ce7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416346201", + "DeviceId": "32bb0ca3-f223-4488-a88f-2768ea1c8a87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368606833", + "DeviceId": "fbb56585-297f-41c5-98a8-0c2fb2e21d75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_326635823", + "DeviceId": "fa9c5db0-8b55-4cb1-9b16-8b9b1b1e5ee3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273576023", + "DeviceId": "667d98ee-b181-438e-b3f4-d745d3ddcd9b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_811228230", + "DeviceId": "f76e5502-ff5d-41d2-81d1-dc3aaf4cd0d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485350807", + "DeviceId": "de1a4ef2-df87-4088-adeb-7086b8e9ed5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947492235", + "DeviceId": "b17772f6-274f-4b8e-ac28-af33cc6207e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851249300", + "DeviceId": "532f4ce0-f006-4f50-be2d-972b5efb7f4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570263898", + "DeviceId": "51e07d82-c785-440c-bfff-4b6a387d4ff1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_359734373", + "DeviceId": "4287b784-c288-43e8-925b-30e244bbc9c5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e84deab8-cca0-44c8-aa62-98e24dc76a48", + "TenantName": "Tenant-e84deab8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_967177322", + "DeviceId": "4f9bd021-96e7-4872-8e77-8a8ab54a7c95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536414900", + "DeviceId": "704960ca-78c1-4905-ae18-74f00fa47f25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727762887", + "DeviceId": "c9d9ae46-bc62-444c-9406-3eecf0ac3a7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167971172", + "DeviceId": "b22e438d-cb1f-43d8-a5ab-1441064be874", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882898346", + "DeviceId": "1cd0511d-d907-4132-84c2-582122686c4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_151653583", + "DeviceId": "9bc8c012-2b00-44b6-bada-6e763fb97641", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672015611", + "DeviceId": "574b0e5b-c873-435d-bda3-9c18640567e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921108533", + "DeviceId": "dc11c27a-9336-46fc-9bc6-da25928f2974", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_529691677", + "DeviceId": "ea3228d7-8332-469e-a54b-41fa4ff49bda", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234787364", + "DeviceId": "f7e4df4e-8638-4e35-96b7-d73423b91b43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_871299923", + "DeviceId": "e464ba5a-b255-4847-9fff-097ef1313c0b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c703e5c0-61bf-4017-9484-ade0d5141da2", + "TenantName": "Tenant-c703e5c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_390158087", + "DeviceId": "e10dd084-90e1-4e1e-b4d9-ccf32c2bac89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154281636", + "DeviceId": "9cdaf134-1f4e-4635-8ab0-d6bf2165702a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_198426039", + "DeviceId": "676abeed-3205-425a-ac02-a9b1a9d4b944", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933283499", + "DeviceId": "87c11bac-63f4-440d-bbce-5ad1d699c515", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703646147", + "DeviceId": "bdd04521-7398-4177-9cf5-d146cec85a83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_529216412", + "DeviceId": "d78f2ac4-3a7f-4ec4-8ad9-108ae02e4d6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799443370", + "DeviceId": "37b10feb-4b73-408e-a88d-c0bc843b94c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_311899226", + "DeviceId": "808986c8-a6bc-47a0-98c9-eb8bc3c5aa4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139923267", + "DeviceId": "bbdcc24d-990c-4ee3-bcaa-7938f524df55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102437522", + "DeviceId": "4a6b5579-21f6-4e25-bbe5-e41b793e4c85", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_844526545", + "DeviceId": "31a529b2-27e9-4d8e-9a26-e778d1146f96", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "90697455-61f9-4e08-bc1b-549be46b9f39", + "TenantName": "Tenant-90697455" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608050967", + "DeviceId": "8491d8f5-1b28-458f-9267-efc7233e4fdf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362715850", + "DeviceId": "5a8a61fc-98af-4f8c-a3a2-c5a33ff87ace", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587189096", + "DeviceId": "4eda421d-9797-4ce5-a6d1-c16b89a669e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597917317", + "DeviceId": "c5a1b1a5-99f9-4747-be8a-20c5806b3518", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420184034", + "DeviceId": "8e90633b-2ee9-4612-b003-3f37c3540894", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916117458", + "DeviceId": "79ff9893-0c7b-4a8a-9587-3f757d3908ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995791397", + "DeviceId": "e377ffe8-5bcc-45c2-8e8e-84c8ad76f1f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_470382373", + "DeviceId": "59dffe0c-233e-4c1e-be60-66033c2bae30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933351197", + "DeviceId": "a41ff4a3-c0b8-45f4-b905-224cfaeb8cbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375151831", + "DeviceId": "ef87c84d-f3a8-49f9-9149-924bafadf3c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_714521261", + "DeviceId": "8433dcc1-86b5-492d-bbaa-9c5f54f232b2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c29852f9-5d63-438c-ba95-afc2fa839870", + "TenantName": "Tenant-c29852f9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393818805", + "DeviceId": "2bcecf16-319c-438e-a8e5-565ce40e71e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_760044549", + "DeviceId": "d28302d9-d899-497f-afaa-8d1c18dae0b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273428092", + "DeviceId": "26192790-16e0-4d31-afb9-f1536147d711", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213338836", + "DeviceId": "bf21cac6-b16f-410a-ac8e-ad9bf9f3f277", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267653657", + "DeviceId": "376fb1b1-e88b-460d-a467-73c97fd8cc20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328406227", + "DeviceId": "2214aa1d-dada-4915-8268-5a9a382a27dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128507653", + "DeviceId": "535d8ec3-ac76-43fa-8442-4c50a4fb5072", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235275242", + "DeviceId": "825a18f1-364b-4819-8577-85dd2c495c94", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932350652", + "DeviceId": "b737fd83-5980-4fca-8ebe-429c3413b7d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650263100", + "DeviceId": "d54f8d5a-37ea-4955-830f-f31918171d24", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_490027413", + "DeviceId": "10004b83-e3f0-4dc8-8e46-800434a05d0e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1ffcff39-4d00-47f1-9285-7236ca5a757f", + "TenantName": "Tenant-1ffcff39" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_667011556", + "DeviceId": "60dce0a6-3f52-43c6-8612-74add51eeae0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550169643", + "DeviceId": "20581143-47e4-4051-a530-f8592a7f968f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976739388", + "DeviceId": "2d186bf2-0b33-47c5-ba4c-6424fc92b125", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356372690", + "DeviceId": "08e61c3a-2915-4787-99d6-f0faca32b872", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169194017", + "DeviceId": "7bea33e4-05fd-4cef-b8f2-1f8b85e528cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389926421", + "DeviceId": "f36206d0-fd6b-4094-af1f-8963f08311f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512145018", + "DeviceId": "842c5dad-98a5-464e-ad98-7af9bc16f0fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944215841", + "DeviceId": "b5b6a410-eb74-4f9e-ad2d-7162990fde8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575037265", + "DeviceId": "fd33b1ba-84f7-4ea0-a013-4176f55307c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599055719", + "DeviceId": "bb39aa5a-ffd7-4196-a486-94c4507c5b06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_926066005", + "DeviceId": "f38abf5f-dd75-4508-a398-8492f44431c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "69aec180-5f29-479f-9103-f87ab7b75b0f", + "TenantName": "Tenant-69aec180" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646692358", + "DeviceId": "befe9b16-0dad-48a8-8b12-7ca2b1c0f7bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186121608", + "DeviceId": "c344b6c3-99c7-4994-81a0-e4ab826dab51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382747980", + "DeviceId": "da758722-8367-4358-926b-8b8082480bce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_383130001", + "DeviceId": "183ec905-e761-430e-8398-bad8c608e363", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_777110859", + "DeviceId": "3a48f4e8-2cfd-4ee2-a562-f0857a1d0f51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_224884933", + "DeviceId": "5d5a0b08-34f2-4e4f-8c33-2b44c3b57d44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_325941976", + "DeviceId": "de72e7c1-64a9-4ee4-a482-e4c642f8d768", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708115922", + "DeviceId": "1cec0575-5655-413b-b13e-cb5274da6dbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141051417", + "DeviceId": "cdf20cac-0a77-4887-a57f-0dd0487a0765", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_482969210", + "DeviceId": "54ea7512-6236-4c59-b2fa-247724d26f97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_781194901", + "DeviceId": "cc6bf089-c9f7-4868-acfd-a9ac4fef184b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1e011aad-dff2-4689-b04e-fbda495b9dd4", + "TenantName": "Tenant-1e011aad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439264040", + "DeviceId": "9552bc23-cd11-4d9d-b74e-b14aa0eaa0c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574419345", + "DeviceId": "6eae9dc6-3329-400d-952b-c09c6f70b1c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_946658560", + "DeviceId": "dc4bcd25-c8e9-4168-80b2-1f9027ee10d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505499959", + "DeviceId": "a2ad9921-daf4-4835-b4d4-92c1aa0d5d51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_251994068", + "DeviceId": "18044338-c6b4-4364-9857-e8174366c2da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_871960964", + "DeviceId": "abb3c39f-960d-487f-a4af-8fccbaca8c95", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954786570", + "DeviceId": "960bb569-d847-44cc-a5bb-45bfccc21b06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246193456", + "DeviceId": "3a523e40-5a20-4fc6-ac03-15d3085c47ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126502164", + "DeviceId": "de246f14-fc6b-458c-af34-3840e30bf3df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_112562191", + "DeviceId": "e3719c5e-9f83-41f4-9bce-696ff9c20cab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_952100089", + "DeviceId": "70ca7ebe-387e-4611-8554-5dfe4b25dd6d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05716bec-1869-44a7-bf94-559b6baf861b", + "TenantName": "Tenant-05716bec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_669190695", + "DeviceId": "533c192f-8fbb-4087-a2eb-55e17fb9e303", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924629064", + "DeviceId": "29f2eded-70f9-4d4e-baff-f7db32b8cf17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824073048", + "DeviceId": "ab472acf-e998-4177-a5ca-bbc705840dbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265592090", + "DeviceId": "a806fe4b-c356-4087-9b07-140a8fd85585", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294862065", + "DeviceId": "2b351b8e-3813-4b46-bc2a-d4d0a41a5bd8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583107031", + "DeviceId": "cca031df-ccd3-47f0-b67e-997581bb82db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307647819", + "DeviceId": "a8a4622d-c2fc-4b3b-9c61-19bbb3cd7f8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331051736", + "DeviceId": "b1d8965f-7196-4b74-a466-d658cc162b97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251922988", + "DeviceId": "895b21a4-19ec-4a25-a477-54e3883f4806", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_498608201", + "DeviceId": "a146c4e6-0e7f-4038-a9c0-9e68943794da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_758950190", + "DeviceId": "3ad59478-f984-4f24-8743-3207c5d82d48", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e9984271-11e4-4429-941c-ebc403ead125", + "TenantName": "Tenant-e9984271" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100962208", + "DeviceId": "13077338-e81b-4e63-a496-c446a817e7f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_887370182", + "DeviceId": "461e920e-0c82-4dcd-bfbf-1691ebfdbbe1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260626348", + "DeviceId": "2a6e450b-3b95-4974-9122-4e3bf476a059", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_857705887", + "DeviceId": "3a9e6432-dc5f-4d60-9723-34abeca891e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366318368", + "DeviceId": "ed8f501a-ac9e-44d7-85f4-28e7d5e17976", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_253433949", + "DeviceId": "8256553e-d694-4446-ab80-c3e28b3b921c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869405232", + "DeviceId": "31cfec1b-ef43-4655-a1a9-91df82b0add6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_449842008", + "DeviceId": "6cb3382c-892d-4bb8-a4ef-9903cfb81138", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_431735667", + "DeviceId": "5ae0530d-5837-4f5d-8a75-0740788d61c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995960161", + "DeviceId": "38bc8b5c-dba0-4c5f-b5e4-88b9166c835a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_164212309", + "DeviceId": "4613c386-9202-4be7-ab07-4222ed325dbe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8675580a-4e6f-4bcf-abad-c231e671bb42", + "TenantName": "Tenant-8675580a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148327591", + "DeviceId": "e18a24a6-1aa4-4207-93ba-79f4a5874840", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185403472", + "DeviceId": "5dea6372-8c3b-4ca0-9fef-ee6a9dd247e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_941809090", + "DeviceId": "865e665e-292e-4382-aa30-3bab0d99b2a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768027957", + "DeviceId": "8279ed96-ced4-4248-a51e-5f0133ae25c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382211352", + "DeviceId": "fc990994-9fcb-4694-b725-6f5626b92ae4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642905785", + "DeviceId": "dc360402-016f-4bf4-adb9-936c47f735e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748314122", + "DeviceId": "2b9677ac-7157-47a6-85bf-e577cb75ec09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328546162", + "DeviceId": "274db62a-5fa8-4af7-8f31-a5659f3ee392", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_269903439", + "DeviceId": "efdbf1ad-b18a-4c8b-a0ea-c8f2d3fb34e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559027089", + "DeviceId": "da764d1b-950d-4a7d-8040-273fa78775d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_716352258", + "DeviceId": "b6db2077-cfd4-4d66-89bf-61a89071d695", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd9c6320-e4e9-4b0e-9401-34fa0c6a9aab", + "TenantName": "Tenant-fd9c6320" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957800248", + "DeviceId": "b4288fd8-e9d8-43fe-b2e2-e37b0b13c45b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379638982", + "DeviceId": "8a63f2e0-6d5a-4be4-8ae5-b199c181d475", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387286209", + "DeviceId": "3b5f31f9-c596-4d5c-a6f0-a10ed1538c33", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425064121", + "DeviceId": "e0c141fb-f3d1-4285-928c-c9b5d98d5de0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521293024", + "DeviceId": "2291b4c7-506c-4b20-82f0-acdde28f9b37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_151142507", + "DeviceId": "2293b090-cdc8-44c8-b81e-f150cf824076", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_663394634", + "DeviceId": "59a28c36-ea49-4d53-9242-f8ca93e32825", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103330656", + "DeviceId": "16fb4c2a-30f0-43f1-8345-77ef633d4f43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_801130059", + "DeviceId": "420f1655-5e76-46bd-85ea-b43237f2afaa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_607848989", + "DeviceId": "1b5fc75b-b073-4442-a323-dbb2e8115a33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_590294407", + "DeviceId": "5cd3c535-25c1-4d13-96d7-4acc1fe5b13b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e59d31f8-4074-44b9-8c5b-dbeb0e9c4522", + "TenantName": "Tenant-e59d31f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534663828", + "DeviceId": "c9c3c33d-cf38-4bec-966e-92c979b3400a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462897482", + "DeviceId": "b32c7af3-c75f-4104-ab16-6e897b3cab74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_143298708", + "DeviceId": "01c2e8b4-02a4-4ad5-a9d1-67cce252cbea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981915045", + "DeviceId": "6e11e10a-52b6-4e77-98da-410f92d3388d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475173438", + "DeviceId": "cd226095-4bca-4b27-8916-f092c1f118bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_447270573", + "DeviceId": "94b31eb9-e460-4ac8-947c-b30e2ea7d477", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606217171", + "DeviceId": "7de85ae5-f1f7-42c3-8e12-5a8437182d70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_928017624", + "DeviceId": "f93313cc-32de-438d-b7b2-d8f24c2ae293", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500016112", + "DeviceId": "961a274e-52bd-44b1-b029-011b2f5e1438", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_832259254", + "DeviceId": "4c3e22e0-5e46-4e62-bff8-95a2105bb94b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_597693255", + "DeviceId": "6729440f-0a43-4202-a261-b1ac644fc95b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e2de9686-4f14-4739-97f4-f90f56315bc9", + "TenantName": "Tenant-e2de9686" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207629018", + "DeviceId": "ee63268e-fbf3-4fe3-ab85-52190053024c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746760236", + "DeviceId": "420ef77b-e9a9-47e8-b466-bf71aef5b849", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309039891", + "DeviceId": "876ebb16-3b5e-4e28-a525-87fcfb033b6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_782684798", + "DeviceId": "f51d601e-befb-4fce-890c-c6a38be5c387", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149802502", + "DeviceId": "74abe973-72f0-417c-a612-d36712ee1270", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659904217", + "DeviceId": "f0d4f42a-a2cc-40cd-94c6-d764166e324f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810416800", + "DeviceId": "4694f75d-56e5-4bcc-bfde-d2e50fcf4f87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960203245", + "DeviceId": "80920e6c-5604-44ba-bcab-28e73ff71d97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678924480", + "DeviceId": "e7c56eed-8fa1-47c1-9d9c-ccf34317a5b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806761826", + "DeviceId": "7e762499-059c-43e7-b134-26f6f14af8de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_123833491", + "DeviceId": "620389e3-57a2-4a80-b959-1d63b9ad79cc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d051008d-0e6a-495e-b392-cf973e42b94a", + "TenantName": "Tenant-d051008d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491787491", + "DeviceId": "1a3c4fd1-39b1-415a-b321-6e69d254819a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909537040", + "DeviceId": "912c59d6-f56c-4f83-98fd-edcf7aed54f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893822151", + "DeviceId": "fa836962-0efe-4f9f-be8f-1ca9357d32dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495399729", + "DeviceId": "5069e2b4-246d-405e-b876-3260f4d7e74b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925911700", + "DeviceId": "e397aadd-5eb2-413b-92d8-d43b18384be0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913754556", + "DeviceId": "a46bd975-4c72-4090-87ef-58d400a6b7c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613048265", + "DeviceId": "9f2f1f20-833c-4390-9373-338bb6fef009", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356564109", + "DeviceId": "3e30e2d9-5e2d-4dac-98b1-ac8eb49b3994", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908592060", + "DeviceId": "6eab949f-63db-4a28-b3c4-d7193972ae74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679950151", + "DeviceId": "190473ee-0484-4da2-a738-4c13f7b3a301", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_142766277", + "DeviceId": "a385d0c0-66a1-4ead-87f3-36e9df2c7053", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "985d6639-500e-4f57-a70e-b02519933cbe", + "TenantName": "Tenant-985d6639" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141288927", + "DeviceId": "7f99881c-9631-4d22-8bf2-5944c0629165", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_251824987", + "DeviceId": "a5134ba4-4fc5-4e10-a659-7109e3d67425", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998889463", + "DeviceId": "b2194635-cdb6-4a38-9581-506317f853ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_544342181", + "DeviceId": "ffa59d84-dbd9-4fad-ac0d-b37f35ff14e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276196216", + "DeviceId": "4d9fa959-8dbe-47c8-b221-906e93c5ca62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_832685759", + "DeviceId": "46c5d057-f726-4ea7-9300-3d62e50e4323", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313663259", + "DeviceId": "c4a1f199-f464-44ef-ae38-1a5d5b16c074", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549094742", + "DeviceId": "fb5d4b52-e03f-468d-9268-a371718ff589", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254360721", + "DeviceId": "ea4f41b0-41fd-4dcd-a683-d93649255da5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995343005", + "DeviceId": "5ec68cc6-4059-4a41-a915-86859cdaf052", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_871938084", + "DeviceId": "6844a0da-8ba9-4128-a72f-53aea7719997", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d403ec02-b260-418d-abc9-a1bfdc950ef5", + "TenantName": "Tenant-d403ec02" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_887140270", + "DeviceId": "573c7cad-ce53-4079-a7c2-ea13598b2aa2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267589270", + "DeviceId": "007746c0-b148-4313-9196-32824a7dd792", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609758065", + "DeviceId": "d21fb8a0-0a47-45f8-a60f-e0db054a5476", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_396251214", + "DeviceId": "34ec9489-65d8-4f02-8115-5bc3a60eadce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_469629314", + "DeviceId": "7123cf29-40ab-4f0b-baf0-a278e1e1bf1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725247632", + "DeviceId": "e7d4ede8-4f22-46b3-b77d-6f75dffc2fba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_267911251", + "DeviceId": "c85f8296-68fe-4d13-886d-919195283bd5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942576890", + "DeviceId": "8b8ab2a4-9165-4dac-ba12-5692016782e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496419348", + "DeviceId": "5bb8de1d-3136-4fc8-9b34-cf5e25a26191", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550878349", + "DeviceId": "51e84913-4249-4d83-8c60-b79c040cc39e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_262413631", + "DeviceId": "2da1d987-49d7-4283-8b1f-f17ed59c85e1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be3724bf-4a6d-4d8c-b9aa-f62c7cdc8b6d", + "TenantName": "Tenant-be3724bf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525575713", + "DeviceId": "0e15a9c7-cf24-44bf-8856-3df411a9c758", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_946651652", + "DeviceId": "7184765b-471c-47b2-9a29-18ac83a70b06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_486397105", + "DeviceId": "43d9806b-3525-4979-98e5-9fb54ce16f18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_691869637", + "DeviceId": "f5652c64-68a3-4fca-a62d-ecbaebfc6c07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_852558499", + "DeviceId": "c05cc114-f4a6-44e0-b379-f3da75435f6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_253380589", + "DeviceId": "f2ef012b-4473-4c59-b33b-e70c5e79c8d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_982620740", + "DeviceId": "15ccc1d1-410a-4626-84fb-a5c41194c16d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_593919294", + "DeviceId": "b03ac613-63cd-467c-9701-770b037fa148", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307080616", + "DeviceId": "de08d005-f6a9-4d75-bd54-eb97ce34dfb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526409611", + "DeviceId": "00df0f2b-bfbb-4f35-bd57-f0dfe114155e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_245067955", + "DeviceId": "53e28b5d-2878-4836-8daa-444e8ae7a755", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "79cfb5f0-6990-48cb-ae34-5f30053c3fe1", + "TenantName": "Tenant-79cfb5f0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_723163087", + "DeviceId": "113ef2ea-9f82-4dd7-8f63-7422a740418a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339028517", + "DeviceId": "9eedf450-5a92-4d2c-9bf1-892cab491516", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891323884", + "DeviceId": "69ee7494-aa26-48e9-b721-7e973082530d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100497368", + "DeviceId": "3ff25ec9-e811-45b2-bdc9-aed16fe939bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741917207", + "DeviceId": "6efa302b-142e-47b9-aaa6-3ba6da57e438", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972627599", + "DeviceId": "f954c675-afb8-4b43-9cb2-1ba0c525928f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_415208277", + "DeviceId": "036857b0-1d2a-4307-9ad2-5a8568afcefe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110309424", + "DeviceId": "d15f88f2-299e-44df-aa13-e15da9edb3fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886731100", + "DeviceId": "ca80a82b-0a8f-4a9b-8345-9e8c0685a055", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488713753", + "DeviceId": "ade16fa0-c718-4101-81bb-a7bd81b05d69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_359157951", + "DeviceId": "f8f26f6f-c075-413b-b3d4-33b1839df613", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "76988457-220b-4104-9333-893606ebcf69", + "TenantName": "Tenant-76988457" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666296434", + "DeviceId": "df2d281f-db87-4053-a98a-cf12c9cce3b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_695474809", + "DeviceId": "8c4dd66b-b3f9-4e8d-b3c3-c74c07b84a36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393619286", + "DeviceId": "64a110b0-de62-4a01-8eb3-7bf441020101", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671515125", + "DeviceId": "d7c63292-8bea-414a-a7ce-2355e8ae54bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103307283", + "DeviceId": "cb1baf00-61e9-4c2b-bb4f-7f633132f506", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_593817337", + "DeviceId": "23ecd847-e301-4c25-b6e7-c64cc4fb335f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_441957301", + "DeviceId": "cb8c1b07-7c53-4fcb-a631-0e436138a23e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172401061", + "DeviceId": "a2850e3b-057d-4cb3-8b92-9fcc02639266", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787893584", + "DeviceId": "f7c94a51-8fb4-4271-8918-628c60bfe0fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164567382", + "DeviceId": "14ec9454-3fdd-4702-8475-8306c3529b8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_383969713", + "DeviceId": "a092ae89-ddbb-4820-abda-ce1990442afc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ce589243-4c50-4ed1-8188-80515bf3803b", + "TenantName": "Tenant-ce589243" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485533451", + "DeviceId": "bf11c345-cf0d-4d86-a96b-11ba8c7f283b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_995952100", + "DeviceId": "1600e6a4-ece1-499a-a63e-dfa3b5c52d41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348285320", + "DeviceId": "516a03cc-ca81-4800-8754-4a95e2f83c15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_310129986", + "DeviceId": "3123db54-7687-4e6a-bac5-6e12052f64b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827714349", + "DeviceId": "ade491eb-e773-4258-b8a8-4b6c7e1c8ce5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_184926676", + "DeviceId": "46511743-370b-46de-be50-fdb0ef6ba152", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846082663", + "DeviceId": "5e8aa3f6-98f1-4a63-b4cc-ca67a8f030b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875184982", + "DeviceId": "2b858691-e5bc-4324-aab6-68fc86fc2423", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_403356645", + "DeviceId": "25b2c36e-ba51-439f-8aea-d56e8a11be70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790560266", + "DeviceId": "279b14e7-5177-4f95-9e4c-acf7849003bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_243545727", + "DeviceId": "e0e53a94-89e7-4521-9b63-657ba093749b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "753c9d3d-2bed-4ede-b3da-f6db3ee0ccdd", + "TenantName": "Tenant-753c9d3d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420330262", + "DeviceId": "54aa0d3d-4ddf-49ca-bc6c-06e548412724", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376167922", + "DeviceId": "0984dbd2-16fc-4f9d-aba9-5101a81182cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800968762", + "DeviceId": "d2c89246-38bd-4ede-95de-2f68e03bc54f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692068412", + "DeviceId": "d98d9e0f-92f0-4583-8b37-4e910e9fc89a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_603547669", + "DeviceId": "8ab48abd-2762-4d35-a684-5d87b2812d43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241735764", + "DeviceId": "faa669e4-5bb9-49a9-964d-425e647fdc46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_833291954", + "DeviceId": "625b140d-421d-45b2-ab2b-7ca89edc947e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866804504", + "DeviceId": "eaf11ffe-463b-43d9-b09d-12780edd0471", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815551104", + "DeviceId": "885be456-0d61-4d58-9b87-4f2671ce2296", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263106993", + "DeviceId": "fd6b8fed-dd17-48b3-8228-bc2f05a0d506", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_949564351", + "DeviceId": "ac65a1b1-3904-4fd5-aa8e-1ff779d5889f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c6c8355b-b657-465e-8329-dcb6b2237a2c", + "TenantName": "Tenant-c6c8355b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392513620", + "DeviceId": "6bef5daa-2c69-4dbd-9ce3-f088e2d8cc35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681991358", + "DeviceId": "2a8399e9-7f92-4967-b215-1caa3600e2d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728937371", + "DeviceId": "346003c1-ef8e-4516-b73a-8f802565a4e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221302674", + "DeviceId": "03ed1bed-5880-4564-9756-833f65369f38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977278247", + "DeviceId": "6da47bd3-32d0-4532-8eda-c9f1eedb6b79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869901231", + "DeviceId": "87060744-bc81-48fe-a88f-8d3b094c3e53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321985777", + "DeviceId": "83f3a9d7-825e-4947-a6fd-980d14d891e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948778699", + "DeviceId": "e2bdac6a-f310-4ebd-90cd-9aa91596fe23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798941906", + "DeviceId": "d9e2868a-a73f-41b8-a118-242b5f470756", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475261238", + "DeviceId": "44a8f415-1dc6-477c-a1b2-1e36bb396c80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_206794778", + "DeviceId": "a564e381-5071-4d65-bc2f-b9221a063959", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9da5b832-0151-461b-b4c1-e23a119d6e2b", + "TenantName": "Tenant-9da5b832" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986589100", + "DeviceId": "e4d7f905-4e65-47a8-8826-be363757459b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538332365", + "DeviceId": "255b53f6-300d-409b-a838-675f6cff8c1c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273252844", + "DeviceId": "25470b80-a06c-4a29-a1d2-9699741b184f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827432128", + "DeviceId": "1a63b992-0198-430d-8868-c405a068bd01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906928879", + "DeviceId": "818ee30f-c239-4860-a3fc-5dd318041d26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138344380", + "DeviceId": "0c8c82b6-a31d-40a7-9205-0ab8106414a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542059828", + "DeviceId": "2a3be74e-ea0a-45ac-a070-e0e7733dc35f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936821566", + "DeviceId": "48571a3f-2072-4ab2-a9fe-f7c8f4f48af1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552179535", + "DeviceId": "2b14a769-fb60-4221-9a02-d8a3951db577", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787856704", + "DeviceId": "940e059b-de30-4d1b-b1bd-349fbca81121", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527089277", + "DeviceId": "020d39bc-7dbc-40bc-8ff6-8a50ca99efe5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ccefaa2f-c1a7-4b98-b18e-299bbc71811f", + "TenantName": "Tenant-ccefaa2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591396706", + "DeviceId": "f6eeaa98-af81-4bd4-b35c-f0355e24a45d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797264294", + "DeviceId": "b69bbd31-dbf8-4ca8-82be-e7266d188948", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288043142", + "DeviceId": "699b141e-ee5b-4101-8dd5-db8a47eb1a8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927907174", + "DeviceId": "896ed54b-2ae4-4f5a-ba62-b0fca8f2ae09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475951729", + "DeviceId": "e11c0b99-5530-494f-b183-cc5d81bff93d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530930407", + "DeviceId": "0f6b4071-c7aa-42b3-96c1-6e57cc5864ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233475783", + "DeviceId": "febc7ed2-57d5-4717-9db1-e7cd3d7dda3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283121143", + "DeviceId": "ece2c118-0482-4061-97f1-a218498c6f66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_350390040", + "DeviceId": "61af9802-93f7-4525-99db-cfd2c03defd8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961065877", + "DeviceId": "02311dcc-8335-4f9b-8acd-2d1fb1e53721", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_421307347", + "DeviceId": "13d66f08-0334-421e-a40c-4cf5eb6705eb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9a7c0916-c174-4274-9e62-48da74a3a4f8", + "TenantName": "Tenant-9a7c0916" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822435251", + "DeviceId": "0529d6e2-43d4-4283-a576-01be35eb37b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790478821", + "DeviceId": "9070655a-e149-4d5c-a861-ce0c7b952100", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_941896245", + "DeviceId": "fdd640e5-7d62-44fe-8fb8-e9a07fd84ebb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_868083464", + "DeviceId": "fc153c81-2ec1-45cc-9084-9ef14aa2b731", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139826822", + "DeviceId": "dd7171e3-de59-4c5a-bfc2-45b41bdc09fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_638535854", + "DeviceId": "650765c4-0c18-410b-8c21-723503082529", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_261678593", + "DeviceId": "e5f592f7-8604-4cbd-a507-88a72807cdf6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_792001762", + "DeviceId": "738bac2a-73b2-4cb6-bde4-82e16a12583a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_685466012", + "DeviceId": "0c9429a7-d466-45fa-8575-625ddd0c29d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_856781356", + "DeviceId": "12d6a3b1-237f-42ae-a47f-83420ab70991", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_867468663", + "DeviceId": "9f304e22-4c7a-405f-bc6f-2edb91d0dd8b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1f82a8d5-bdbc-44bd-8be9-fb44a9881ffc", + "TenantName": "Tenant-1f82a8d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909989711", + "DeviceId": "ac1000e6-06cb-454f-9081-e34194973adf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684279236", + "DeviceId": "2e294f44-d309-423e-aa87-db9aa64ec08c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_971694150", + "DeviceId": "b1dc6fb8-5eb8-4125-884f-b2b835a84c3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796404946", + "DeviceId": "6394ebf4-0be2-4168-9b1f-169461b5eaec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856261011", + "DeviceId": "96f9409a-5f3e-49c2-9768-8f0dd774b631", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_183097215", + "DeviceId": "4a91a868-b589-4d75-9bb9-5168c066eed2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379959740", + "DeviceId": "fbe46506-0ccf-4e6e-b47d-73378e1e6cc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701868834", + "DeviceId": "46d30ad0-125e-4dad-9a4e-227290eb445d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519765436", + "DeviceId": "1dbec1af-f2d8-4e90-bbd3-042249399f54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_291063602", + "DeviceId": "3c05fad1-79dc-4c1f-b3e7-9b8bde2face8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_774263866", + "DeviceId": "3cea1f2b-d661-4023-9670-fb776f349586", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7e400bce-613c-41cf-a72b-c65b6bfcb5a4", + "TenantName": "Tenant-7e400bce" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154797523", + "DeviceId": "0aabbf50-9c20-4705-ba90-55075e6fe94c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_945814347", + "DeviceId": "f7c3337d-e439-47ee-bec8-f0f3040abe8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410191655", + "DeviceId": "b715d583-d028-40df-a08b-c84ab51a09a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433836124", + "DeviceId": "71485e7c-2e43-4c77-91b1-c9eeeffa3f28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162095147", + "DeviceId": "ea5847d6-92f4-45ea-b41e-d7e12fe3ecc4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988751158", + "DeviceId": "961c7403-0087-4d20-a9c8-ea57676d929b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301888275", + "DeviceId": "0ec503cc-1bb3-4348-9ab2-f4d4fc688085", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370278263", + "DeviceId": "e5ec3fa2-84f8-4df3-8191-7bc6acfab26e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356038531", + "DeviceId": "b9887077-d9a7-476b-bd1c-fee6f67c9555", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_192951342", + "DeviceId": "10f0d2dc-1e37-46a9-93bb-f75c92f97570", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_400681294", + "DeviceId": "9e2e5981-d3af-4515-a661-e0619470a030", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4a133ee5-6b69-475a-bc28-3cee033ec3c5", + "TenantName": "Tenant-4a133ee5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927310179", + "DeviceId": "ebdf4eac-dcde-458a-8579-8286d18ab23a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546272391", + "DeviceId": "bb28d799-e33f-487d-a47d-88c1bde6bc94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131473301", + "DeviceId": "971a2299-9e3e-45f2-9c9e-1207c700fe15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_764327209", + "DeviceId": "11175d8d-c0de-4a02-8d99-a460c7ae6567", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_369179373", + "DeviceId": "c8331470-4272-4d9c-a8f8-955e689dd5af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752915935", + "DeviceId": "95155d0d-f6d9-49c5-a317-5b48c067f815", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873483351", + "DeviceId": "39b21a67-40da-4c3f-9292-39d2f99bc0a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662154949", + "DeviceId": "2dc7b52e-bf56-410a-ae06-67674959ab4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930639594", + "DeviceId": "da073ef9-7c13-49d4-afaf-4a24e4a68733", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_174544139", + "DeviceId": "e2be6fb8-3826-4283-8af3-667e8ae9dd8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_697306829", + "DeviceId": "5aaaefea-1777-416a-944f-695fc87b1f7d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7e3b0baa-bebc-468d-a1f3-35c867d8fe13", + "TenantName": "Tenant-7e3b0baa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_735522735", + "DeviceId": "89bf9c8f-a7f6-43cb-9c06-8fef362625f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_945013698", + "DeviceId": "6fbfc1d9-a4af-4b5e-8511-4e4ffe4933c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668153446", + "DeviceId": "26c16206-aa72-404b-abda-761eb896f45b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162426081", + "DeviceId": "391b1d71-05e5-49df-9aba-6029b4fa8f71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984802846", + "DeviceId": "c3296dae-25f9-4d8c-836a-698081272951", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382364597", + "DeviceId": "e45bcba8-0b06-4881-82b5-fac657447dcc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828974461", + "DeviceId": "1cffe9bf-23a9-4667-acd9-9aabe3c622c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471782845", + "DeviceId": "f45a70e0-e996-4377-ab3d-8533ec9ab3e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495078359", + "DeviceId": "726b6059-83c4-404b-8893-f93bef54f6c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532176638", + "DeviceId": "b2291e1e-d11d-4ba7-ac23-2684455e54e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_642865382", + "DeviceId": "eb7d2d57-413d-422f-8638-e8216f22c6ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6f1f46ab-306a-4531-8dba-d8520ddef9e6", + "TenantName": "Tenant-6f1f46ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455518163", + "DeviceId": "172777b5-b7d4-4e08-b548-1b363d4bddc3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781258467", + "DeviceId": "9b644e1f-e990-4507-8b68-5fdea0ed4fd9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579973115", + "DeviceId": "793d3510-7c0e-4f1d-a501-f26350029cde", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860206732", + "DeviceId": "376ce0a9-6611-49bc-90a0-ffa5128a3a63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666263900", + "DeviceId": "2d6aa48c-3d57-40d5-acad-acb9f4ec93d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_684937116", + "DeviceId": "a301dd91-0d22-4259-b2d0-565b0b3070ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_535747522", + "DeviceId": "c1949277-bf05-4b40-b058-8ccd65e2a8f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569387535", + "DeviceId": "944587bc-48d5-43c5-826f-bd41a368dd00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199324056", + "DeviceId": "f3f0975d-0447-4312-88b5-3be243f6f4e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570526698", + "DeviceId": "aee72daa-385b-404d-8962-e95817d6cf35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_400782279", + "DeviceId": "110ce544-b681-4e43-bd0a-9eb325517634", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0f2e8d7c-0818-432c-b544-bba6a905178f", + "TenantName": "Tenant-0f2e8d7c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_111071966", + "DeviceId": "a3f20c23-2fb0-4d13-82a6-a5b3e1afdeee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_554049613", + "DeviceId": "b654c446-4b8d-4885-9c16-f5382070b98b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_961228514", + "DeviceId": "1d89f5b6-c38c-4422-936a-c5e12a7c39a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774847306", + "DeviceId": "b3ba0920-c1eb-4c8c-9be9-7c28230a7575", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640578365", + "DeviceId": "81498e47-c5f4-40f9-a7c4-73ce84fa9894", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818243972", + "DeviceId": "a986da01-d045-403f-8c09-b2a88d6bc927", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614602500", + "DeviceId": "6279aaaf-f922-4f7a-9a4c-34f7075f9398", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550259786", + "DeviceId": "c6613865-3736-4459-b753-efa2d622513f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707699955", + "DeviceId": "4432757d-5566-4ae8-bf0a-02f099e2bdb7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_588807436", + "DeviceId": "c942dc01-855a-4637-8a0d-12623d9aa035", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527561222", + "DeviceId": "b099ddaa-a9e0-4c7f-ade0-b5374d8cc597", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "776dadfd-0560-476d-80d9-144ade9f02fe", + "TenantName": "Tenant-776dadfd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568824421", + "DeviceId": "e5d4357f-0a4b-4bd5-8a90-aa0a041100f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_583646282", + "DeviceId": "15ba50e5-2fcf-41f1-bd22-4adb092c3fca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561337426", + "DeviceId": "e56cb1e1-2a0c-419a-825d-00daf08489b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264904264", + "DeviceId": "017d1974-4b5f-46fb-80d9-7145c74df2d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605707236", + "DeviceId": "aad06b40-e902-417e-ab0a-33e6f31fc0df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879576069", + "DeviceId": "62d6e150-27c0-4b5b-a8cb-9bb64d058d14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_325458870", + "DeviceId": "2eae0021-7907-4003-a5f9-960aeed77edb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300517130", + "DeviceId": "a46d90b1-a772-4a57-b82c-8d8a39ad39f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739304270", + "DeviceId": "bc93c5f3-64f2-4bc9-b645-3f864172dae3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564742896", + "DeviceId": "2444983e-01b8-49f2-a1c0-358f4fd71fc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_340770022", + "DeviceId": "0cbd8d4e-9669-45f5-af24-59e4a2174c0e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "db886f76-91c0-4c34-b1a3-304292db9469", + "TenantName": "Tenant-db886f76" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885639986", + "DeviceId": "8ec4b5e9-5d13-44fb-96f0-5e669e1028a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632293653", + "DeviceId": "7c745880-94bf-4bee-b98a-a33585b8f33c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540372500", + "DeviceId": "85e33136-f6b1-49fe-82a7-7367b6545694", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_235888234", + "DeviceId": "f6d5fd4f-08f2-4a09-bd66-fb7a6cdbbe90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455923313", + "DeviceId": "97a10a29-886c-4c09-b1b9-9521bb69e983", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659792194", + "DeviceId": "c4bd5acf-ef86-4cea-835b-f41e06be9a35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_895827908", + "DeviceId": "ad5e3162-3965-400c-8288-a1e584c15e03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208004815", + "DeviceId": "9aacadd0-407a-489a-abc7-89cc6dbeadf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552918637", + "DeviceId": "4d9e5110-1f22-44fc-ad9f-2579b4cc0984", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640055711", + "DeviceId": "80d22373-b1b3-4c27-b863-25c88e243f10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_178288218", + "DeviceId": "2130caea-867e-4930-bfcd-d3e0f143eb91", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1fc46eb4-4ac0-42fb-b791-7e10de8a06b0", + "TenantName": "Tenant-1fc46eb4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169460678", + "DeviceId": "57081e5a-2d5e-4161-9a06-b1b0440e133e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_965988893", + "DeviceId": "cc9ced64-c49e-4d8b-afec-678a7e64a0d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_105989873", + "DeviceId": "86c07271-2a13-4881-9b17-f7344fec8810", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747052172", + "DeviceId": "bbf105d3-109a-4b48-bab1-7a09bf8f2964", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492486566", + "DeviceId": "22fcf0cf-0090-44d8-9118-5a781e6f6ade", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_409909468", + "DeviceId": "cd24bc31-25c3-4404-b5e8-b4c62b217495", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_224866708", + "DeviceId": "c46fde2d-749c-4526-b1b7-98e37d456a55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_535455573", + "DeviceId": "e1d0d4b9-8dc9-43a2-b00a-5361151a89e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672679386", + "DeviceId": "9948244d-f2c2-478a-8908-ae0fed081693", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625771978", + "DeviceId": "a1d7b636-e657-4c78-b759-ffb44863c728", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_863677562", + "DeviceId": "0c84f5b4-d078-4258-92d9-c065706ca387", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0c21ac2a-02bc-4f78-8509-7f560413b2c1", + "TenantName": "Tenant-0c21ac2a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717883577", + "DeviceId": "d934d8be-4f15-4ef4-b5c7-9d65256a5276", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365506605", + "DeviceId": "25a0dc28-0826-4f32-941c-be6b3044cd56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273831456", + "DeviceId": "75678eb1-7d5b-4bd0-a3e4-07e91783d69c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304664315", + "DeviceId": "67d8c7e8-4a04-4ce8-97c0-156baa9626d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372749126", + "DeviceId": "78d86e64-f172-4c68-9e3e-06dbd0b65e38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109691710", + "DeviceId": "1d67909d-9e66-4a08-9c11-6c9eedda5c05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225915716", + "DeviceId": "acd2ec9f-bcab-40e2-8b1f-abcd7f3f672d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836573665", + "DeviceId": "61f4ecc6-36ba-48a9-9319-2293721ed653", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_385371425", + "DeviceId": "19bd7d9a-a8c0-4c84-8d81-c2efd4ea89eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297148904", + "DeviceId": "98459447-1294-4bb2-8d30-b72e360e9d49", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_268255703", + "DeviceId": "8b2c2ea8-fbb1-4c15-be6e-61d71d82a744", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a5f32761-7889-44b3-af1e-0c80b5579037", + "TenantName": "Tenant-a5f32761" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_915551963", + "DeviceId": "42a0e0fb-b0a3-48f5-8a97-e22f0a43e171", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535052359", + "DeviceId": "9e992717-4e63-48d9-a65e-d217b232e1fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_361591490", + "DeviceId": "364af4c2-966d-4aee-8f63-bcbffe592c8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765421458", + "DeviceId": "49480051-a3bd-4236-8912-7e6f73228514", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_363691056", + "DeviceId": "e7f935c6-8fab-4d8e-8fb1-25c648d1a502", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798305143", + "DeviceId": "81ef18d6-ea78-4eae-b24e-267d0da10bb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_555892695", + "DeviceId": "cb713475-27ad-4028-925b-4e8d2bd8e7c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_839140155", + "DeviceId": "913602a1-8322-47a4-9106-07a8189841f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868194533", + "DeviceId": "21e3e026-38b3-4c88-a94d-7948cb9338bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274800936", + "DeviceId": "504b8932-ffed-495b-bba3-5f989231ae6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_370070232", + "DeviceId": "071723a3-def0-4610-8f9a-1bdf98728d3a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d0cd48ad-c149-46f3-aec4-37847474665f", + "TenantName": "Tenant-d0cd48ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257648503", + "DeviceId": "d086f516-cab9-425d-80e6-b31a01ab3dcb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114912422", + "DeviceId": "f51708ba-2b1f-44c5-b26e-0fc461454b28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316743403", + "DeviceId": "09955b6f-c11e-4eed-ba7b-72119069e55c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_361014682", + "DeviceId": "9df950e7-077b-44c1-8fec-fbb90ba438cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839801173", + "DeviceId": "1087fa88-1bbe-496d-9d6f-ef55b48ce74d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_261211956", + "DeviceId": "53872a51-82b1-44a9-a927-942186b5150b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329717508", + "DeviceId": "f4ecaf4f-ff72-42b8-b745-c57e246f4bc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608821473", + "DeviceId": "fb81f805-9c04-4492-b458-556a5080b048", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693892553", + "DeviceId": "2170f48b-c2c9-4297-8c97-cfcfb0f42f88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964486935", + "DeviceId": "2c7a270b-fcf2-4fd2-aa61-8181134def17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_825162770", + "DeviceId": "5691ffaa-eb19-473c-9dc7-9489f341b064", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7fd6cea-c60b-4a67-8be5-0d62c4cd7852", + "TenantName": "Tenant-b7fd6cea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954881980", + "DeviceId": "e8f113f6-a412-476b-af1e-de99c86f39bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193400123", + "DeviceId": "63166921-fc34-4c75-b9ac-e8305392dc0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167936058", + "DeviceId": "9893de01-d439-47cb-96ea-286d839b3a8e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563110385", + "DeviceId": "0b28a81d-8d33-4ab6-943b-4f4e0eda35ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_194320852", + "DeviceId": "aa92c6ff-8d8e-42a1-99c7-b7f0bfc893c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787101795", + "DeviceId": "c9d8508f-e360-41f1-b13d-e4db61f29d04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790351088", + "DeviceId": "623661c9-fc2f-4377-974d-1e6912a40787", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_776130850", + "DeviceId": "da4b0375-363f-4375-a5bc-de7b6279930c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127639917", + "DeviceId": "b9bf12ad-e624-4314-b891-98c7850d8c0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755124438", + "DeviceId": "9151711a-0f3f-4d15-952b-a30a46d0e0cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_220761227", + "DeviceId": "07133417-d66f-44bd-943d-985e1a18a29f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9d1b7eb8-64c9-4bce-9e32-af954da76960", + "TenantName": "Tenant-9d1b7eb8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_978812052", + "DeviceId": "fc401e36-7910-49e1-b160-fbfcb09519c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166025124", + "DeviceId": "88d6fa57-ebe7-4967-8266-192797519a46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_983030968", + "DeviceId": "a5bcdbaf-28d1-4660-8bda-c433e9fa0dec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827471205", + "DeviceId": "3216be5f-ac90-4f17-ab97-de1b39b6a917", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365108836", + "DeviceId": "eb545c85-7dad-43f9-8c7c-ce153419a3f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656921731", + "DeviceId": "fb7ec380-5818-4c7b-bd62-d6ab050e8027", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_180062968", + "DeviceId": "c131dfbe-575f-486d-8605-1939720ab8d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288623447", + "DeviceId": "eb9a9eb3-abcc-4775-8a16-1fbd39652ef3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405269808", + "DeviceId": "8540c0f4-80ed-4f81-a1d9-f6cbb153fa41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_959277546", + "DeviceId": "b1f9d023-d084-467e-8630-cd34c09f9777", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_627788463", + "DeviceId": "f2b6e919-5a3c-41a2-82c4-048fef48ea0b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ab88a2b-5960-44af-8566-99bb9eb7a8d8", + "TenantName": "Tenant-2ab88a2b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836842316", + "DeviceId": "b546966f-8a25-4b88-8145-c544459cec4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_300507648", + "DeviceId": "fc349218-1769-4e67-a673-b6d7f06e9074", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107668395", + "DeviceId": "bc89e97e-3b0a-4692-9de1-15ea923d9963", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824175726", + "DeviceId": "b26184d4-dfc9-4952-a1da-3662e7e65a5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100970936", + "DeviceId": "19270658-958c-4230-86aa-9a2414223ca6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899035380", + "DeviceId": "89c5e29c-b037-45da-b999-463eebd7b0fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730834292", + "DeviceId": "2353f186-fbbd-40f3-be4b-dc35254810bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_538387389", + "DeviceId": "6a942b0c-c195-4456-be14-507ebefed84f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_396853098", + "DeviceId": "5582d177-6b88-4aa6-829f-8368b09c39a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148943911", + "DeviceId": "7c1447b9-1f90-488d-9123-5d77a50a9c3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_459395939", + "DeviceId": "3a6c6220-ea4e-4598-a533-59fa6b838cc3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0df2e65b-82d9-414a-8795-df1d97214366", + "TenantName": "Tenant-0df2e65b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_344864821", + "DeviceId": "148de186-bc33-40a2-bf9d-27ea8b34d433", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954813240", + "DeviceId": "e87a1786-00e1-4a74-a667-005a3fd1f7b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690896622", + "DeviceId": "20d9bd00-7dab-4943-9972-cce83f658c22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_848308646", + "DeviceId": "b74a424f-cd82-46b2-a48e-2d6eb2f9d645", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_750170698", + "DeviceId": "bf2066ae-4d4a-4366-881b-4d7da53ffc2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550477294", + "DeviceId": "2171d3ec-b10a-45b0-8d74-737bd9c748bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250100192", + "DeviceId": "244f89cf-6477-4b5e-9f62-2d236f5f8470", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850965382", + "DeviceId": "70e0f56d-149e-4b15-a39f-c012f1d00a11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862331538", + "DeviceId": "2ab21c5f-a016-4bc4-a2bd-fb8b3c773e04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_248714916", + "DeviceId": "78a2bfbe-76e2-45b7-9327-354b4c275738", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_363347266", + "DeviceId": "5e09ffbe-048a-45eb-8760-7f3dcc1b45ef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e611f29c-2de1-4d30-90f9-86cfc4add25f", + "TenantName": "Tenant-e611f29c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508308482", + "DeviceId": "01c4464d-4af6-4f5c-aeea-c494721273cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210610251", + "DeviceId": "d11d4dce-fe7f-4c8d-9081-d92d039aba8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591929124", + "DeviceId": "1a757474-715c-42c1-b207-8ed2b9dc20d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250527352", + "DeviceId": "f011f0a9-5f96-4886-94de-d4f5ac47e8fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_809182842", + "DeviceId": "ff263ac8-9ca8-43d8-a615-b52fc51cc1ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411844925", + "DeviceId": "03d04978-97bd-490d-8901-cd7706ecd9b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319200276", + "DeviceId": "19617fe9-218c-4cc8-9cae-40a0c936440a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397072137", + "DeviceId": "02bb9ba2-bd8c-4473-84f0-dbae50eff5ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270017920", + "DeviceId": "fc4e3bb0-ad6a-4d30-a4d5-d0193c6aac67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_350436151", + "DeviceId": "597f5c57-206e-4556-8901-f8081b9accf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_770095304", + "DeviceId": "3d7b868c-7738-4ea2-9063-d278ff73bce0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "84abfbb1-153d-41b8-a07d-62c68712c4fc", + "TenantName": "Tenant-84abfbb1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_861114291", + "DeviceId": "c04bf263-f07d-46a5-a78c-ff80830b226d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704862567", + "DeviceId": "7605ff08-e14d-4f87-9fff-79c527deee44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_637476950", + "DeviceId": "cf4463d3-1e67-430e-bf60-e2e75bbcb112", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_421939819", + "DeviceId": "941f0d65-39f4-4d3c-be2e-01d40347c2e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609148508", + "DeviceId": "733d574d-2477-4414-a87a-b851360474ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246979443", + "DeviceId": "03c679e2-afb7-4f64-816a-91fccdaad6bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256988287", + "DeviceId": "7a4210db-eeaf-45f3-b1f8-c079e57fff15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270304014", + "DeviceId": "8618bc28-9049-42b8-b2b5-b07f30701164", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148084856", + "DeviceId": "54c6fa1c-f26d-41d4-9a9a-4728d3be0667", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613447367", + "DeviceId": "ea6540f9-b26e-4d76-95f2-5a7ca13dffb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_183820301", + "DeviceId": "852a2f7e-c7d0-4fda-97d1-3337a37147a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "47c82779-fb5b-4637-95f8-c101299fba7c", + "TenantName": "Tenant-47c82779" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365051924", + "DeviceId": "efff62ae-5634-4ee0-81be-c4d0b9f3e143", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382465515", + "DeviceId": "e0893115-d43c-4abd-9333-5d246295a74a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263547601", + "DeviceId": "4a652fa6-ce5f-4257-b0fd-a847b65810ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_370142778", + "DeviceId": "2b41965d-fc8b-40c4-980f-8a4af44e0c0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732509408", + "DeviceId": "7d6bd730-aeb4-42c9-895e-8fc0abd34d81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_353899199", + "DeviceId": "1652e021-a761-4cd2-9bd3-f5425b94f2ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452230205", + "DeviceId": "81c6879b-0fea-487d-8734-1a1bc8c178f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862397827", + "DeviceId": "7b971200-3a47-4ae7-b26a-98768467e29a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440558909", + "DeviceId": "1dcbb531-631b-4b19-844e-95619ebff178", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430813082", + "DeviceId": "f0761cc2-6bbf-4154-a81e-dd0923e618b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_559287680", + "DeviceId": "495be066-b392-448e-b070-ad01329ec97d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "556ef410-f82e-41bc-8404-4cbad0c9e347", + "TenantName": "Tenant-556ef410" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_630778211", + "DeviceId": "8b57baf3-c72e-47e5-b757-f8ec64f68aa9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565078154", + "DeviceId": "81a0e37f-0577-4d79-998d-f13a3078356f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462971137", + "DeviceId": "57eeab1a-e3de-4ba9-9a92-9cc4c50a62f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694643901", + "DeviceId": "6b9f9104-b79f-47ef-91e0-1fc34a7d6a52", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944067876", + "DeviceId": "45358026-12e4-4042-b1d8-52ef980605af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878472282", + "DeviceId": "8a103768-7fa5-434c-a539-99984c83304b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793316343", + "DeviceId": "6b1bd585-20e9-4dda-ae27-e80975349fa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181383738", + "DeviceId": "73ac8297-3a9f-49d4-bf3a-5041903ad0f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760356839", + "DeviceId": "a029d2f0-2db4-4f04-b374-ab092599e07c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972003856", + "DeviceId": "ef802633-5c5f-40b8-a7f9-174de1172135", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_439384068", + "DeviceId": "5677029a-db9e-4c78-a234-1b84a0f728f6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "67e06797-9675-4aaa-b412-cbec196f77dc", + "TenantName": "Tenant-67e06797" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167685769", + "DeviceId": "0e68dba1-eef8-4a61-a02d-998e2b05d62c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402592065", + "DeviceId": "823aa05c-1290-4b36-b533-47a1b6f25e21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505902940", + "DeviceId": "5981ca0d-426c-40e0-99f1-bcf1acbd895a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_923444678", + "DeviceId": "26e74762-6e5a-4d09-857e-63e3948f7453", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968474279", + "DeviceId": "c673f1a8-394f-40d2-a518-8b998cc5610a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299446302", + "DeviceId": "11113518-bdbc-4a0d-964b-784a6b5cb536", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_572502685", + "DeviceId": "46e77209-b26b-474e-801d-1ce18c744178", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545061090", + "DeviceId": "25fb56ed-fe15-4583-afb2-0fcb98f81ba3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451741415", + "DeviceId": "c254297d-d5f4-4cc4-845c-334e9f75c02d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667054620", + "DeviceId": "78ab6cc3-6d98-4384-89d6-4be107245cbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527590910", + "DeviceId": "392302dd-c20c-4b99-8008-d33d5f239f3e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a966f259-c688-429a-a0d6-47693475cfe1", + "TenantName": "Tenant-a966f259" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866558481", + "DeviceId": "90596eeb-5648-4486-ae6d-c7c11753cd88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360227480", + "DeviceId": "75239ce1-51e2-456a-8470-cb6582ff11b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_188826757", + "DeviceId": "8702e8c9-4c56-45bf-afeb-565d2bcee6a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275557238", + "DeviceId": "a2a43c34-4fbe-40ab-9e32-d07e91b9f78c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587488492", + "DeviceId": "7cc8afe6-3752-4170-9499-7f506d1fca8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173273199", + "DeviceId": "5f922097-2afb-45f1-9a28-e0c8939db19c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_403528159", + "DeviceId": "c1bab202-dcba-4f1c-abc3-6d3f209ba63a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654128856", + "DeviceId": "5fc7445f-c2c8-49ee-834c-c4edea61a2dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232057302", + "DeviceId": "ade399a0-7575-4945-97c4-a3845a5cf1d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_847747348", + "DeviceId": "f98a0434-4e43-4e55-99c4-dc19044a8f1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_410439752", + "DeviceId": "7f8387b8-0a9f-48bf-8c7a-233d9a3a64f1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0866581-de41-4046-9dbf-cfaca32f0852", + "TenantName": "Tenant-b0866581" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233218168", + "DeviceId": "11881f29-458c-42f8-a86a-3cd1909ad403", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362647415", + "DeviceId": "91f21520-0ae3-4c2d-9ed1-abca96d21e2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319471260", + "DeviceId": "7626efbb-8c77-496b-8ea2-2c1573a765f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916772151", + "DeviceId": "c004ea6a-da73-4d48-9823-d82c6b041f14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113928967", + "DeviceId": "2220b9b3-6460-40c5-aa87-dadbedfc5d25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_617448743", + "DeviceId": "f1a22feb-46da-41d6-ac06-c618e5b4ae53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546897375", + "DeviceId": "e440ee7c-d9fe-4b76-a472-b8efd52b04c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585665109", + "DeviceId": "b962a07a-d498-431c-83d5-2b8acbb8943b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_845984995", + "DeviceId": "c8ddc968-8c8e-4ebb-9e8c-e9d7da6178c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292038193", + "DeviceId": "0551f876-257c-4dc3-8a1c-08165dca4153", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_191344494", + "DeviceId": "55c9ba94-972f-4325-97ac-19c8b3d6f561", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3255cdb3-2198-4722-b000-1a27d7dabf14", + "TenantName": "Tenant-3255cdb3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587897396", + "DeviceId": "d03b0bf8-f292-4a2a-a773-fef08d73f995", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605381512", + "DeviceId": "09a05bb7-eddb-4687-88f6-7151235ecbd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_994928009", + "DeviceId": "b6b79299-779e-4e1e-a20a-2e6b852ff7e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462478399", + "DeviceId": "f4d18ca1-b871-4279-87ac-7252a32e2b04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488124296", + "DeviceId": "fde319b8-3f23-4dbc-9cbc-41613345584d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841184834", + "DeviceId": "1f8808ef-1a4c-4fbe-ad5f-6aa566f82765", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739770825", + "DeviceId": "d96088fb-a18c-4183-b3af-48e144287e3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152484674", + "DeviceId": "09bc61d3-ad46-43e7-9fba-a6e44a68ee06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730029536", + "DeviceId": "b56a2458-4dc8-4a1a-862a-d3aa5ea82c45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312356046", + "DeviceId": "db1469a0-0729-4151-821a-54adfbe5f1c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_779953957", + "DeviceId": "95d2037f-bc34-43c2-b3e5-7cb8270c6428", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "61e0ea63-f0c0-48ae-9aa5-5efd32688989", + "TenantName": "Tenant-61e0ea63" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509274281", + "DeviceId": "acd947c5-a2a1-4c4b-9f45-6cbe76935a83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_941830663", + "DeviceId": "a665db26-7b82-44b4-8b7d-386f272eab89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_785640898", + "DeviceId": "43040492-eca8-4abb-abed-3afd1c718597", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339192346", + "DeviceId": "083c2f27-aaf4-47ea-ad9f-2a1ecbaeeaf1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147739559", + "DeviceId": "7325a7a4-81f0-47c1-8e2f-53dc219052f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766695278", + "DeviceId": "d5039f83-ed50-4a2a-b24b-efc7a5f240ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_420265291", + "DeviceId": "b3e78840-e3d5-4d3f-b4b9-400d164dafa0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172776610", + "DeviceId": "89731f68-fe7e-4d9e-a069-9eff899eeee4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860763827", + "DeviceId": "ffb01284-5aca-4b3c-a4fb-5e3e9cef9f71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341764568", + "DeviceId": "f475645f-2280-4141-8032-6a67dcc8ed0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_680727815", + "DeviceId": "b40acdb6-b438-4dd8-a25e-8823ed6a233f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f3a28f3f-3a92-496f-b3ca-9cc6ed95b244", + "TenantName": "Tenant-f3a28f3f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781304500", + "DeviceId": "2c411aa9-fdb8-4f92-a947-62c29cfbe894", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600320217", + "DeviceId": "ff29b8b0-bb33-4dc3-99d7-653f0f783a08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745640550", + "DeviceId": "59a5cebd-f373-44d2-a05a-8c37b4a2d95a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548675332", + "DeviceId": "f6bd518c-1b0c-4a23-a46e-6a656b87e89a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451780333", + "DeviceId": "d8a00d5c-4b0a-43d9-87d9-66e1cbfeff0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_722346203", + "DeviceId": "949f15aa-0681-4022-8fd3-48f0105e6e43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534467681", + "DeviceId": "db24a48b-ac37-4eaf-952d-720398d4d348", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838727068", + "DeviceId": "bd990065-ce4c-4d0f-8c96-13806e467a04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119758626", + "DeviceId": "c0705d8b-9e37-4d08-ad6d-fd2625d22c04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233356732", + "DeviceId": "e4a18ee6-6b4f-43f5-9edb-f3d1af808eb5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_499767214", + "DeviceId": "e192ec95-863c-406c-9231-93f3a1951aa3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7d15c06a-caaa-4a10-949a-e431b1243ef4", + "TenantName": "Tenant-7d15c06a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158257327", + "DeviceId": "686f87a2-6cbe-4fd4-a485-8ee9b1796c5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298503162", + "DeviceId": "484196a4-e71e-44ca-a3f9-269ac4c010e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_470625890", + "DeviceId": "b78f2356-9ce0-4663-9f3a-a5f36dac9f08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_449407790", + "DeviceId": "77c84d62-90c4-49d9-8a62-a769a6f36dc3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_138190148", + "DeviceId": "50d8840b-dd3b-435b-8761-22b49a5f9d4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626193790", + "DeviceId": "3f7913ec-16fd-4d6d-86b5-880e5492d028", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_983610512", + "DeviceId": "fbab7ad7-d34e-4c7a-adc4-3c717f617aca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_976221343", + "DeviceId": "53de1607-950d-496b-a7d5-6554510ae1e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155916422", + "DeviceId": "0f344ee9-85f1-4b8c-b4f3-9b774dcee05b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_946726520", + "DeviceId": "10f3c59a-10c5-47af-af6a-7d976754acaa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_136887713", + "DeviceId": "2d66c705-f04b-4859-a51d-1fdf77a3440d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ae73853-48cd-4fe0-ba67-76a0fccdc5fe", + "TenantName": "Tenant-0ae73853" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730083057", + "DeviceId": "1f7e6c0d-d498-470f-bc06-beae31aaefa9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_785225857", + "DeviceId": "7c620dfe-7bd6-4665-8a7e-97947939178a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787650411", + "DeviceId": "0de8a105-cb45-4db6-bc75-1628922e8032", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613630085", + "DeviceId": "392ae9a4-98e4-4708-821d-7801dbb77bef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518303500", + "DeviceId": "ce8c1ef1-9ee2-417c-ae3f-69a4e8a09bc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246274918", + "DeviceId": "e735e21a-7236-419a-a070-38c959627f59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_663449541", + "DeviceId": "38eaa587-9294-4596-8fda-3383a8c90e15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102979037", + "DeviceId": "0f310901-6eaa-4f81-a285-e9d5c392a14e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146500584", + "DeviceId": "778e284f-b316-4f83-9948-624018cfab0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_253717669", + "DeviceId": "f7e15a12-22ef-432a-8542-ff0749774246", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_162542269", + "DeviceId": "953a6f8c-b043-4cd5-9a17-397c048e146a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "44def3ea-08d6-4798-9e11-30ab614c0810", + "TenantName": "Tenant-44def3ea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102360115", + "DeviceId": "2c3a7441-45a1-4218-95bd-d08815829041", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_478908234", + "DeviceId": "8dfe6cfe-fc19-4fc0-8cbb-847f5e1e16b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_447067693", + "DeviceId": "dcee262c-a496-44aa-bc5d-03b2e8950dad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632909418", + "DeviceId": "dd4afd8f-6847-40c7-81fb-c5f5d4a329a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_733715562", + "DeviceId": "362bca0e-7bfa-4e09-9fc9-fdcf96273133", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_294257686", + "DeviceId": "44cbbdfd-6448-4804-848b-98c4d269504d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_118748931", + "DeviceId": "a3180321-559e-45c2-a5fe-605084c1a0e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382630113", + "DeviceId": "ac4bb190-bf9c-46ae-ac1a-04c49524d773", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902855129", + "DeviceId": "b11bf8e0-4e24-4f5e-8269-0060def83705", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_682115786", + "DeviceId": "873dd162-f51c-47e6-8c52-841e26774739", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_566714509", + "DeviceId": "924e5648-4420-4e3d-a7e4-643d37afdd1f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "41758272-a9e1-429b-b7e7-adb32cc59e80", + "TenantName": "Tenant-41758272" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328720997", + "DeviceId": "6e16e7ed-460d-4087-9db6-4d1b7bdeb13c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_510776450", + "DeviceId": "691988af-6706-404a-8eb9-19b1b6cd6dc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339240438", + "DeviceId": "20768563-5569-490f-ac05-2abc5a6bd83f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521986800", + "DeviceId": "be132810-5fa7-4fba-9e57-14da36bc5145", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467141285", + "DeviceId": "60b43877-d0c0-4a74-a50b-9b70c3aca922", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580000093", + "DeviceId": "4852c0c2-84e9-4f41-9b80-d3fbbc5a9535", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568322626", + "DeviceId": "519bc1b8-39d5-40fb-8cc7-a9154012dbe2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433932905", + "DeviceId": "dadaa228-bdad-4ca0-84b4-78a5f1e3500a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400183780", + "DeviceId": "4282ba2d-4e73-488b-b789-5e6d414ef433", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114976566", + "DeviceId": "286375c2-62df-42c7-b7af-7a982aed3b37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_516554564", + "DeviceId": "14388557-b76a-44de-a380-01aa0c11544f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "61a9a670-bb0b-4031-a216-2042666f6d62", + "TenantName": "Tenant-61a9a670" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275334043", + "DeviceId": "0e754544-5c17-4a2c-8203-794424e3e77d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_815607087", + "DeviceId": "ddaa551c-ac99-44a1-956d-150f0b234520", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414721200", + "DeviceId": "74a365b8-a603-4c16-aeb1-1a0e0b6ad7d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388173152", + "DeviceId": "a846c0f5-259f-49f8-9e28-813f7b6e6c0a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_411783301", + "DeviceId": "9d535969-2c1e-40a9-9552-bb6f78f8930f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485947239", + "DeviceId": "ac3d06a9-f696-4189-9add-fb941f5ae8d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508957465", + "DeviceId": "0ebb8bfc-fb0f-46a9-95ff-484d84b4ff09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479822337", + "DeviceId": "8195dce0-4e32-49e9-9895-9ec5e9ca4ffe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_113624196", + "DeviceId": "af01727e-493e-435e-b4e7-74ae9e6f7d02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942801443", + "DeviceId": "6f596221-85d0-47fe-8c0e-53b4c3778970", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_999120555", + "DeviceId": "f120ee1c-9ca3-451a-a658-2859c1028d81", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c4446751-2eab-4cd9-9788-b1863a79f0f4", + "TenantName": "Tenant-c4446751" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420697763", + "DeviceId": "fc495f33-80d4-4b43-9041-739dd4ab600e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862019028", + "DeviceId": "d526eb6d-40e6-4afb-adbc-e3f7b4cc5d6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851611477", + "DeviceId": "a10dab87-4ed2-457f-a430-eaf632ed055c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_634426405", + "DeviceId": "c4cf92d3-5664-40e4-ae15-76fe82e67aad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416772442", + "DeviceId": "3d15f980-88b3-4060-a650-4c82b843e479", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316097380", + "DeviceId": "dc018c34-bc2b-432e-8bb5-3a8b0f09766a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_934636900", + "DeviceId": "9a43b63a-638f-4a18-9030-c3cdcad20599", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165091465", + "DeviceId": "6fcbc5f2-2f80-42e6-80ec-f8e5beed9686", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559837170", + "DeviceId": "98a13541-0c78-4552-ab45-3a9a38b0e7af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143727126", + "DeviceId": "e4b973ec-7283-4f81-81aa-d8e303a406e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_287102395", + "DeviceId": "fda9b490-2f61-46e5-b656-291d756522a9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7d3f430d-858a-4aa8-a92b-8845d95c8f7d", + "TenantName": "Tenant-7d3f430d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_181089422", + "DeviceId": "988d4082-0995-465e-8370-ac3151013eea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874857567", + "DeviceId": "b0ddc21d-7e0d-477e-bdbd-13d2152161e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_629908006", + "DeviceId": "03420edc-acfe-424f-9264-49f8ddd5fc57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504432758", + "DeviceId": "cf595ed9-37a6-4a87-a86c-3f76836a45f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873975646", + "DeviceId": "512eb9d0-521c-4205-9ab1-1ed8d32d9656", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815624914", + "DeviceId": "01d7e180-5048-42c4-964a-83950a2d55f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316625183", + "DeviceId": "cc7f437f-95d2-4c32-a798-50cd4da44807", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573954587", + "DeviceId": "6c55c431-0512-459c-9f24-e302369beb96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145756965", + "DeviceId": "62f012b8-9b81-4a9b-89c0-89d3d200be97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102303788", + "DeviceId": "b1398ab2-d1c4-4b21-ad2d-d038fb5b348f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_925679961", + "DeviceId": "bf455093-17c2-42f4-a8b5-16d688262b01", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3b3d0ead-3121-429e-9b82-ff446f001e18", + "TenantName": "Tenant-3b3d0ead" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323166871", + "DeviceId": "9d88f73c-9b45-4392-9a8b-148d6b767b18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525711922", + "DeviceId": "3f2325a9-904a-4d24-a4ed-488f8bc9b1f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858322052", + "DeviceId": "3cf2031a-777c-4afc-92f1-b9e218be8f33", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879789360", + "DeviceId": "6d609df1-3149-461e-ad7c-67b2879d07fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207913889", + "DeviceId": "89cc0ed7-82b4-4901-8ea0-f221e8ab91e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612894970", + "DeviceId": "87933533-b932-410d-b6d9-4799d125ea8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539689035", + "DeviceId": "cb7e7fd4-8643-4c40-beaa-2f5022020f2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_895826037", + "DeviceId": "fc5b51cd-4657-4689-959f-746d1e746ba8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625596623", + "DeviceId": "b152c12c-1173-44ee-83a3-27a84ba51c96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380610970", + "DeviceId": "a7e844d0-daa0-4b33-9b86-236f134f252c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_490739559", + "DeviceId": "cd72316a-b05a-46eb-b2e3-71c81e9a67ef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6f0ff316-ac4f-453d-9ed7-1f9c2f54ac96", + "TenantName": "Tenant-6f0ff316" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155496889", + "DeviceId": "852f630a-6097-46d1-b6c5-9b4f7b819071", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223352099", + "DeviceId": "d47ba532-4e0b-43f6-95f2-07cab58f6837", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940815418", + "DeviceId": "21d78686-03f3-4e2d-b76f-814168ec45a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652298975", + "DeviceId": "a5bd1766-0e63-47d7-aae9-011dfdeba5df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_331650206", + "DeviceId": "7f4436e6-c94b-47a9-847f-62d9a630da0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626485359", + "DeviceId": "cf879ee9-3723-404d-bdab-d334c6fea1a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941788151", + "DeviceId": "1c55bd89-9f85-4be1-aa6b-0d564d5c7946", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899213556", + "DeviceId": "39c6b444-9fdf-4d4b-a801-817a94e19da2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636029851", + "DeviceId": "5ea32a97-6a22-4472-bb73-561a48c724e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_226661800", + "DeviceId": "41b86d51-dea8-429a-8ee7-ab6384514565", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_519202059", + "DeviceId": "d723d6f2-483e-4085-8ad6-074a76b0ae2a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "44221802-fd83-4fc3-9bf0-2c14fdb4ba6b", + "TenantName": "Tenant-44221802" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_502714128", + "DeviceId": "37fb62f3-e6e0-469f-99d6-bf421f798ca3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417698020", + "DeviceId": "726601e0-5359-4560-baf5-6cf6433b6020", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_637904320", + "DeviceId": "552a8b6c-9a00-495c-8901-1180538fb0ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287251282", + "DeviceId": "e7aaae84-9042-473e-8f10-9b1960ec2aa4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773833822", + "DeviceId": "ea9b881e-c27b-40ee-9899-b78d5ec01c70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508544910", + "DeviceId": "1f406207-29bd-4dc6-a2ab-ff1534c8e4a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854030136", + "DeviceId": "c626f92b-2907-4dce-8ac0-4d8eb1c0f920", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_870351519", + "DeviceId": "2c57ac66-7d0b-4cf5-9881-19406b4a3fb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815182215", + "DeviceId": "45dfe59a-8946-436b-ae4a-3ae150b4b22d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260407070", + "DeviceId": "01e06977-7a8d-4676-9aed-284c809efb47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120385933", + "DeviceId": "25fa0fd8-2ed4-4b56-a413-18e7358a8389", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf06c025-893c-48a0-847a-cf753502b9a6", + "TenantName": "Tenant-cf06c025" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102925981", + "DeviceId": "fdb8980b-3fb6-4523-bcac-b40ce0c6c170", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142012243", + "DeviceId": "42574cfa-c309-4680-8725-9f02b33ae942", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405314335", + "DeviceId": "c1433bc3-7300-4b80-9ea9-49c0c4a3a31a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720985015", + "DeviceId": "afad934a-a792-4c70-8b72-7c19f3a200f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802463972", + "DeviceId": "6613c0f5-eebb-4ec8-886d-0ee0ac30588e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_106245912", + "DeviceId": "f6fbcb78-3dfc-44bf-83a1-58d692141e69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490162880", + "DeviceId": "f1cd42fb-3eae-4d3a-a399-e49b21646741", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319975498", + "DeviceId": "c7de2a25-d419-4859-bfb2-c21f211c94e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554022269", + "DeviceId": "0a16eb03-a25a-4f7f-906d-b5a6d169c54e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_983343721", + "DeviceId": "9a6c3594-ca22-42db-932a-e57fdea78a15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_926262673", + "DeviceId": "97989fc5-59ee-415d-ad38-4492421626c2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7acab97e-42f2-4699-8972-b9fb60136c3b", + "TenantName": "Tenant-7acab97e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210205849", + "DeviceId": "50d31572-88b0-4cb0-86af-5fe8c8d6d73b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444163679", + "DeviceId": "a68be230-1dd2-45c2-8b44-bea51dce8cab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506765821", + "DeviceId": "d81d7627-61dd-47b8-a19f-6484f9df91b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403419320", + "DeviceId": "22a51bed-cd8b-4c9b-a5b3-a25c5bd498b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_603930683", + "DeviceId": "ab561398-bab5-4453-87c9-66b9559f0c57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196290394", + "DeviceId": "a976dbf5-e32a-474f-89d9-45b702ff0f03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595171937", + "DeviceId": "71a77ed5-ba54-4574-95e5-0cb3afcd833b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631029165", + "DeviceId": "331899d3-b2cb-4911-98b0-fc1a9f19ce36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728191682", + "DeviceId": "3904306c-9c2a-4275-8b1f-25a3da1966a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358424778", + "DeviceId": "617ddb33-2973-40f9-97db-a0eb38e763fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_543704762", + "DeviceId": "5ea2e38d-9782-483d-bd95-9095ab0e7e5e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "278ffa0c-0ad3-46c0-aaee-5d2a01c3e835", + "TenantName": "Tenant-278ffa0c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350230833", + "DeviceId": "9d888b5d-f782-455e-903b-b21223bbc06f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491903967", + "DeviceId": "a93ec09c-b073-4c7d-b147-d4f54af56648", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703688944", + "DeviceId": "91aafee5-7d52-4290-b26d-11e7d68c3d9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927986133", + "DeviceId": "772b0bfe-24ae-4cda-b538-a43c09757ccb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665644718", + "DeviceId": "56c9ac11-9886-4791-adf9-d0ddcc674f7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406760503", + "DeviceId": "6fdcdc8a-264c-485c-9d25-aad9befe59a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_167020889", + "DeviceId": "69a0bf1f-842e-4438-b053-b1033d2c3f7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_507560902", + "DeviceId": "6aa9aa16-114c-4a6e-9696-01b76093b821", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_706098350", + "DeviceId": "d30c1d28-d71b-42df-aa8d-42a4aed61645", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320461129", + "DeviceId": "e5837e42-21f6-40cc-8cc3-e9a129a302b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_652398107", + "DeviceId": "89301285-ec0c-49bd-a11d-dab5f5bd8a8f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d385b95d-caa1-4411-8582-043496b305ce", + "TenantName": "Tenant-d385b95d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141762696", + "DeviceId": "489c6b47-f016-4fdd-87b2-5aa260dbb1b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_943249826", + "DeviceId": "ed31800b-cfff-46e8-bd23-dd91089fe473", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_463218207", + "DeviceId": "c16ad1a1-b53d-4d55-839a-b3aee597b756", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767349484", + "DeviceId": "efb9bf67-023b-418b-937f-2866e5cf5951", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438471109", + "DeviceId": "0899fb3f-c194-4d15-9c6c-88315dee7b86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389527207", + "DeviceId": "88e26e7a-6c79-4a53-a7bc-7f4733f0405a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119569261", + "DeviceId": "8a21a39c-d3b9-4c4b-97ff-132be7e2d7dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356918380", + "DeviceId": "538209c4-c8f3-4c00-85e2-af6e57ac3023", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742545835", + "DeviceId": "106ff49d-5ff9-47bb-b3ec-10e88b2991d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307371252", + "DeviceId": "1dc0e07a-ea28-4ff8-b102-2949a6386b71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_327275276", + "DeviceId": "03455319-675b-42fa-a48e-4b6c1301a1bd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "517f2f54-c746-4d1e-89f7-ba2915cd2a6b", + "TenantName": "Tenant-517f2f54" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847014139", + "DeviceId": "f8e1de44-4184-428b-802d-449143516798", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936417657", + "DeviceId": "039c4da5-bcc7-4007-bfe2-090a2d248018", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_226282327", + "DeviceId": "d07cdabd-8cf1-4e9e-9a3c-67d52afc0c86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531909805", + "DeviceId": "a96a0861-f688-4a99-aef6-8d0420cde8ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175969176", + "DeviceId": "9b51f164-b5eb-4641-9f44-71b600966229", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439722124", + "DeviceId": "4db09f47-c25f-4e89-9b57-0fbe28b08137", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583077259", + "DeviceId": "ff0e96e1-1366-49f8-9977-b326ef34bdcb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254832780", + "DeviceId": "26981af3-8cdd-4657-b678-28fc33421af9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564031917", + "DeviceId": "d81cbc87-2b9b-43d7-bac2-f0f5b4e491dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360871621", + "DeviceId": "143ac9ce-e209-4413-b722-7d07b026467e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_489976489", + "DeviceId": "e220de57-68a7-4b73-858c-4019d63f4a1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fc54f76b-bc59-4d74-9147-7391ddc7088c", + "TenantName": "Tenant-fc54f76b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415439126", + "DeviceId": "f1d3458c-2fbf-439a-b332-d626434af7de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_855014495", + "DeviceId": "975fb909-03df-4286-8342-d967592e836e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540807118", + "DeviceId": "7d7ad330-6023-4147-a6d8-2c95fe2b1872", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574331831", + "DeviceId": "8c3b4157-5fbc-4e09-8e3c-9620cc6d625e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233620823", + "DeviceId": "b916f681-c6b0-4bee-ab28-a378243c26c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881681392", + "DeviceId": "c2560404-9e5d-4539-ab89-2052e00fc95c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351055877", + "DeviceId": "05314ee1-0652-45f4-9bf6-7adfcff4fbc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_466521301", + "DeviceId": "863c03f2-a51c-4fa5-9ca6-8be2a49c546d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195799102", + "DeviceId": "fb9b7a31-1d96-4baa-9410-11be7bfc56f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612368400", + "DeviceId": "ae4ae2be-4400-41b1-83b0-7bf5e0a1bfaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_750221407", + "DeviceId": "c751fad6-b8d0-4f81-bd24-d50745a52bdb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "26b2d65c-09d2-46a7-afb6-b1045cab1bd1", + "TenantName": "Tenant-26b2d65c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796524392", + "DeviceId": "1d5f8403-bc6a-489a-8f28-6e67680c858c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185248462", + "DeviceId": "9526433c-4409-4a97-9ca8-ee18af9532c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115175934", + "DeviceId": "b34de642-87d8-4e07-b32d-1265e7d1470c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358603555", + "DeviceId": "ea4a46ea-50d4-495f-9a1c-38aec81a4661", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609382982", + "DeviceId": "43342d56-bdba-406e-a85f-a06274522a1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342920014", + "DeviceId": "4001ecac-e366-4db8-b2a5-1a397b8b015b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618981724", + "DeviceId": "66cd1108-b961-4a45-bcbf-f03a846c1407", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288601385", + "DeviceId": "73804ac0-8bb1-4adc-be8b-4b7a19da2287", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_149917676", + "DeviceId": "6c3b4d81-e800-4390-b9c2-7e68206c4adf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307939859", + "DeviceId": "a57fa767-b109-45dc-a93a-5c16fe339a63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_847899805", + "DeviceId": "f41bdae4-b08c-4cc4-aa93-978fd5fa48f7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96608335-956b-4edb-8d6f-569211f9a600", + "TenantName": "Tenant-96608335" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260522.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260522.json new file mode 100644 index 0000000..c71427a --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260522.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354311218", + "DeviceId": "6f08b9a9-655e-4e01-8fdc-905ae0482c4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_523392777", + "DeviceId": "83ba40f4-7875-4edb-a2df-7f3b9121c202", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_365447891", + "DeviceId": "f61afb94-8e49-4082-9434-bbbbf9cd65d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341501181", + "DeviceId": "8caff6e1-1458-44da-8718-1e72a436510e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_269953468", + "DeviceId": "53fa4b88-141b-475d-873b-6f4a83fb5349", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_123799206", + "DeviceId": "3a6296b5-f7c6-4dc4-a5ed-1054d77db174", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "121c218b-8e1a-4437-9d22-4ee46f8de69b", + "TenantName": "Tenant-121c218b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_623772398", + "DeviceId": "c24002c0-962a-4fae-a644-6baae2f0d23e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366285298", + "DeviceId": "49f37d0e-237d-4db6-a173-4828b934c1d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_834832341", + "DeviceId": "d1f51218-1ade-401f-9a81-7fda6965062c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_162856988", + "DeviceId": "2ed9a894-64b3-452e-b7ba-80f0bd347920", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_719498669", + "DeviceId": "7f23affc-2f1b-45ca-9d51-e71625a82764", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_336919756", + "DeviceId": "fa29fbb6-81c7-4fec-8404-7f4405a778bd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "53857848-2fa5-4e3a-9037-8eeda804d290", + "TenantName": "Tenant-53857848" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875714341", + "DeviceId": "07c4df87-9390-4693-bdc5-3f752fd9c8e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438821988", + "DeviceId": "b6611521-0693-42de-9c42-3318a95474f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438922215", + "DeviceId": "1705d85a-b4cb-48e9-a3a6-ade5a3c2e25a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386563685", + "DeviceId": "4b4483a7-2a84-42d8-aa9b-997af6cfd974", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747423199", + "DeviceId": "9c66fcd5-6b29-4ad5-a12c-fcb74dbade84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_739195791", + "DeviceId": "b8b84e32-130e-4a1a-befb-ae970dfcfcd2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bea63f5a-d26f-4dc2-b12f-8db0aa3b90e7", + "TenantName": "Tenant-bea63f5a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536131881", + "DeviceId": "f30cd740-0cc4-4651-937c-e3c0c4844b89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233501165", + "DeviceId": "82458a1e-acf4-4740-9b65-eae24e001619", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485415800", + "DeviceId": "a1a6e6e5-3940-495b-8dfe-59966a2b28f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730400629", + "DeviceId": "7740cc20-8b00-4898-be3f-81fb83fde990", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597942006", + "DeviceId": "0e8df1be-f6a1-40cd-9620-f9227c49ce24", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_824107191", + "DeviceId": "ad9791eb-b590-4910-b3f4-f24cebb180a6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ae37d02d-744f-4fe2-9864-6503a8be2a44", + "TenantName": "Tenant-ae37d02d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940479934", + "DeviceId": "7352c117-c522-43a3-86aa-3866346697d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837596810", + "DeviceId": "10a7d126-f23c-48d4-8226-41958d03a244", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300804187", + "DeviceId": "c351c50c-4a8d-45cb-9183-981715e22203", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295424067", + "DeviceId": "3e09d0c6-4eec-4248-8639-06efabd417d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329441258", + "DeviceId": "0960729f-849c-49c8-a3b1-b5483df18026", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_422623522", + "DeviceId": "3b8ca9f9-3fbd-4bbb-b38c-cf4a79e9cba0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c2d13b0f-14fb-479d-bebd-a9452fb217b6", + "TenantName": "Tenant-c2d13b0f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_589901697", + "DeviceId": "cbf7708c-5040-432b-8828-85faf3eaa059", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926158061", + "DeviceId": "7d4f7a5e-0bfd-42dd-a01f-557931f1bf8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713886341", + "DeviceId": "f04bc82d-5c2a-45be-991c-41f7ac800dfd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591215342", + "DeviceId": "f7957e97-1ea3-45ce-8d78-ee109e963848", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_823683565", + "DeviceId": "c99a9feb-507c-4cf0-8ece-73274e682b5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_776430249", + "DeviceId": "0d953bdf-4b05-4ce6-827b-5eeb8f2be766", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5d2cd8d4-2db3-4a49-bf22-68d72df53ca5", + "TenantName": "Tenant-5d2cd8d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121344424", + "DeviceId": "c199d059-f990-4f48-9688-23b8072afdd3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_641955395", + "DeviceId": "4498577d-74ad-418f-9a50-b79051b0de1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827751632", + "DeviceId": "4ada9b46-b759-4eb8-b433-b6e954c4d591", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_224634290", + "DeviceId": "70d2d206-bce0-41a0-a1b7-7da784d87717", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_762857211", + "DeviceId": "ebfe55e4-2b55-4d6e-b24e-71904b3c3663", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_386098010", + "DeviceId": "07bd0bad-dd1c-4ddd-aea4-333e18a38abd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "34bba716-250d-4f97-a80a-a789349a68b0", + "TenantName": "Tenant-34bba716" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_501583632", + "DeviceId": "b1490845-d040-4dfa-8f31-7e5c105a1903", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495512100", + "DeviceId": "6e984c97-c5db-4b02-be5c-88b4e7067ba1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107095237", + "DeviceId": "71873b57-f147-4954-8208-b606570f23b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952742512", + "DeviceId": "62bbc659-16e4-430e-b35a-eff60525aaab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621376658", + "DeviceId": "b01102bb-3b18-4399-bf81-ce92bd33ff5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_754504420", + "DeviceId": "a28ce533-1f41-4076-9a7e-80a5d38f379f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "168a0400-faf4-436a-936f-d028b5d0946b", + "TenantName": "Tenant-168a0400" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_952702263", + "DeviceId": "d4e7ede8-a762-47ff-a0b2-d2362b413257", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171855273", + "DeviceId": "5f685d5b-f39f-494b-ba5f-0d9bbadf1986", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_272426700", + "DeviceId": "61c8fe82-a094-4295-8922-e710d3413e9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284930097", + "DeviceId": "8f3763e6-49d3-4aca-b893-e0c8b6c7a9ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708217736", + "DeviceId": "986b070c-a2d0-4d69-a13b-5610e523ff24", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_500130806", + "DeviceId": "b64dac96-4b77-4ba3-b920-18c51ed68d52", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d35d540c-f6b1-4816-b7cb-79f9b6ba71c2", + "TenantName": "Tenant-d35d540c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_576129022", + "DeviceId": "14dfdf1d-c217-4e8f-8176-e3e53b052a97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380514437", + "DeviceId": "0b499a5a-0620-47ec-b8ec-160b1cf39ac2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_699345156", + "DeviceId": "402e1f67-88e7-4265-8deb-1df020874d54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_265275481", + "DeviceId": "d237907c-2fe5-41a5-9dbc-b06aa4e5247e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812673036", + "DeviceId": "1fdbafa0-916a-4fc7-bff4-641014959350", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_366023438", + "DeviceId": "f50ed78c-d3ed-4109-b0d5-f1d08120e0a7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3b868187-c3a4-4f22-9a6d-b27c7d81d2cb", + "TenantName": "Tenant-3b868187" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783384748", + "DeviceId": "7f2e9a1e-7437-4af7-9a80-46708fcc3a6b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534035033", + "DeviceId": "c007425a-8033-4064-ad01-23ba3ef8f7af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647731667", + "DeviceId": "0988f9b8-4dde-4f07-ab04-f0218b6033c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568939928", + "DeviceId": "167d727e-35f1-46e6-81c5-984d9e99718a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647424898", + "DeviceId": "7054560e-9f37-4096-a4a2-57276ead8fee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_861812489", + "DeviceId": "7c5c2193-b773-4327-a1f1-2df3bf48da4e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f9783200-c0dd-42c7-9940-24cda39e07ee", + "TenantName": "Tenant-f9783200" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562336315", + "DeviceId": "861bf06d-b1b2-4f2e-bea9-c8943af64cb8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346613670", + "DeviceId": "299374ff-eb8a-4e9c-8150-42628b556934", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_630491658", + "DeviceId": "52ca466c-15b8-4b56-bb72-ff08151bea8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836715424", + "DeviceId": "ab3a8404-62df-4135-a9a1-d0478d89fa12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_325406981", + "DeviceId": "38cbb7ab-16c7-4522-a378-56da456b8190", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_495044933", + "DeviceId": "3947c444-aaf4-4dd4-af3e-0c7ceccb247e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "32519f96-4df2-4fae-a1dd-3cc2759a83dd", + "TenantName": "Tenant-32519f96" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159598574", + "DeviceId": "8af20a20-dfc8-436b-91eb-18003504a5ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678979154", + "DeviceId": "f9424271-b06e-4abd-ab50-52817ed7e693", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721323969", + "DeviceId": "1f4f0312-e8bc-4d7e-8067-860fb3e5e912", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141481740", + "DeviceId": "0c5840d2-6279-4efd-80f5-84520fa3c32d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608061179", + "DeviceId": "361e4c0d-4380-45ea-998b-2d5f054ee8b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_229321115", + "DeviceId": "be25be83-0218-45dc-9d10-9711b0780fea", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4c5679ed-baab-4e08-a00d-240e01b33304", + "TenantName": "Tenant-4c5679ed" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728356124", + "DeviceId": "53995237-a135-46b0-a470-1cba4c9ca9b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276156011", + "DeviceId": "811fb7f2-29e4-471c-b585-ecfeec2e052f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_849657689", + "DeviceId": "28caefe4-955a-4208-b7aa-c01882fcbec6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952602279", + "DeviceId": "ebfe932a-6da2-4f8b-86c9-6e5d6c6254e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703375918", + "DeviceId": "c6eacc38-5725-4316-90c3-10ef1828e15a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_595791202", + "DeviceId": "1ef5d293-fc86-4500-ae0c-1dcabe702634", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4fe19889-5817-4730-816c-4858b25611b1", + "TenantName": "Tenant-4fe19889" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_923293229", + "DeviceId": "195abc50-07f4-4aba-82e9-25dc8786a2d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104288393", + "DeviceId": "ff91ac8c-d6d9-4a8b-9ec0-5f4d00f0977b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438573981", + "DeviceId": "fc1d1735-b655-484d-8247-e9432702c1eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135156452", + "DeviceId": "ddfbe812-8bb1-44f1-af91-6931131f036a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_813694764", + "DeviceId": "56d83fdc-8820-4561-9f7b-1c36ae508464", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_238673495", + "DeviceId": "12cd6d94-30f4-4b35-bc33-308f40bd4091", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d0557981-d6d1-4146-8e3b-853ea1a78f00", + "TenantName": "Tenant-d0557981" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_375362047", + "DeviceId": "bdb24762-5a4b-442f-8c67-0917b102ebf5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756761758", + "DeviceId": "e9f27d63-07a8-4b59-a58e-4d8252194b37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_211351485", + "DeviceId": "56daeb01-397a-4e8c-a775-e229c293a5fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709746198", + "DeviceId": "35155be8-a632-4df2-83b8-f03d580941e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749259586", + "DeviceId": "3b55eae9-b8a7-42ab-a6fc-47e1bc71fd81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_259419297", + "DeviceId": "1933b79d-369a-454f-9923-18263e9369cc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a3b37295-8007-4b71-afe3-342988671ad8", + "TenantName": "Tenant-a3b37295" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_623839669", + "DeviceId": "4cf403cb-5c11-41ab-a6b9-032e48afbea9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575283652", + "DeviceId": "06ae7b2e-8ea4-4ce8-8b76-c5fc87cea0a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_975621184", + "DeviceId": "53e06497-3302-4c29-801c-d483a3023f2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769677198", + "DeviceId": "182fd5c9-87d2-4235-86f7-76ba90db8647", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405028265", + "DeviceId": "7aa7572d-a783-48d7-ad45-eb546be17048", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_264634091", + "DeviceId": "f8572379-1375-4904-8de6-55f2de796eca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f80e7896-2ece-47f1-a954-e59bb126afbd", + "TenantName": "Tenant-f80e7896" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_967062061", + "DeviceId": "b824dd93-f4c5-480b-bfd0-89191d89f655", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_576559616", + "DeviceId": "017e5f6a-d739-40fa-9a1c-8767179161d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799928947", + "DeviceId": "b2c96b9b-4066-451a-9337-ac580ea6855e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181046599", + "DeviceId": "7b0005a0-5993-405f-ab89-2e57e5bf3a83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381453071", + "DeviceId": "856a0757-e8e5-4907-bd62-0ade2d8e7947", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_698093700", + "DeviceId": "3a7cbacc-2b32-4b6d-8016-6edbae661a93", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "070c6da7-d94b-4a56-a836-8ddf115beaac", + "TenantName": "Tenant-070c6da7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619876546", + "DeviceId": "40e5adce-4d29-409a-b9e6-e3a74db7849f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992397076", + "DeviceId": "85ce46db-ee8a-4f8d-ab1e-b0f35230fa0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670922799", + "DeviceId": "7390e3a5-6200-4602-a974-0c1fc87ce688", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937209172", + "DeviceId": "61afcdca-a855-4c44-b32e-7cd1c1d9147a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195476201", + "DeviceId": "1f86f934-15cb-49b7-8abc-e87be1902d51", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_332719470", + "DeviceId": "3f5de924-4756-49d9-ac8b-810aba97272d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5c6d2a1c-873a-4dd1-9ad9-8dfb722f9846", + "TenantName": "Tenant-5c6d2a1c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_689146982", + "DeviceId": "cec09032-e4fe-4f60-97cd-f30e1dba6aa9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621844810", + "DeviceId": "330b67e4-78e2-4644-a176-77a26b00b9f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429256752", + "DeviceId": "2cbe6996-d28f-46a9-abe3-d9e7c6ceeaae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_514320621", + "DeviceId": "eef55ed7-17fe-4a33-b92f-aae313183297", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301007119", + "DeviceId": "18567e85-197a-4ef2-a07e-b10ef663767c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_643066354", + "DeviceId": "26bcd6fd-6729-449e-aaec-45f5a1379ed2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0cd554fd-f1f7-4e9c-9a24-1da8a42710a9", + "TenantName": "Tenant-0cd554fd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485113294", + "DeviceId": "9a97e627-40a7-49d5-b49e-d46ff8a45404", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_971046236", + "DeviceId": "3ab00a3f-6069-4ccf-a2f8-ffc7e1989a6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242857674", + "DeviceId": "12e3314b-cf57-4ac2-978c-11707d267e02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_983295186", + "DeviceId": "46869384-6cbe-4290-acee-8ab95eb92864", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583807146", + "DeviceId": "f6ad5774-038f-44d2-8e8b-d6dd9a1a9840", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_660928169", + "DeviceId": "3916cb45-9465-4940-88a7-19a4fe334ae6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf5751cd-d61c-4e51-9afd-d4f0055c0fff", + "TenantName": "Tenant-bf5751cd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379176618", + "DeviceId": "f98ff83d-1aee-47ec-83ef-126aff8e438d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_111136843", + "DeviceId": "dcff07bb-80b4-4173-b070-6f1ba368e1c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_883047390", + "DeviceId": "e29bbc89-6d25-45d9-9824-38baf89be7c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_788183029", + "DeviceId": "747a3b5c-417b-49a7-8c6a-1db121f0e2a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760798445", + "DeviceId": "f7d5bdaf-5883-4e4b-a919-f638ae4b29ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_628219708", + "DeviceId": "d73cb820-6dc8-4c23-b2fe-58c7a844014e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1fd415d0-f171-4eed-b549-526bac641c87", + "TenantName": "Tenant-1fd415d0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_758014789", + "DeviceId": "b52653fc-75b7-4868-8bdf-bc638d14bb76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516058128", + "DeviceId": "91909348-f37c-4c44-9774-05151dc27da6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_311902159", + "DeviceId": "150ffebb-6c59-4d44-a9e1-916e4047d399", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_563708603", + "DeviceId": "2f780be0-fc71-4e80-8ec5-93762aac652a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274603769", + "DeviceId": "54de143f-da04-4fa3-a75d-2a61dd3eab5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_476971741", + "DeviceId": "15759ad8-50cc-4f46-ad67-408a3d416859", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bc3b7a20-8f2a-4447-9702-67e145abb172", + "TenantName": "Tenant-bc3b7a20" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279572574", + "DeviceId": "384bc48e-8d4d-40db-ad68-30a08c14ea65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213334086", + "DeviceId": "e81df1bf-7b2c-4ba4-96da-39743b8ce9c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310642047", + "DeviceId": "b4e103d1-ead3-4db8-87a6-9aa25fbfaedc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393414077", + "DeviceId": "e60c5e2b-40d0-4aac-b8e8-02681cb0423b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569351266", + "DeviceId": "a7ba3ef8-298e-4f20-80e6-4441195f69b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_547523366", + "DeviceId": "94dfa3f9-8658-4cd5-9282-5b53a6f479d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a1e65c10-768a-46d2-a433-e6ec800355ef", + "TenantName": "Tenant-a1e65c10" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161765798", + "DeviceId": "367d1810-4d09-4565-93a5-157bad4d752e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721238585", + "DeviceId": "891ef2fd-f97d-4591-b76c-243f6dcb1240", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335118816", + "DeviceId": "2b80cb6d-1c24-4bd0-bb7a-27e8eab54462", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_106426073", + "DeviceId": "0178f7e6-8be2-450e-86fb-24fd36e973c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213929789", + "DeviceId": "4586586f-4bd7-445f-bc06-ea18db2f1b4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_254135180", + "DeviceId": "c0326cb3-5e7e-4b24-a9ce-1f448c67af5f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4fb22cdc-2e77-4461-b859-f1de203096b3", + "TenantName": "Tenant-4fb22cdc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_655364596", + "DeviceId": "85de49ef-7f3a-493b-bc81-9d89fa816715", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783893130", + "DeviceId": "73cf5cff-c4eb-4a9e-8eff-52e57693a0ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222913782", + "DeviceId": "1f04456a-6ddc-409f-8414-87a09cba7d95", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_572265611", + "DeviceId": "e4060b06-8a08-482a-9cd0-ed5bcb4679ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222447748", + "DeviceId": "d6ac5049-3af0-4be9-8862-f2021eae4c07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_193802396", + "DeviceId": "35fac0b5-ba5d-45f6-aeea-a4f887ea036a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a14464ad-7553-41fa-b185-760c39e2428c", + "TenantName": "Tenant-a14464ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433659700", + "DeviceId": "a802740b-dab3-436a-90ef-cc5a861c220b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585569179", + "DeviceId": "b55664cb-aa34-4f08-a92e-0e8c49a37122", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941645065", + "DeviceId": "50a187ff-c999-407d-b9e4-d75ba186d078", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566669616", + "DeviceId": "17f7690e-f5f7-4509-b54b-e80fefa22879", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_543226712", + "DeviceId": "5358880a-e64e-49d6-9c96-1829a553952c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_825634060", + "DeviceId": "67f8b7b0-91ab-49a4-b05d-92f122859aab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b9710c89-74c8-4f65-95b1-761a58e8346e", + "TenantName": "Tenant-b9710c89" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_178027686", + "DeviceId": "8e5c75e4-30d5-4441-bdc4-0c1e918704f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722992745", + "DeviceId": "89857deb-e22a-40a8-bed0-e813b21c9f04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739216464", + "DeviceId": "2270a01b-fef5-4c3c-a4eb-fb93a307e864", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505689315", + "DeviceId": "47a819e3-c0d6-46e7-84ed-055b357d48af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861680690", + "DeviceId": "145baae3-004f-427c-a4a9-ecb7cb70cb9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_679918135", + "DeviceId": "acbca6e8-5ede-45e9-8167-d5d6042ad219", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b935580b-8610-4821-b6a1-d226eea64269", + "TenantName": "Tenant-b935580b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_691270710", + "DeviceId": "80a83be0-044c-4629-89bd-ce3602a18bc9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867058216", + "DeviceId": "998118ac-177c-47fa-91f9-2b7cfabc6bc4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556735677", + "DeviceId": "cd4624bd-692b-4783-b89d-43e77e994c5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667953077", + "DeviceId": "3ea02be9-06cd-4bfe-9aa2-030f8686d28d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247701504", + "DeviceId": "52ecc23e-96c8-49a5-b3bc-753cc5d32cc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_104025939", + "DeviceId": "a58d3c48-7757-4b4f-89ca-f5f042e4d53a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "61b6c118-8992-42b2-ab73-e3b6b463836e", + "TenantName": "Tenant-61b6c118" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635081537", + "DeviceId": "4b49364f-2e4e-491a-a50e-bbc97a21d550", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506744855", + "DeviceId": "477b6972-cf87-44bf-a3e8-d3fe7b34dc7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826068507", + "DeviceId": "27743cea-14ba-4784-ada9-18a807fbd08f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679207915", + "DeviceId": "94f0173a-9cab-451b-b5ad-71f5cac57e96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557374224", + "DeviceId": "d2897581-69fe-48c9-b59e-4c3d09f347d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_826978846", + "DeviceId": "93729d78-b2e6-4442-9213-d42b1ebc1ca5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c8fd0bce-d1e7-4d4f-8343-cac3203cd8a3", + "TenantName": "Tenant-c8fd0bce" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670471168", + "DeviceId": "21655a5a-abf6-4e91-baaa-42c2842384e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210836752", + "DeviceId": "3b548742-1477-48a2-9092-eb06c1403d98", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210392828", + "DeviceId": "35f71b44-525b-4f6d-9e8c-93fc39d7e059", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451449257", + "DeviceId": "0cc678f8-4df1-4323-b5c9-6384b179eb0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708785360", + "DeviceId": "feb8dab0-837c-4af5-b26c-99edefcb9f08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_775628539", + "DeviceId": "24ce9f62-9e1a-4a76-b5b6-a9ff6d78901d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea9bade4-1012-438e-8236-f5daa62d14e8", + "TenantName": "Tenant-ea9bade4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215587514", + "DeviceId": "7b45ecac-4ae1-4065-827a-684d90c288d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_146922524", + "DeviceId": "40ddf812-9cfa-4113-89b9-c8c525245ca5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_617797820", + "DeviceId": "49e2d056-4d4a-4df3-b183-59f096c6e911", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889801233", + "DeviceId": "db6afea2-6f32-4d93-92b5-3d28bc655e26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297892815", + "DeviceId": "d3197b36-a2db-4bce-90a6-c6c40f2166d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_380215727", + "DeviceId": "e432e4fc-c2ac-470e-8934-033daa6344c6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4bcb5ee5-0788-49e2-aa06-e8c98ecfb536", + "TenantName": "Tenant-4bcb5ee5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_258135529", + "DeviceId": "bbd880bb-29ba-471b-8a8f-6272a5d26557", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_359922414", + "DeviceId": "1913e006-bda1-45a2-80af-1bf918c72e52", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342968663", + "DeviceId": "fad1c4e0-7ac6-44be-9763-ae5adb64e11c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_634940356", + "DeviceId": "1308411d-c015-423a-93bf-64c3a87e81fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_179908968", + "DeviceId": "84c88afa-afc2-43c7-bde4-17aa32b96a98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_752273903", + "DeviceId": "91e72ccd-3f97-47fd-8702-7f9eb312c108", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8e7f7275-93e7-4f2e-8ff1-7d356110d560", + "TenantName": "Tenant-8e7f7275" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365060850", + "DeviceId": "a96a8c28-77d3-41c9-967b-4f121951a554", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494110259", + "DeviceId": "5e200550-78db-4176-bc8a-17752d4d5254", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898750894", + "DeviceId": "f6b2d25c-5546-4017-abb6-459e61efeabb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_778332788", + "DeviceId": "2af81b24-9c93-4cc1-b5d7-eef39f5083fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_859116875", + "DeviceId": "f75a3a7a-d899-40be-b689-d7ccb1475036", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393373381", + "DeviceId": "a4d0ffa8-0853-4c7d-ad25-2102cc300a4d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e00c06ab-08fe-4243-b139-a5e4799553ec", + "TenantName": "Tenant-e00c06ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305806817", + "DeviceId": "9a2e6825-4fb4-466d-858e-985b4c89a53f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461188485", + "DeviceId": "4fde2199-07c9-48a7-bbce-3771e467bce7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741153489", + "DeviceId": "8333bb07-da8c-478c-9761-006478bc249f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736994610", + "DeviceId": "1a3e426a-c821-46b5-a62b-2f6d2567404c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130288459", + "DeviceId": "6f720e7e-c4cc-4aa8-895d-0bc35175834a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_487931813", + "DeviceId": "f5cc8ec5-8977-46a0-a097-8c5911fd18f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad8287a0-d285-4d50-904c-c4a3b35ec752", + "TenantName": "Tenant-ad8287a0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_204058534", + "DeviceId": "440ab625-da7e-425b-8988-cae279835ced", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997811599", + "DeviceId": "d1dab05e-2eda-4bc2-99c8-0e3363365627", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252553286", + "DeviceId": "49218cb9-0cdb-4d0a-a7c0-2cc2a7b42160", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_905601599", + "DeviceId": "7e83bead-e522-479b-afa0-8b9e5ef4e181", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_567644106", + "DeviceId": "d6694aa5-c9d4-4eba-95be-30a93d65ac78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_642111280", + "DeviceId": "cfd2746d-91ec-4218-bb24-de2fb003efb0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cc49c3c8-1f7b-4870-9bf1-d29275bdc79a", + "TenantName": "Tenant-cc49c3c8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262571438", + "DeviceId": "78ecc7fb-0b23-48ca-8165-6b54d0d30952", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362621972", + "DeviceId": "51880a9d-b3ff-4106-9bf9-a9aad49cdf2a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921022702", + "DeviceId": "e9de32f9-902d-43a0-80ca-a5d1b75282a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906682531", + "DeviceId": "f6939912-4573-47b7-9600-57149808daf0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_203426779", + "DeviceId": "8a8718ba-8942-45db-bda4-0d0c38efc57d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_616124343", + "DeviceId": "5fee1c0e-62e2-444e-8c1a-b5b9098eb0a9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "17b0fab2-eb60-4833-88e3-db392b69ccae", + "TenantName": "Tenant-17b0fab2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970890232", + "DeviceId": "af75950d-e205-41c0-ba34-c3e751d19190", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913281713", + "DeviceId": "48ac443f-a963-450f-b734-6d88f39017e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231034934", + "DeviceId": "ee49ae3b-ab92-487b-a686-3e4c5acf006d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935773955", + "DeviceId": "c4d68a41-4375-46e7-9bd2-0c1a5928d55c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769549433", + "DeviceId": "b9b56283-6744-4b5b-a492-f99373f45145", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_338734290", + "DeviceId": "75b3a045-edba-4002-b441-108ae4600109", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "079d2d49-914f-4b57-a726-da91d208e25c", + "TenantName": "Tenant-079d2d49" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223197322", + "DeviceId": "de90706a-f4a4-4082-8776-cb55896cd5f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526779272", + "DeviceId": "6fea1e21-4eee-4956-b6b2-e3bdd3f4cb0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915716088", + "DeviceId": "3b2ac3a6-265b-4ea6-8bed-ebeba0391d69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_876485102", + "DeviceId": "d36375f5-db5b-489c-a698-f98cb7f87863", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926372906", + "DeviceId": "692b7b1b-78bf-4b07-a93f-64ac93469230", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_282936953", + "DeviceId": "292c61f9-a708-4cd8-a671-42cc152bec17", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4e739bf7-be2d-4c7a-a186-432c7161698e", + "TenantName": "Tenant-4e739bf7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525520393", + "DeviceId": "cf4f9bdc-895b-4838-acb9-2409512761de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_300851106", + "DeviceId": "01a6ed03-1472-49f3-bd81-ec9324575f92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594573558", + "DeviceId": "d2006db9-493b-42cc-8946-7a7829c3a18e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141653195", + "DeviceId": "fda7785c-e9f9-4847-b666-002b02bad059", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161678529", + "DeviceId": "e4eda968-ca7a-42cc-987a-81b10ba70292", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_278795054", + "DeviceId": "d411229e-fceb-461b-9e0f-4840c4181f9c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "67d2013d-2945-43a1-913c-233a0ef3dc33", + "TenantName": "Tenant-67d2013d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798533250", + "DeviceId": "15f952eb-963a-4099-a5dd-2f5f0594bca2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742781964", + "DeviceId": "753b456d-0e33-4beb-95d6-80ca4c376c4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848854348", + "DeviceId": "a514cf30-2b13-4ce9-9324-3c61f412d30e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526137548", + "DeviceId": "d29f89f7-104e-477d-84ea-acc1ff17405a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223069888", + "DeviceId": "441311ab-92b5-4487-b2b0-4f089f50b9a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_926173737", + "DeviceId": "ffe78859-04c6-4086-9e87-2ebea3f73840", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "48eeca04-dc0d-4dfb-827a-8f7aba027869", + "TenantName": "Tenant-48eeca04" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856802968", + "DeviceId": "f269609b-4fd0-4d09-a10e-d5b3d44d9d7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315677103", + "DeviceId": "982bf11d-0525-4f04-9ca9-b7fc08a60f19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295247889", + "DeviceId": "b658a96f-813f-4a38-b1a0-5cdd207a7666", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725534345", + "DeviceId": "28a34c2e-900d-48e7-81b1-f787f2d000e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246821016", + "DeviceId": "0dd5c525-1405-4bdd-8d60-0b0486af07fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_898932654", + "DeviceId": "1afdccfb-dd89-4a7c-bc2e-dc54a1c0bd5a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "39b344d1-60b3-4fff-8188-ac9120df3f53", + "TenantName": "Tenant-39b344d1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169046285", + "DeviceId": "c0991441-d0fb-46bd-8d18-7be87b5c2e06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339584955", + "DeviceId": "a82544b4-0f08-457d-ac81-2862e42c47e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422637401", + "DeviceId": "156bb5a7-cb44-4365-8663-4a1484b8776c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757076030", + "DeviceId": "802be39c-e00d-40e6-afb5-1ea8afdca5ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137021791", + "DeviceId": "c54dd15f-cb4f-45b7-9d0a-b4b8beb1b2cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_989230574", + "DeviceId": "537a3357-3424-431f-bce6-784fa2b3f78c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "215bc6d4-0d98-470a-8310-87a222fea6b4", + "TenantName": "Tenant-215bc6d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538233437", + "DeviceId": "e7a3d3ac-5b52-4bb4-a5ac-92bdc151ab6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668244221", + "DeviceId": "a82824e3-ce4b-44d5-a1a0-4b2401d5731e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999395564", + "DeviceId": "47ccdce7-2209-431e-baa4-8fc70ac0b542", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767869196", + "DeviceId": "9ca98faf-0963-46f8-9ff1-f101890b1f5e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714565718", + "DeviceId": "ea2cce65-8de7-4cca-be4e-c3d2d5a62f94", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_222967447", + "DeviceId": "cd4dcf7e-c3d0-4c64-98a4-d5673d4ea6cb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dcf196ca-16af-4312-86c6-83d1568ee3c3", + "TenantName": "Tenant-dcf196ca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_266597520", + "DeviceId": "49ef4f6b-cfd3-45b6-9f76-98e591ee9cf8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288583906", + "DeviceId": "dde7a5fc-2006-4dc1-a958-21e19748fbc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_778357891", + "DeviceId": "ee739c9f-4a58-412b-a270-e918a8aee0d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_819820839", + "DeviceId": "2cd7c4f2-5154-440a-b368-10ebc5931c21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359259355", + "DeviceId": "cad61f5b-648a-4e13-9e48-4f98036cd2b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_221953158", + "DeviceId": "b7d431b8-941e-4ae9-8a34-e7e97933b758", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "abf44cc9-ea25-442a-b829-a29c990d3216", + "TenantName": "Tenant-abf44cc9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924134509", + "DeviceId": "887c7219-4e47-404e-be46-0456724788cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878909273", + "DeviceId": "cdad7608-1728-47fa-b6fa-00a2af78eab8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131826208", + "DeviceId": "170840d4-3421-42f3-8a6d-593c1ae8f759", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766787192", + "DeviceId": "a65f9fe6-6609-410d-baf1-229b3d6b65d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582640791", + "DeviceId": "863025ff-b246-4cda-b85c-f4779a97ac1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_921256166", + "DeviceId": "0bcad2f0-ecbe-4535-9535-606269808397", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a96327a-b353-4d85-b7e1-eb10ee580d46", + "TenantName": "Tenant-1a96327a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996760225", + "DeviceId": "64b6760a-c09a-4c6b-afd5-d3b53109fa19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974710622", + "DeviceId": "1d0090e1-2f68-44e4-87eb-f989a8f0c744", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_758243207", + "DeviceId": "23cb6ccb-58e0-41ba-b0dc-c6a7f8a79419", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_460117353", + "DeviceId": "22b55f76-fbb8-4f6d-a308-cc596b3d5bce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_680014562", + "DeviceId": "ad4f5916-fe71-4086-9af9-f25392e53394", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_743728571", + "DeviceId": "52a6b15c-606b-46e1-aec8-0eee3a22c8d0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3ab34c91-0021-4a10-93a1-e25b1cd1bfb1", + "TenantName": "Tenant-3ab34c91" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505276401", + "DeviceId": "87961204-52bd-48cb-819b-4fcf3b2ba84d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461478678", + "DeviceId": "66465d91-3e32-4465-96e1-7dd9f1564bbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_203180227", + "DeviceId": "bc25e014-6d9a-4aad-a6c3-9ada931899f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196568855", + "DeviceId": "4cb7fa47-67b7-4b6c-a714-d4b80e1b8041", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_498351279", + "DeviceId": "bfa49054-abd0-4819-8725-89ad3172b596", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_823717427", + "DeviceId": "e6ed0674-47ce-4ba1-99af-3036e022bf76", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "45d0ec64-58a6-494d-97de-3cf6b44cb348", + "TenantName": "Tenant-45d0ec64" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262978808", + "DeviceId": "25430597-5b51-4dec-a495-f8888ebb5fa9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237334789", + "DeviceId": "24a0634a-7e02-4d9e-bb91-f7aaf9cbd1ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973683488", + "DeviceId": "8a7e3179-68af-49d4-9118-fa19883a52e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161481426", + "DeviceId": "b4727e3c-9614-427c-9211-36752f1f4b39", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744664209", + "DeviceId": "79aa6d4e-16e7-4cb9-9893-f7044c578b7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_802875567", + "DeviceId": "a63b6f74-8091-4882-872c-004694bb34ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4437603c-3c7e-401b-99ae-b81d1e0728a6", + "TenantName": "Tenant-4437603c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_960367387", + "DeviceId": "09acf43a-2f2f-496e-b6a2-d7bf04df7d08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858787756", + "DeviceId": "d5bf70f4-095c-4659-b94a-65c444b276b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_446010532", + "DeviceId": "50bef95b-0aaa-435e-93b9-bb0f673cfd00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601499687", + "DeviceId": "8280cd67-eae7-4649-8664-7f8a2e57c0f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_675951010", + "DeviceId": "77750f6a-6394-4957-bd2c-4d813c5d9df4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_553475669", + "DeviceId": "f887c5b3-c8eb-4f9f-af43-fed5eb9b9044", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0e2955eb-a1fb-4bd4-a72d-8e110c9fbe5b", + "TenantName": "Tenant-0e2955eb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_890879109", + "DeviceId": "ef21d39b-1cba-4682-914b-670a59b48de9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843733087", + "DeviceId": "8774887e-3567-40d7-851d-702be9bb869f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467349268", + "DeviceId": "fb199b1f-ac71-43a1-abd1-cf433d66ee4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341607720", + "DeviceId": "79790997-182e-43b5-9a29-620c8ab618f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930697727", + "DeviceId": "b13d7cb4-51ed-4175-ae3b-b02441c14402", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_921346913", + "DeviceId": "82ad0015-1c76-41b2-9b97-7a0f351b6a28", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7e1ab6bc-b394-47da-9475-37329cd254b5", + "TenantName": "Tenant-7e1ab6bc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969768539", + "DeviceId": "3b9707ba-e276-4663-92e5-ad948cc32648", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773431366", + "DeviceId": "6f4729b7-29d0-465d-abdc-040d68f21545", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866514619", + "DeviceId": "004d5bc9-66e5-46ae-80c2-1f21cc3e2cdb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232131725", + "DeviceId": "5bbdc082-6ad8-4312-b721-b9c295a6db39", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_924783503", + "DeviceId": "63bdf49a-3c8f-422e-aaf9-0dfd3d8b3fe4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_362110954", + "DeviceId": "2cb97068-01aa-44b7-b428-c5c2565cef1d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "72a58925-c439-4df4-b222-78d60ddd3069", + "TenantName": "Tenant-72a58925" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851984113", + "DeviceId": "8ceacbe8-5dc8-4f12-bc2e-19032db1ed5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498854890", + "DeviceId": "d33bbe4e-4f30-4ee0-b547-9dfc410e92a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341189494", + "DeviceId": "ab5082ff-5ecf-41a2-898e-16a4ae174fc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_634950843", + "DeviceId": "4bfdea05-a8ec-45f9-a642-48f4f4d58d70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654445268", + "DeviceId": "86847c0f-c699-48d3-ac94-d09c34ca357f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_306799476", + "DeviceId": "95732198-f04d-4cff-a311-3446eca52e76", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "68fc99ac-0c1e-452a-ae65-4027b6b3b74f", + "TenantName": "Tenant-68fc99ac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919045714", + "DeviceId": "2297b84e-4793-434e-99ac-82ce3473ce53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659514923", + "DeviceId": "7203d79c-0958-49fc-92ac-06c67c395fe7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601940971", + "DeviceId": "b6fade79-46d4-4cb5-946f-0b2788f2b704", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769175152", + "DeviceId": "d0e0d3d0-eb8a-42ad-836d-967d03398db1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793631030", + "DeviceId": "365fe90e-a6a8-4b89-923c-b6b7d71b3f16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_615957440", + "DeviceId": "63590ca4-5eef-41bf-8e78-ee699d00b3b3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8a98c636-d77e-4474-942a-577bd56a29eb", + "TenantName": "Tenant-8a98c636" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755880676", + "DeviceId": "0e550159-07d3-4e39-8dbc-3c76ddf3f236", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415715749", + "DeviceId": "aa7da89f-9a8c-4982-9cc0-43435df4dd7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_821761639", + "DeviceId": "dc58d94b-c555-4ee0-95ef-03e85c8f2386", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918746818", + "DeviceId": "e5ae8e58-1a18-46a4-8803-359905a10306", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114631238", + "DeviceId": "0474e218-005e-4fa6-aebf-31b31db9af63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_303529080", + "DeviceId": "53b267ba-21f5-491b-93c7-483cfda6245c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9807f98f-cf42-4f5d-bd9d-42fb6e3cd840", + "TenantName": "Tenant-9807f98f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354886050", + "DeviceId": "eedaeb94-f496-46c2-9ceb-9395ef5a5e72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307700998", + "DeviceId": "17a6d71a-ea8a-43bf-9b5f-046794024ed7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_571316412", + "DeviceId": "5a3b0243-ef8b-4fe6-8607-0616f74deda0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306855983", + "DeviceId": "cc53bb3d-60a2-4f13-af0a-a8e42a4e06b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580419633", + "DeviceId": "b8a3ea54-3add-4e33-8b3d-7889a47ed933", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_557284973", + "DeviceId": "bd686637-ce48-435c-9f2c-46388f5f38b4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "712aff1e-6316-4a0d-aa21-75d7a504991d", + "TenantName": "Tenant-712aff1e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746003511", + "DeviceId": "65c3605e-a406-45e4-b867-e68afad08a6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821045099", + "DeviceId": "1f0c1104-44b9-45f3-94d2-23b44dfcd64b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576400582", + "DeviceId": "9b4620c8-f629-4197-86b5-a99305fc2487", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_845681699", + "DeviceId": "c2446fee-9a44-4d7b-8a0b-df7807ff8fbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_874651804", + "DeviceId": "410973e0-efbc-49ca-9c66-0a57ceca6586", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_254664864", + "DeviceId": "6f64f1dc-2816-4c71-9565-b1cef94d930f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2af8100a-c121-400f-837d-20faed14c3db", + "TenantName": "Tenant-2af8100a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116985692", + "DeviceId": "fa032b4e-c019-42f9-8e80-ffdb0f56cf66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_106611509", + "DeviceId": "715d13a3-1121-414d-a7a8-8925ec1f36c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_746462022", + "DeviceId": "54692f7a-9005-45cc-8caf-03b5a744bba1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858538190", + "DeviceId": "94168b3e-e959-48cd-ab19-9097b1312740", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_551030024", + "DeviceId": "72690714-8e9a-46f9-add1-ff3e5bdba6a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_547610785", + "DeviceId": "5b66f369-d012-4fa3-bc56-1c3d8fab67a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dadf199b-fc49-469e-8023-2551f180a584", + "TenantName": "Tenant-dadf199b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599039231", + "DeviceId": "0d49a942-1949-4aba-ae65-55c1019b5c76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168437034", + "DeviceId": "d984d560-7c40-4eb0-a802-ed1232a53e21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390138826", + "DeviceId": "2aab07ea-6eef-4ac9-a814-f9def73ef8cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_224338063", + "DeviceId": "3f9667d5-32df-429c-ab2f-155247b6a088", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568014215", + "DeviceId": "3f914b9c-e1af-43a7-9b7d-01002003ef2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_613588381", + "DeviceId": "c0453820-e8ec-405b-8d56-56f7540a0030", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "33b4f1e9-5d52-4279-9613-8e2023a6048e", + "TenantName": "Tenant-33b4f1e9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892955398", + "DeviceId": "d6ee45d8-aa6e-4329-ad36-4fcf4d61dd0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616639584", + "DeviceId": "6577c9b5-b62f-4bb4-8c89-6961a72af522", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486010002", + "DeviceId": "836827d9-3252-4211-bb54-8327508e7c96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287111073", + "DeviceId": "70ca2ba2-0732-418a-8c05-45b4128bb74a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328571439", + "DeviceId": "6b18de48-aa5a-446e-86cb-f6b5ab481cc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_512687838", + "DeviceId": "2b70165a-9f68-4997-b436-4234d37e245f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c4911b8e-1e79-4882-ab52-593b3ea60621", + "TenantName": "Tenant-c4911b8e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991715463", + "DeviceId": "788887bf-a25f-40da-9dc0-b17cb5a3a140", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633298515", + "DeviceId": "8c398ce1-7d88-4473-99e7-6b26b044d0a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360387984", + "DeviceId": "3c17fb66-d87c-42d2-aea8-ad09cb075e1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_605899260", + "DeviceId": "519eb033-861c-4432-b44b-9a850e0c48f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993696286", + "DeviceId": "f6234312-49c0-4de2-b6de-768fd0cf776b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_424768044", + "DeviceId": "227fcaf1-2352-4736-96c6-0651e25a6b73", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4529ca19-33fa-4432-856c-41f6cd48732e", + "TenantName": "Tenant-4529ca19" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450288967", + "DeviceId": "70601c40-0ab5-4638-8d02-6430e93c8e97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891879906", + "DeviceId": "a9840a69-8c06-4612-b3d9-f04697d64e89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416575647", + "DeviceId": "4a02eff0-f056-44b7-8f32-cead8da6ae3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585323193", + "DeviceId": "59b2dc92-2fa3-40bb-8bb0-54dc94af6f82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_541165785", + "DeviceId": "3971b86f-fed6-4fa1-9638-b13347e52e70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_562839526", + "DeviceId": "07822c09-bf6e-44f1-9d43-65fdb356f7e2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "83d31953-d223-4f88-9a17-4a87c5981fc3", + "TenantName": "Tenant-83d31953" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694494379", + "DeviceId": "cafa9cff-6861-4f27-bc1d-4ddbd04bc881", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873382086", + "DeviceId": "745a4fda-359e-4b5e-a786-784583494c2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287172708", + "DeviceId": "6682166e-43c0-4301-80f7-44e4cc5bb4fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721128156", + "DeviceId": "b78232b2-d714-48ec-ad84-c74aa70cbbee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208314346", + "DeviceId": "b74a8e5d-904f-47b0-b6d1-f05ad1e5947c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_255089348", + "DeviceId": "c7c7b0f1-1023-4899-a314-b0d25b2834bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c9eb1678-5de0-463f-8139-01c8f0c1e0f7", + "TenantName": "Tenant-c9eb1678" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_460549559", + "DeviceId": "72228b67-2455-4eb9-82d9-44c73547067c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985506921", + "DeviceId": "0583cade-98df-4992-b3e2-198b3ef741bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_305217109", + "DeviceId": "e6bf7391-ea19-4bd0-93a9-df81b956388e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400357012", + "DeviceId": "a0f9fd90-ee6b-4807-a017-cabb9f42e496", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_169261134", + "DeviceId": "c953ae70-51b0-4f40-9e92-cf9c42eba0ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_196494238", + "DeviceId": "68c96054-41ba-4837-a597-1ce5486d94a5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8edd2cd2-3dcc-45c0-bc58-47a1118f434b", + "TenantName": "Tenant-8edd2cd2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608978406", + "DeviceId": "2a09d71b-f295-4b45-ae77-1ebde192562b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996462054", + "DeviceId": "2947c560-649b-47eb-9207-0c5fa86b8630", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_167150622", + "DeviceId": "75c2b9cb-da5a-4765-bde3-bc3c6923618c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307365059", + "DeviceId": "7f288f0e-1e79-453a-b6b5-5a83b89862ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831808038", + "DeviceId": "f2efa168-3461-4d62-ab1a-2f5cd4f68668", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_262742874", + "DeviceId": "a620d2c3-f56f-428c-b89b-a203cbdf1b90", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f950aca3-28b7-4b62-b7dc-42f0fdb9d549", + "TenantName": "Tenant-f950aca3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596792815", + "DeviceId": "877385f1-7e46-408d-972f-d94c10e319cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114816648", + "DeviceId": "371134ed-9265-4974-b368-58c7672f211c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_716811058", + "DeviceId": "0b009a4e-d61e-4933-80b8-83cd07a95a40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_842748949", + "DeviceId": "540e0f07-d737-4b07-b17e-644ddc00b897", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640256659", + "DeviceId": "8838d4ec-23ee-4d00-9ec3-ce296473e8f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_825065583", + "DeviceId": "ef4b43e2-7fc7-4759-9956-e6f4cd2be4f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "56415a8a-f503-4b51-859f-639c0015fe30", + "TenantName": "Tenant-56415a8a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824499529", + "DeviceId": "536e15d5-fc4f-410d-bca4-44effd6dfa95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631793781", + "DeviceId": "8e9ffd8b-9917-442e-bfeb-476838e5843a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969814894", + "DeviceId": "65959872-1cea-4751-a034-7ed6ec0c8d96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945420956", + "DeviceId": "6dde0cdd-90f4-47e4-8e8b-be9bdf772dc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109594768", + "DeviceId": "2eaa00e4-c047-46bd-9468-3bdcdfe9bf1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_824192613", + "DeviceId": "facf13d5-6627-4016-afa7-86af5ac994cb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ce9ac2cc-9243-424b-915f-35e1e254bdcb", + "TenantName": "Tenant-ce9ac2cc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171349747", + "DeviceId": "15023b50-b2d4-4be5-8a0f-701c1aa3dc1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679034823", + "DeviceId": "9ab837b7-0aa2-4eb4-8a42-ee3020540a23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185476532", + "DeviceId": "34cb611b-978e-43df-aa5a-dda5bcecab6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290268753", + "DeviceId": "934f25c1-469e-4077-a16b-4946149b048f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570295772", + "DeviceId": "fcdd08e2-9d41-4353-8559-3b0c7fd81594", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_244619332", + "DeviceId": "2d33fd9d-d30e-479f-ae01-ce61422ba74b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1436282b-a3ef-44e9-af41-5df1bd45900b", + "TenantName": "Tenant-1436282b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438780086", + "DeviceId": "02041b69-bacb-4fd9-9e8c-d08d4c75d229", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549984131", + "DeviceId": "a734104c-7f71-471b-9d6b-3272e8f6ddfd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_666394802", + "DeviceId": "d8ef51f9-66c5-482d-a880-699eb83831b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_768726464", + "DeviceId": "54918967-d0d2-4238-b437-1301af106756", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650977978", + "DeviceId": "15a1cec7-cb32-4de7-93ad-4c43ab2c7ab2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_438814962", + "DeviceId": "aad3bfca-c12c-4eca-8493-2e59797a8c80", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b1185c69-af12-46f1-b57e-09d2199c7f01", + "TenantName": "Tenant-b1185c69" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626316016", + "DeviceId": "2b12aded-0bd0-486c-95b9-5da5a05d7029", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712268708", + "DeviceId": "1de618b7-bbe5-4839-9565-6a1e703e427a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357396324", + "DeviceId": "ea8a2458-6975-432f-9888-09995fc8fe48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_791328209", + "DeviceId": "912cc0ea-7160-42f9-990c-35753986efb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260794378", + "DeviceId": "32fd3a9e-f2bf-4390-aab5-220f5713f80c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_575752463", + "DeviceId": "b4ac6db8-6e74-41c0-a1ef-c8649aaa9aa2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7213555b-2e67-4a64-a6c6-664032342396", + "TenantName": "Tenant-7213555b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787101881", + "DeviceId": "f4081d40-8e4f-45b0-9d76-bbc65a5ea953", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935679351", + "DeviceId": "a2f40a48-f74d-427f-895d-85a5741f7c80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107397185", + "DeviceId": "a362bbb0-a8df-416a-a70b-ac6ea4599934", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599142473", + "DeviceId": "8252ad6d-01a1-480f-93ef-93e381fb98f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931513062", + "DeviceId": "99aa217a-93de-4de3-b7f5-19bbd08d24ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_125630837", + "DeviceId": "384939ae-1c80-4d5c-b7a2-1a46d98d19d5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d617989b-f8fb-4146-8c63-421bb28c2592", + "TenantName": "Tenant-d617989b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466417068", + "DeviceId": "8009a0af-2637-4106-b735-586e18f574ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412191565", + "DeviceId": "e296679c-ab76-4cdd-b400-810b900c6306", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865317098", + "DeviceId": "23d3d6a3-367f-410f-a8d0-b5fbc8e61135", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_167794911", + "DeviceId": "5c082b36-1999-4d28-bd8b-9590f3f8f424", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450139662", + "DeviceId": "3a05ee8e-4879-4026-a2d5-e3c39a305476", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_178841458", + "DeviceId": "91cc0a4e-31f5-40a4-9c60-e5d9c8705a60", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aaa907af-8961-4db8-8d19-deaa55aac482", + "TenantName": "Tenant-aaa907af" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929353900", + "DeviceId": "af219215-f61d-4bfc-8a9a-89126e2bcff6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101702768", + "DeviceId": "63e5bffa-b860-4bf5-a35f-a60b23a4c376", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427025228", + "DeviceId": "b230433b-322b-487c-9dfd-b85de25cbe62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964160131", + "DeviceId": "04d93d68-f8d3-4faa-9ff8-7fe7e739bc7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451974409", + "DeviceId": "a469d064-5342-4e0b-b48a-d53d3b9426dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_902699813", + "DeviceId": "ff959721-4707-48b7-825a-8f98d1b53d2f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c2d1aa2f-9cbd-43a6-97b2-c528f531e582", + "TenantName": "Tenant-c2d1aa2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535168841", + "DeviceId": "297150f8-36de-43ae-8017-2f7917c65db0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494809590", + "DeviceId": "5890db6c-b62b-4101-9396-2234cc2a126f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258803837", + "DeviceId": "3ebc45f8-1134-4c51-bf1e-e283f3683651", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910518466", + "DeviceId": "9426db08-1b84-42bf-a78a-84676acc374d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659643570", + "DeviceId": "e9196e1c-717b-4be3-a0f9-9351ea046264", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_595289267", + "DeviceId": "8a490d10-28fd-43c2-a326-f457653f76b5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c937a1be-f825-4b56-9fc4-bf81317a229c", + "TenantName": "Tenant-c937a1be" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_700956088", + "DeviceId": "73624d0d-debf-4ec8-a1dc-6345684f4ae5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444889138", + "DeviceId": "93e2eab8-4db7-4e6d-8a1e-67c310468bb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676228003", + "DeviceId": "20327cc4-5578-403a-a414-b0c4c4b60d42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_150420502", + "DeviceId": "b7b69a26-26c5-49e5-af36-694e08201c43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941665673", + "DeviceId": "16d4031f-540c-46dc-8611-efb7a5647d06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_961617730", + "DeviceId": "6e5203b9-030c-402f-ab4f-aedd804aa726", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af5a8707-78aa-4329-9bc7-5a8e1d443c24", + "TenantName": "Tenant-af5a8707" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374443720", + "DeviceId": "045e1bbb-089c-45ca-8bee-3b16aaf53a61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101157756", + "DeviceId": "7ffda6a0-7679-49b0-b3ef-c32d26191c33", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_723977122", + "DeviceId": "7159e161-6139-441a-b283-308827e1b0cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831927522", + "DeviceId": "23563718-6c29-4aa7-bee4-30657fbb9217", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994548810", + "DeviceId": "7e3d7c04-fa0f-417b-b441-d281098d24ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_899278340", + "DeviceId": "23dc97d6-a3a7-4221-b89b-3630ba4fe430", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "76ec8fe2-a8c0-4ad0-88a4-3877a576cf95", + "TenantName": "Tenant-76ec8fe2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_190699559", + "DeviceId": "4c5ebddc-4766-4d3c-90b5-5cc3952d778f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_828925155", + "DeviceId": "8fe3e133-0d91-437c-a326-534a82875b70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155657181", + "DeviceId": "1d668957-f092-4d64-be08-44d291f94d5e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_813594340", + "DeviceId": "8642d242-6474-4280-9f1c-8b64c81339e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_959613984", + "DeviceId": "8c2c89c5-3861-4de7-8184-aae4bb4fa5d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_228406532", + "DeviceId": "9eaad5aa-bbc4-4e5d-92c7-1cbf48acab26", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dcb03fc0-e806-4c8b-8159-5a77cdacb789", + "TenantName": "Tenant-dcb03fc0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192653951", + "DeviceId": "474f6898-ddfa-4c0c-9913-f79d5e421b0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705367172", + "DeviceId": "3aa53aca-0dd8-4d0d-850a-5e4d3feb1901", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_835916971", + "DeviceId": "0c8b741c-dc2d-4cee-a51d-bf3d82370473", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_705768363", + "DeviceId": "b747ecb4-5975-4d26-bfd9-b4f5cebb75d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_893335103", + "DeviceId": "aad797ea-ae25-407d-a1b2-6b6a72e5fee6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_430657042", + "DeviceId": "f75ee60e-48a9-4c51-b65a-e2191d7e3e35", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0ba4914-00d3-4f3f-b4a4-5f7bb17c8cef", + "TenantName": "Tenant-b0ba4914" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284340641", + "DeviceId": "c393938f-93cb-4fc8-984c-eb67c39af806", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935328104", + "DeviceId": "70fd3c96-3802-44d6-b127-02fad211f970", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_504219270", + "DeviceId": "03c75e3e-72b1-47c4-b3e1-1da407d4d110", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_970206375", + "DeviceId": "8c3925ac-4f10-419e-ba65-23721229e519", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913185223", + "DeviceId": "036a8e61-85bb-414a-937b-e9dd5e0e787b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_326110342", + "DeviceId": "00539388-4399-4740-b4b7-5d8bf0960951", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "53c2fcfb-6db0-46f9-ab91-805145316f00", + "TenantName": "Tenant-53c2fcfb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722436969", + "DeviceId": "b83aa618-8134-4c03-9e81-051fef892e92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626569853", + "DeviceId": "065b15df-4a60-4c45-ab1a-f025d3d3b607", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_122035420", + "DeviceId": "061d8d53-fb05-46bd-8cac-06b886948cf9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761938203", + "DeviceId": "67e319a1-0b03-4663-98fe-116e9b639362", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_847365005", + "DeviceId": "fa28ac1b-1495-42e7-84f7-7b7a999fd8de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_277595725", + "DeviceId": "d7864d4e-a3f4-4f0f-8035-70e06e0ffdcc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e1c20dc1-fc73-43b3-bb1e-55cdca4fdccc", + "TenantName": "Tenant-e1c20dc1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186251127", + "DeviceId": "4d72a301-7c9b-4f07-859e-ed80fc004382", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904378572", + "DeviceId": "64fb3795-c20b-4a98-9352-cb64321edb7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806656501", + "DeviceId": "34e8aeea-86c3-459b-abcb-96ef8d846cbc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711352037", + "DeviceId": "1a16ebff-6fef-4937-bcaa-96cee7e57717", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577422221", + "DeviceId": "c1ce9e6b-1259-4b07-963b-e642aca020dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_655736991", + "DeviceId": "37c30920-1019-4416-9de5-9c3f37fc53f6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "258b10a7-ba78-4717-aa1a-a151260349e0", + "TenantName": "Tenant-258b10a7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767981509", + "DeviceId": "8b281426-01a3-4990-9de2-e1d01b9ed0ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330949784", + "DeviceId": "0d623239-eb46-4d65-9658-bbafcb9cdf74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_304646029", + "DeviceId": "a6b2356e-7e45-40a7-92f3-af018df9d191", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595425456", + "DeviceId": "8bd11b33-172b-45e2-aedc-9482bd5eeb6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553611320", + "DeviceId": "38e3fa76-c1f5-49d0-9f4c-b8f6da34d2b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_211618820", + "DeviceId": "59bd833e-fd3e-475c-b24a-544050b04c6e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "976b2c16-98a1-40f0-a72c-a1393edabbf6", + "TenantName": "Tenant-976b2c16" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366627033", + "DeviceId": "a614d7f1-d73e-437e-a0b6-e5ce727dafc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833564340", + "DeviceId": "19be65dd-c780-4aec-bf3e-ede1d9b2945c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_343611877", + "DeviceId": "5ae52a1e-734b-4a44-8872-a1262d80049c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562602204", + "DeviceId": "f55c4a02-22da-4c96-b162-072ea6bac461", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_639912279", + "DeviceId": "e64bfadf-c9a7-487d-8a6c-9404d2d86672", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_230793439", + "DeviceId": "48f4716f-30a6-4476-9182-fd15dd423c4b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ceeb7a59-a8a6-4ce9-84d6-ed96e3d5c3e0", + "TenantName": "Tenant-ceeb7a59" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_763808391", + "DeviceId": "5fbcfd20-acae-4bd1-8507-63675638d651", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_165530321", + "DeviceId": "48545db5-9ae2-462e-8cc9-317865276242", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278921237", + "DeviceId": "7f3bd6c9-c24a-476e-acf9-92f6d4fbbaa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187893020", + "DeviceId": "b879da6e-58dc-48f3-a2e4-576a2867a3d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370233399", + "DeviceId": "fc418950-3c82-4418-af96-33eac0ea360c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_965300525", + "DeviceId": "a19a539c-1972-4822-ba77-e23ef17e7e18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "022a2092-bc1c-4cd1-a731-c2ae2e25b972", + "TenantName": "Tenant-022a2092" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800028154", + "DeviceId": "8a1fba5b-81e4-4f46-a64e-c5a59e69e42c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564389957", + "DeviceId": "71c0fdc4-c3ee-4b04-9214-5b11f4ca3378", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733142230", + "DeviceId": "2e0b4420-851e-4286-8bd9-b433255142cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787303064", + "DeviceId": "abf6ff54-e17a-47bc-a548-5abd4a0b0731", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645828383", + "DeviceId": "00585ca4-64eb-4682-a8ad-dbeeb42db04c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_864011721", + "DeviceId": "f4344d79-47ca-42f8-807f-4a6caee447ac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7cad533b-826b-43e9-a05a-0088f197e5e9", + "TenantName": "Tenant-7cad533b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_604979947", + "DeviceId": "7e44241a-9572-447a-9ad1-b07403841ef5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697546238", + "DeviceId": "f780608c-c10f-4308-86d3-96abd924f175", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_445793685", + "DeviceId": "37ffe50f-621d-442d-b974-267a2cbb085a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767105869", + "DeviceId": "aa33b473-1ff0-40ad-926c-3ae8922418a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395640870", + "DeviceId": "084d0de0-29a6-4099-bdee-c3674c80c8e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_414316569", + "DeviceId": "621899e6-579c-477a-8cf1-41c3566b5f40", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b6622ff1-8e7f-4fbb-a216-b4e1ba4382be", + "TenantName": "Tenant-b6622ff1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678711208", + "DeviceId": "94646eca-c7ad-4537-a19f-9c4ede31db08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_820890237", + "DeviceId": "c7d5524c-73ed-4a72-9a06-bb74e5787863", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148053313", + "DeviceId": "df18d334-8d7a-4e64-8521-c276b13a3eaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806014037", + "DeviceId": "737b5523-5a14-4455-bb74-d67d4ad4796d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580120957", + "DeviceId": "a263b70a-cd70-422e-b993-14e2fc66ac9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_433516144", + "DeviceId": "fac70cda-9f0f-40bf-b106-e090790a95f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0c22546d-7e8b-4d8e-bc24-70bfe8cd0aaa", + "TenantName": "Tenant-0c22546d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_952964458", + "DeviceId": "98d86b0f-2a1d-4709-95d8-bf748e97c826", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108962303", + "DeviceId": "15b7555c-3f79-4fab-bbde-0134e0549f89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937150229", + "DeviceId": "7150a25c-95a0-4ab5-8568-b41c7b7114ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_100054029", + "DeviceId": "aa2bbb99-b624-428a-9725-6a6f19aecebb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_502438369", + "DeviceId": "90942397-70eb-41cd-8ae8-9adc0223ed8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_582920620", + "DeviceId": "5df9b8f6-4d0e-45f1-a15f-81d4d10f692b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2931dcad-7f60-45f7-923d-a7073b15777f", + "TenantName": "Tenant-2931dcad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_280338747", + "DeviceId": "4035c251-fe2f-4f38-a517-0c2a23c0ed25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_427191594", + "DeviceId": "f8462ff8-6221-46bc-bd6b-4c35346c8e8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545507204", + "DeviceId": "452144d7-2a21-4a3d-b2d6-8cff2fd18d8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414181560", + "DeviceId": "5d9d5ff8-59a0-4d55-a371-9128eee73ae3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948164481", + "DeviceId": "55711bc6-5fb3-458d-8472-f1ce29ee84f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_303714616", + "DeviceId": "0740acad-dde5-4f1f-aba8-453ff6df6aba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80c3f70d-ea1e-4f21-ac5a-100ce851350d", + "TenantName": "Tenant-80c3f70d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_569429040", + "DeviceId": "f0eeb2e5-2a39-4498-82b7-6944e1e967aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_769908288", + "DeviceId": "0653d181-45ee-4ba1-8c39-5f12db814136", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273385773", + "DeviceId": "76d256bb-ead1-432d-a81d-6f37d458e277", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_474812847", + "DeviceId": "b262a99a-7754-4f4d-8780-b0dce6c6668b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176497359", + "DeviceId": "424501c3-b336-4967-82fa-3d06ed624550", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_616904383", + "DeviceId": "6b7da1aa-8c1b-4824-a1ec-3f44450904ab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3f4d2109-4a01-4d6f-9b92-3ac23091398f", + "TenantName": "Tenant-3f4d2109" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_880886794", + "DeviceId": "cd3d332c-ff6d-4df8-8377-8b0f82760ed8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_337201431", + "DeviceId": "8bd82805-449f-4c2f-b0d9-0aaa5e5062c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511596429", + "DeviceId": "6d3bd2fb-8b2a-46f1-90d4-6c7c4cade8a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453725716", + "DeviceId": "9e0925ed-4201-4085-b1d3-602d69b943c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601645997", + "DeviceId": "6081ee88-f803-43e5-ad3c-c33dbcde1c23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727838880", + "DeviceId": "d34aa74c-0718-4216-bc09-b1c475700e14", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2db9f97d-e261-4287-a7b4-a326bbf9841f", + "TenantName": "Tenant-2db9f97d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445515380", + "DeviceId": "68997c36-3af8-44d0-8ba9-20bcc7bd2e2b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_956036807", + "DeviceId": "4042ccec-6c1e-4079-9954-529565f5ba96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_387860329", + "DeviceId": "78a5f724-b968-4999-bcce-871aee5ec250", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740777760", + "DeviceId": "4aace2ea-ab8b-4a4a-91f6-c36119fbdce0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153156078", + "DeviceId": "16f127e5-7401-454f-95e6-68293ddcfa75", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_518623129", + "DeviceId": "196633e7-f5c8-47a3-b277-1d00efa6abde", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a239a14b-035d-4327-bd61-f3dc019fe5bc", + "TenantName": "Tenant-a239a14b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912966180", + "DeviceId": "4b1e8931-59e4-4987-bd66-7ecd2f7b4e18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101413677", + "DeviceId": "b320d3eb-5e16-4bda-a207-e8736c7061bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642325787", + "DeviceId": "fee8963e-1a57-402d-8d7b-c721edff403e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_655781348", + "DeviceId": "d567fc15-546e-4126-a408-62ab6995fe48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136610781", + "DeviceId": "fb126616-e01f-465d-b15a-2d6b08df5e09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_379499482", + "DeviceId": "40124f6e-f05a-4738-82e3-6b62ee7dc078", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ca8fc1ff-689d-4972-95bf-ab24d6426ebb", + "TenantName": "Tenant-ca8fc1ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455257086", + "DeviceId": "abe925a7-5730-4aa8-bca9-7d3c83509209", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185877065", + "DeviceId": "a3e261b2-9a6b-4585-ad81-c5c021a7a284", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_762844748", + "DeviceId": "40d96b7c-ac88-4d58-84ba-2707e8522c87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552490704", + "DeviceId": "11fbb5be-648f-4f2c-a817-62d309ef0595", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127313622", + "DeviceId": "77bc9cb7-d3e4-4893-8f15-8d7c60c079f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_308780069", + "DeviceId": "53fc4217-5ad9-4ba8-9f6d-6fad2fc225b7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "228733b7-7eb5-4b95-a765-316819ff909c", + "TenantName": "Tenant-228733b7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541706328", + "DeviceId": "5a019f89-cd93-42fa-84d9-553a54f33f97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400716324", + "DeviceId": "3d128935-6d35-4d56-a0e2-47cb933aeb58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_111972259", + "DeviceId": "16fdf9e9-14a2-485a-a10d-d827a404c8d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114420430", + "DeviceId": "b5fca115-3dc5-4a99-9839-f421be60b8ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_303779386", + "DeviceId": "19a69c7a-82f7-49fd-836d-d330f1616d69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_174330859", + "DeviceId": "2509369b-4119-404e-b9f6-d932cadfa957", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c47f6461-1d4e-4350-abe1-fa3cc9e89492", + "TenantName": "Tenant-c47f6461" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638870201", + "DeviceId": "ad3fe9da-bf3d-4e69-ad77-46eefe37af4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_340171820", + "DeviceId": "538241df-e24b-4e4e-bd65-b02e7fdd416b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858281159", + "DeviceId": "778da679-0416-47f7-9ae6-1d25b54bc7c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438886187", + "DeviceId": "0f84fbc9-f972-4f99-b107-a07a087db7b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925949098", + "DeviceId": "0a3e898c-1eb0-4278-afa9-9e594af4ce2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_254365427", + "DeviceId": "fd02ef4e-4727-471b-b59f-b6233d27d420", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e12ccb9a-f09a-4715-a9d5-3de98991bc8a", + "TenantName": "Tenant-e12ccb9a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136901795", + "DeviceId": "9f434fcc-866e-47a2-92f3-14b94074a02c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802532553", + "DeviceId": "51fddeeb-642f-49e1-a9ce-4f5a48b53867", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_762480083", + "DeviceId": "356edbd4-b397-402a-8a0a-d1d40fcbc7c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477693143", + "DeviceId": "fa21b3fd-7832-4092-ba85-e6ae974d85a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621946149", + "DeviceId": "f1faf313-2c78-4d53-93a5-649d8ee85229", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_657844080", + "DeviceId": "8fa3a0e8-1a1c-454d-aa10-ce9c1a4e4985", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "920a59bb-11d4-449d-a5e7-dc347040c6f0", + "TenantName": "Tenant-920a59bb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_820889970", + "DeviceId": "27f6be12-f6a1-41a0-94f2-db37f86cd91f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575257643", + "DeviceId": "bb322868-298f-410e-a5be-af068cbbbaf8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790264663", + "DeviceId": "9d1ca676-a67f-4f69-aed6-15ccaa17e45e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667589113", + "DeviceId": "cd84a765-16a8-468c-8f22-c8ca5c7e0871", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561114135", + "DeviceId": "465fcfb5-b27a-4584-bc40-256f4a50ecac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_662172668", + "DeviceId": "1167a353-891b-4a6f-ae3f-231a77bf1f55", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "78f28590-23f7-4a3a-8b9c-2f88429a3c16", + "TenantName": "Tenant-78f28590" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_296132444", + "DeviceId": "9f831bb1-6a4f-4c90-b46d-2155a271cc5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107051220", + "DeviceId": "59e6adff-b433-4e16-bd91-d3e7c0976b6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_544384103", + "DeviceId": "794dd7e2-149d-4b99-989e-00e84026e6c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570279948", + "DeviceId": "1eaaeecb-0a5e-4c81-a87e-5df52c702974", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306364684", + "DeviceId": "cb44bb03-bb0d-41ab-9358-2a1f08cf2778", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_905558212", + "DeviceId": "a83dbbd9-0e4c-4a05-8423-191180e2e286", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8fd0ca95-d00f-41dc-830b-2c88fcfa8984", + "TenantName": "Tenant-8fd0ca95" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779422102", + "DeviceId": "36bafe5b-596a-484d-be08-d6ea4ddf8a59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940591138", + "DeviceId": "5af4577c-ea0a-408f-929a-cbd8e957724f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501334324", + "DeviceId": "af368a4b-7826-40d5-8ce8-612c1b4dd3c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_207007746", + "DeviceId": "a17e6d07-829d-40ff-9e76-870bd9ba0102", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545902405", + "DeviceId": "27f26e6c-3a14-436c-a0a3-bb69b606b0e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_392400720", + "DeviceId": "5928485a-a29c-4a62-b9a5-19d5c5e62923", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ebd9e78d-5a9c-4305-bf43-caa7be5a09d7", + "TenantName": "Tenant-ebd9e78d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_890023991", + "DeviceId": "658ada73-1c67-4a4e-9cb8-3a09b7eb5544", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_537626441", + "DeviceId": "a8bb308e-835d-440a-8685-8b6dbbdb36f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938072319", + "DeviceId": "86fe232a-9ba6-4aa1-9fb9-68798bb494a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577259884", + "DeviceId": "b9343bec-1a6d-43d3-910c-2173c0ed9594", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_923681479", + "DeviceId": "654a8197-9d0f-40d3-b726-7ae371d11d15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_225574926", + "DeviceId": "ac198238-fe36-4d3f-914a-765b644ab5ca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d2063248-e5af-449c-97a8-2edd615376e7", + "TenantName": "Tenant-d2063248" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762980140", + "DeviceId": "84120453-5273-46fb-a8b4-e0e3cb432a83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112409807", + "DeviceId": "6b1dd5f6-5b60-47e8-9852-231495e3da97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585287669", + "DeviceId": "1627555a-1272-400c-9c1f-8c65b2cfbf6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_115654480", + "DeviceId": "deea9756-7c85-45f2-8dc3-47848bab1da0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810704233", + "DeviceId": "a6bbaf8f-e49c-4bc4-8021-93e1c006be22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_528911172", + "DeviceId": "32d09b2c-633f-4de2-b6d3-b9ce7d2f6901", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "778644a9-4803-4fdc-8efc-22b11433714d", + "TenantName": "Tenant-778644a9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626955189", + "DeviceId": "b69aa880-43c3-4a1a-a710-e21f6624c985", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_624833980", + "DeviceId": "e30c7944-e959-494a-9376-0201ef865b6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399865606", + "DeviceId": "4cdd6198-c36b-4a87-93ca-2a49acf27b7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384002639", + "DeviceId": "dabfb88e-d513-44ab-b11c-5adeadef8855", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818309709", + "DeviceId": "fdbb3c03-eec1-421b-b23b-667121187bd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_373927249", + "DeviceId": "9dd822fd-7302-4505-9d61-1ec84c667a1f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "37e599a2-da31-4b84-8bb4-6ced53fa6ede", + "TenantName": "Tenant-37e599a2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424609912", + "DeviceId": "a2578943-e6ff-4acb-82ef-50ffcb413034", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287381459", + "DeviceId": "65d3d6cb-ee6e-4037-ad13-2f3079f5a548", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376986061", + "DeviceId": "ea2f8e2e-2a71-40f2-981d-6db77802048e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545140557", + "DeviceId": "260faf2a-88bb-42c9-ac2a-f730668b6b97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838860798", + "DeviceId": "292f8d2c-871d-49f7-a58f-c08bc8d9ef79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_465099988", + "DeviceId": "048a8a60-8ded-4eae-b7a1-91cd6e57b868", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3d37f005-aa57-4ba1-aef5-5590ce4080e3", + "TenantName": "Tenant-3d37f005" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_641044670", + "DeviceId": "4c1bf6eb-9af6-4747-8de9-8efea1cbeab7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_224854097", + "DeviceId": "546ad2bf-5641-4af0-bfb1-6e84b4410fc7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177077408", + "DeviceId": "910781a9-164e-42b8-a8be-d286733697da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_629517653", + "DeviceId": "7dafe74e-7149-4518-be32-9fb1814a55c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899888903", + "DeviceId": "1f99af06-d1ac-4bdf-8088-1e21d5b4a857", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_402060323", + "DeviceId": "62c0080a-02f1-4b36-95d7-26f8af54ef77", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d22f17a2-0e72-445a-8515-56cbdde6ba03", + "TenantName": "Tenant-d22f17a2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895073827", + "DeviceId": "b3f011fb-4249-4d27-a46e-833451168bd7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813455696", + "DeviceId": "ce15f9d4-69ce-48a5-905e-fb6264497634", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_675762340", + "DeviceId": "549388e8-e962-4171-b9d6-7e2c5541d8e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289364721", + "DeviceId": "99c8d4b0-9878-4f3d-beb2-a73762dba8b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361908781", + "DeviceId": "4240352b-a6ec-43cd-b79c-fffdc78fe74f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_730537690", + "DeviceId": "c27b6680-1b86-4c37-a6d5-17c3071ed2f7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e6855a21-b475-4670-8270-16666b7e6a6f", + "TenantName": "Tenant-e6855a21" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992543441", + "DeviceId": "c7a52652-d7c7-4bea-8395-41e36e494910", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618533933", + "DeviceId": "8322e7fb-59c9-4b6c-a641-3454d4bc0aba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177551708", + "DeviceId": "76b7d59a-504b-440e-baa2-3262d874c2de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545237429", + "DeviceId": "eb846f9f-29e3-4346-a92b-d5d910d9846b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_302920483", + "DeviceId": "8369b7fd-b9d6-4e6a-8181-e036367b2ad0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_512040862", + "DeviceId": "465822cd-4414-4d0e-a27d-710b29ad03bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f41718e9-6788-4deb-ad9d-b5c5feb99cde", + "TenantName": "Tenant-f41718e9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461265863", + "DeviceId": "43157887-213f-414e-a791-f23127b1ff64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633781874", + "DeviceId": "d549c50b-546d-41cb-80a9-7a0a626684b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931929183", + "DeviceId": "868760e8-9d10-4b54-a05a-f1ebcd192785", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_719948287", + "DeviceId": "888f7d20-377b-49fd-82e6-baddfaa06b58", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141640621", + "DeviceId": "96e94717-8d39-4eec-870a-185a527ce8ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_149201955", + "DeviceId": "85c5c0c0-3374-445d-a5f7-e29ab486fed7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e8eb1ab3-d878-4e56-88b1-0b0cc1858967", + "TenantName": "Tenant-e8eb1ab3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356194057", + "DeviceId": "2a35777e-1c2d-4878-ab27-adc5b34ccd84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_859168684", + "DeviceId": "76e811a0-f296-4432-9d29-cefdc533798c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814555972", + "DeviceId": "38e158a5-b4c3-4ff1-ba73-9137e712e3bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525629590", + "DeviceId": "0c78d158-f3de-4de0-8529-5cdc77fa1444", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511038462", + "DeviceId": "ddca8fa9-af31-457e-924d-6e3689f612ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_647450190", + "DeviceId": "39696499-cda5-4525-9acd-69c6ee724ef7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3cbebc3b-5873-4497-849f-313818c88d83", + "TenantName": "Tenant-3cbebc3b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_340723430", + "DeviceId": "690c9506-dd8f-4402-83fb-21cee8a10ed4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484861274", + "DeviceId": "fe396d6b-3062-4d0f-bbc3-fcac98de4102", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_478627452", + "DeviceId": "a37ffcb3-53df-44f0-baee-b41d528b280e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234509559", + "DeviceId": "8ee146ee-d71a-47db-9ec0-690f7ad9f050", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_635374333", + "DeviceId": "130709db-6e0e-47a2-9ce4-0d7fcf5bd61d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_639342333", + "DeviceId": "8c8c5bb1-6c00-4c2e-93a2-f54c53346eb4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "93287bd1-41d2-4795-a4cc-5a54766413f9", + "TenantName": "Tenant-93287bd1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_310092920", + "DeviceId": "5f45a0fe-ff57-42fb-9db3-36443928900c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490269445", + "DeviceId": "708c3344-bcd5-4dbb-a715-3e2ec5543344", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453927314", + "DeviceId": "5f612ee4-2040-4f44-a7ed-83bf2a7210d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358718742", + "DeviceId": "f26c4514-7f7c-466d-997d-5cabca67e4c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_444082615", + "DeviceId": "ce046515-a5b8-48c9-8144-167590eec525", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_292046536", + "DeviceId": "f1a4017b-6c77-435d-ae93-a151c2559ef7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "47c2b771-9362-4e7a-b2a2-c4b3aec905c2", + "TenantName": "Tenant-47c2b771" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_921114716", + "DeviceId": "bb5b8785-7e2e-4989-b87f-750896a98be9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571047837", + "DeviceId": "37143c2a-0776-4105-a95b-208f2f007eed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143154310", + "DeviceId": "2fcedfff-fa01-40e9-a204-fba28f318807", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440113233", + "DeviceId": "4dbae542-e0c0-40e1-85ea-ecae9dc797c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418753668", + "DeviceId": "7c3cfa41-e4a1-4b73-9c76-45cc10436b15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_515999119", + "DeviceId": "bd34e039-0c30-478e-925e-382e8f075803", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c8f42567-6e21-4e6e-9801-815a510383c7", + "TenantName": "Tenant-c8f42567" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875669309", + "DeviceId": "3b50890e-aca0-4d05-8f4b-aaa4c585a4ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688336513", + "DeviceId": "919c4c8d-2de8-4dbe-b914-44586ce6d388", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900222716", + "DeviceId": "04f21449-5b3e-4ffd-bd4c-fbc9bcacdc21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693740866", + "DeviceId": "5e3c4b6b-347c-498c-bf8e-79579af006c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562093937", + "DeviceId": "acc3ca6b-4f7e-4f17-8306-c6b1b948f13f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_967091068", + "DeviceId": "b28bcefd-ea8a-46a1-a6ea-61864c4b3f79", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a010792b-e82d-42b8-b59d-6cdced2a9be6", + "TenantName": "Tenant-a010792b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974955239", + "DeviceId": "35859c68-acd3-4b25-b9e0-f7733b9208bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920502120", + "DeviceId": "2f11b594-a0dc-463f-9e36-4d386a9b8459", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_391160386", + "DeviceId": "0e8d3fad-5cfa-4dd2-935e-bd5d47c205fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_719569080", + "DeviceId": "7e055c54-3564-4909-a50f-1f53a25c0340", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_716180944", + "DeviceId": "48b1bfcf-515e-48e6-a451-2c07ee7be6a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_561506764", + "DeviceId": "085b48d3-aafe-43af-833f-01559a55f611", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1ca42460-a2a0-4e98-831a-6ac9b9a9de63", + "TenantName": "Tenant-1ca42460" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509873740", + "DeviceId": "fe929294-d69e-4ffb-b674-9a59ac80399c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381558704", + "DeviceId": "7ba81381-ab4a-47cb-9d2a-ebb36d1c5f65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154396468", + "DeviceId": "8366b49d-a172-47c6-9d47-be5321ccd289", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_308661800", + "DeviceId": "2c15c21f-f4e9-4e80-8777-bf99896a5a78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853185150", + "DeviceId": "71cc3266-88f3-4acc-8d84-9d8236e834e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_267906453", + "DeviceId": "24e0d57c-823c-4a86-a66b-f62dabd48eae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f706e2ac-22ee-48ec-a1cb-bfbe1d55aa86", + "TenantName": "Tenant-f706e2ac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_204580817", + "DeviceId": "4b63dd72-a092-45f2-b6a3-b3a55c0dc27c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_558630482", + "DeviceId": "f126facf-03fa-4203-81fe-61803757d910", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_632221898", + "DeviceId": "d29b8945-f7b4-4728-8b3f-4c5d6ba722dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_917853235", + "DeviceId": "b9974d20-5555-4443-bd7c-93af4f18ede3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383766755", + "DeviceId": "02935ee8-9300-49f7-a0af-16d9f54394f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_612256236", + "DeviceId": "07c726f1-7b5c-453a-a1b3-06d9bd0a192a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e4db1cd8-790c-40d2-88de-df99126ab9ce", + "TenantName": "Tenant-e4db1cd8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304536549", + "DeviceId": "fdcb30f8-2041-4a2e-8147-8e48d3e381aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553815799", + "DeviceId": "62e078f0-fa05-4a9f-89b0-a5aa23b9f5f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283556522", + "DeviceId": "790c4f29-3054-4bf0-8999-a2bd950e8827", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225199074", + "DeviceId": "2c9374ad-ae98-452b-8b13-915d7cad84d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865271385", + "DeviceId": "acce176c-6ee9-4e29-a0a1-f0f5ad85d180", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_634762329", + "DeviceId": "b0627515-28a4-4061-af71-ad46f8a119e8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ebd215eb-fd1c-42b9-a017-e292475ffe22", + "TenantName": "Tenant-ebd215eb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_911252117", + "DeviceId": "e502c1d5-d8ba-46ca-b2a6-b00ce6c4ed85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730623226", + "DeviceId": "7c4e7140-9cc0-41a1-a69a-9394f6e4b61d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331922062", + "DeviceId": "0287b047-5fec-4305-925f-432d17c65674", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_498949239", + "DeviceId": "0dd4e331-f30d-4eab-b973-cda1e95857df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116807811", + "DeviceId": "d0c4fb2c-b780-4c71-83fa-37cef630e5e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_184453613", + "DeviceId": "c52c24b0-06c2-44da-8d5b-c8a3a2bd2cfe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "76cfa311-de62-4bf2-91f7-21fcc73a4209", + "TenantName": "Tenant-76cfa311" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161154077", + "DeviceId": "03dbe35c-84c4-40f7-8b16-fa89b8c5ff7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521424736", + "DeviceId": "9f805a8a-39a8-4373-a9d5-86cd864f8c3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748804584", + "DeviceId": "a71cab79-e961-47cc-b4c3-f0d17f230d0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771821929", + "DeviceId": "50fca534-f4c5-43ed-8e52-4f3d86c6c61e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681367041", + "DeviceId": "e975bb59-4842-461b-a08b-a3079f0d050e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_228732799", + "DeviceId": "658bb9f1-61d2-480b-8593-5989ee5cc957", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ba1003e3-84c7-4a4c-b066-547753280beb", + "TenantName": "Tenant-ba1003e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119539258", + "DeviceId": "f87c7763-341b-4b41-95b3-708f14b308c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883650071", + "DeviceId": "dae502e3-c99f-43ec-8fcf-10882b0c614a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506961262", + "DeviceId": "fcbbabfb-f554-44b1-aa8a-41119d8d05b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210955871", + "DeviceId": "3916f923-8b00-4efc-a62f-c8e60cf27624", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505073878", + "DeviceId": "73a8f0ec-5bb4-481e-b586-3f86856da1c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_882102796", + "DeviceId": "76414691-5d79-4abd-902a-5314bc203d16", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b3242073-e0c2-47c4-9245-366acd03a880", + "TenantName": "Tenant-b3242073" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917119768", + "DeviceId": "bd048a9b-0917-45e3-baa9-5c9184d3c340", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_367251155", + "DeviceId": "1c54cf12-22f1-44f2-9e3f-13b64fb60d71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569599672", + "DeviceId": "55944b8b-058d-42a7-83ee-10685650b11f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488204740", + "DeviceId": "5c5e7091-439e-48c9-9e77-fe2233e0d340", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397375154", + "DeviceId": "dfec77ce-683f-4874-9c20-debba615c64a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_478744592", + "DeviceId": "977afd20-7f45-4ae7-985c-d8afbfb48c2c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97e210f4-c2c8-4ea2-83f5-f5dfb9b76175", + "TenantName": "Tenant-97e210f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169285328", + "DeviceId": "6fa37c2e-98dd-4f30-8032-49fdfea72646", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438551249", + "DeviceId": "7b974aa9-ef7f-47d9-acb0-eae454e557e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453001617", + "DeviceId": "eaf7f445-cd92-4935-b0c9-6e530851cb96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423928912", + "DeviceId": "0b876cc2-b239-4c18-9926-47193c8e7ff6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_745978275", + "DeviceId": "3c472095-fc14-4695-9fd9-3d0b738b61d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_740287143", + "DeviceId": "b6240077-adda-41f1-91e6-4f43fa70d753", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3f2af878-a1ba-4005-9319-aacbfa1666d3", + "TenantName": "Tenant-3f2af878" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500357187", + "DeviceId": "c495896b-b51f-4d01-be88-73b0581bb1ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704585852", + "DeviceId": "9f0b4823-4385-4764-9f7e-6a8e62533837", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619491601", + "DeviceId": "53529fb2-1b24-4085-9c1f-92ddf0fe3eed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_951320457", + "DeviceId": "5c2715ea-4cae-4ee9-96bb-4b17d4e14c82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_842656909", + "DeviceId": "16fcca0a-7ec8-409d-bfc1-ee57989e8235", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_401538183", + "DeviceId": "c1ccd0ef-c686-415b-b2e5-3e32490c3e9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "10a4e7b3-216b-4871-8186-d744df6b9afa", + "TenantName": "Tenant-10a4e7b3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727845251", + "DeviceId": "b641f78e-8fa4-4338-97ed-d76954a9642f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_473028338", + "DeviceId": "5271338d-e0e8-4b18-b7de-cef1364050ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_318152114", + "DeviceId": "7d9c166e-b805-403e-a144-a61a58a92da3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_623990569", + "DeviceId": "dbacc06f-c965-49c9-a0c4-2b7c3025fbb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208938337", + "DeviceId": "55b47a65-eb34-4553-b1ca-04b5fde26632", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_408818306", + "DeviceId": "b5522918-e1e8-4247-9fba-65b653c38816", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1b894765-a305-4e55-a9f8-53b94419bf46", + "TenantName": "Tenant-1b894765" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451099054", + "DeviceId": "2707bbd2-c484-4eef-8836-0b7f9b804f87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_648167582", + "DeviceId": "5af691f8-4cca-4dc2-baaf-3d225de55a85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911122801", + "DeviceId": "bbc162f9-4c1f-4484-8b07-da0eace6ccfd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_986548187", + "DeviceId": "7bd14dbc-8c99-4779-b9bc-0d0ee7faa75c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940740398", + "DeviceId": "d7280720-862c-433f-807a-c80f4f225533", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_567881443", + "DeviceId": "75585305-e54f-4b63-ac0e-3f0a430156a6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd187a4a-a108-470c-b24c-338bce411046", + "TenantName": "Tenant-fd187a4a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_386529530", + "DeviceId": "0792c198-fed7-4631-a1c4-b090503b2d9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977975719", + "DeviceId": "e36f287a-fc22-48c0-99cf-404cea3a3dab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524755257", + "DeviceId": "59da4733-3e44-4c21-92e1-0ec532b5e89b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_856994142", + "DeviceId": "3f7be998-40a9-46bd-a182-af94182fad8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818626237", + "DeviceId": "f8405721-42a3-4d8e-8547-c56bcd250645", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_596441880", + "DeviceId": "b63aa39a-0634-41d5-89cb-1cb7dbb5e771", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fa7dc316-9441-441c-a398-07ed82ab7b3c", + "TenantName": "Tenant-fa7dc316" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488498239", + "DeviceId": "0c588d1e-8620-45fa-bc0e-efc772539fd7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913969522", + "DeviceId": "89529d29-34a6-4aad-817c-43a132a6db6b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235582645", + "DeviceId": "395a8743-5d1d-484d-9453-dbebba6cc5d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329447720", + "DeviceId": "56832bd0-119a-4b93-91eb-4842d67e94bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359972567", + "DeviceId": "4347b74a-97e1-4228-9619-8f7c44f8af73", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_283735466", + "DeviceId": "16db71fa-5c7a-4206-b6b0-8deb85ad1dad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8f7dd44f-5976-470e-a3c1-23205797c975", + "TenantName": "Tenant-8f7dd44f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869242854", + "DeviceId": "651b9a2f-b4b8-460b-9ac7-85bb3fee3942", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435345530", + "DeviceId": "f0454f01-ca8b-4608-a715-dd4fc83bb923", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509347104", + "DeviceId": "5b655613-295c-49d5-8e22-d029e1e5f1f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850557768", + "DeviceId": "f39f56cb-8bc9-4036-9bff-27f0c09f185d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266944612", + "DeviceId": "df7379f7-a8d9-43b6-a159-83213d181088", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_809327492", + "DeviceId": "2807b853-b936-46a3-af18-cf59360c30a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4362a20b-42e4-4b02-bdd1-9360e27f3925", + "TenantName": "Tenant-4362a20b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403247518", + "DeviceId": "defb01c4-fa3a-4f82-9111-323862358d54", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164559420", + "DeviceId": "aa257d7d-b10c-4f2a-af27-0c7fd8f41275", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547860605", + "DeviceId": "d3cad7fe-7454-43ae-83f6-ac2467c6590e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_778675665", + "DeviceId": "245dffc3-40d5-4e2e-85cd-f7a84020e074", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679258291", + "DeviceId": "f383b67b-711f-4aa7-9ad5-84a72d0e7cc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_333658760", + "DeviceId": "ad362686-3e99-4207-beb3-0eb4859fddef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "15d252cb-3a5f-4b1b-bdad-db5a0a031a00", + "TenantName": "Tenant-15d252cb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618713132", + "DeviceId": "b22d04ff-696d-4928-9f47-2c9e1cf90692", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_128082175", + "DeviceId": "1bb54476-7801-465f-8446-9cf3454aaa60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_675062362", + "DeviceId": "1c11e0c5-bf33-41b4-9d03-b9c149288f51", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347565314", + "DeviceId": "f677a576-03a2-4405-a078-a400982fcf7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_203286733", + "DeviceId": "9750d83b-19dd-483a-b4a4-6d1dc9438a8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_983312022", + "DeviceId": "7572ec07-1310-4e1e-aa76-fddb60874334", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c625bcec-da35-4194-92b1-05f99fb01785", + "TenantName": "Tenant-c625bcec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255024843", + "DeviceId": "8e287c48-696f-4b45-b223-78bc9fcebae0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_156122407", + "DeviceId": "1dabf664-7e40-44c2-acce-5a03cd79e2ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_773885333", + "DeviceId": "0137a976-c1ad-4937-8260-fabaffd838bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_262970061", + "DeviceId": "5490a3fc-dfb5-45f1-898f-c556c272dfa3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_291310317", + "DeviceId": "74281904-053d-45d1-9b92-fa9012f52124", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393829381", + "DeviceId": "61552d63-90bc-4351-985e-16465157f3ee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "22e7a0d2-291e-4a3d-b85d-19d670744953", + "TenantName": "Tenant-22e7a0d2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773395886", + "DeviceId": "0c9a10a0-9b48-47ae-a540-04b05dd69388", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_421905064", + "DeviceId": "1104a924-360c-4cc5-bb7f-0ac18323760b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370879348", + "DeviceId": "71642b73-7bcc-4fac-8665-2278c6130674", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720757461", + "DeviceId": "22a312ec-6fdb-4dbc-8fcf-609ff9f588a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_538227877", + "DeviceId": "3b53fa2e-56b6-4b81-abe6-388977445445", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_952233929", + "DeviceId": "26110b05-517f-482d-8d16-a97ccd1aa3ac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6db30680-0298-436a-9876-ba28a14960ab", + "TenantName": "Tenant-6db30680" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244932964", + "DeviceId": "240e1f19-cdd3-4907-aea2-bf25fc18b489", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743336600", + "DeviceId": "c3bd88e0-1e23-497e-a070-472e32a414b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530264906", + "DeviceId": "3bf111b0-9af2-4f7d-a303-034d4fbc3553", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_903827374", + "DeviceId": "a06b1ab2-7351-4ad1-b2dc-408957bb47f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747898344", + "DeviceId": "5bf58c5e-c91d-4ab4-9ee5-8355f4faa07f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_454400535", + "DeviceId": "3851c114-bcd8-4264-9cf1-e73b6c197a10", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d100157a-8cde-4ec8-b60e-fdc897af9330", + "TenantName": "Tenant-d100157a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115600429", + "DeviceId": "da3af00e-de20-4cce-b929-3579aa6549d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423212794", + "DeviceId": "681a0f54-4a67-4272-8647-356d3f5b1e19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469632658", + "DeviceId": "9d04ec50-bf87-45da-bb06-4bc82ee2e6d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_723686070", + "DeviceId": "05cb021f-5185-4e73-b8b4-d9525462eb55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727537015", + "DeviceId": "37804d05-1861-4f32-b58c-f92e494eb9bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_154114534", + "DeviceId": "45a9b19d-e01c-4c86-957a-aaabcf2d4d6c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "711b6fbf-5e79-4d16-af9f-e9cecf4c8fad", + "TenantName": "Tenant-711b6fbf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677664305", + "DeviceId": "b37bafb0-3709-4eb2-b227-55d36b879e0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_447828490", + "DeviceId": "0fe422a0-729b-49de-a1af-c495b62e9cb2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729027553", + "DeviceId": "d41989d0-c954-490f-86ce-6a6a9c1cb827", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622268173", + "DeviceId": "c7d6f222-371a-4ba8-8913-857fbfe24e0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_652472348", + "DeviceId": "fa5023e6-d915-473f-8668-a2fdf54489c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_648114706", + "DeviceId": "4b357970-8f58-4d9a-8a2d-2e008430994e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "60604cea-68bb-4756-acfb-3e484dc01faf", + "TenantName": "Tenant-60604cea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_943879197", + "DeviceId": "3455daf4-da14-47f4-b487-56c9893182d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_173213329", + "DeviceId": "4d80574d-9794-4cc2-a865-5674eacf8df7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361724452", + "DeviceId": "9ac8f005-d22c-463f-bb9d-88cfefeae995", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405489748", + "DeviceId": "6891ef8c-c935-4f6c-a0d5-ce127f6b8a09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_856183673", + "DeviceId": "9c73903c-ca85-44fe-9569-ec5a22781797", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_636784773", + "DeviceId": "62f24d9c-7ea3-4f1e-a5a1-a74e5548dbee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3ff1a586-2ec9-41c6-a397-4112e4f66b30", + "TenantName": "Tenant-3ff1a586" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927480239", + "DeviceId": "b7805f60-0edb-4a80-9783-4a7b86023f29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466182451", + "DeviceId": "cb1dc9e0-70b2-4602-ab70-8f991706a24c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937061036", + "DeviceId": "cf1ca18c-2add-4137-b213-b245fb269cb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643514093", + "DeviceId": "209affba-ae8b-4e6d-bb32-64d2da44575a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709769556", + "DeviceId": "0e68ebd8-0eb9-4570-af2e-c4576afb4464", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_965017956", + "DeviceId": "466aea3c-c840-4da8-850e-9386e21d4d31", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4029ba68-f9ba-47c2-b290-1f06f8761c9b", + "TenantName": "Tenant-4029ba68" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699129526", + "DeviceId": "951525b5-c320-422d-9ff2-8b12ede3ca88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107408333", + "DeviceId": "8c49576d-e692-459b-9529-cfc81178d5f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206038270", + "DeviceId": "c9939f5d-ab0c-401f-b4ef-600b7692bea3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933614222", + "DeviceId": "3bfe7887-6e99-44f4-ae26-dd8acfe8d007", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897615124", + "DeviceId": "155c289b-f453-4d7b-9ab8-ddd2b45f2b11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_929458457", + "DeviceId": "1980f553-a40b-48dd-923c-43143fef03c8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7d995b25-66cd-4274-9f6e-657614ff8cac", + "TenantName": "Tenant-7d995b25" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803162753", + "DeviceId": "11262c11-fb0b-4083-ac52-db1624ac6ea5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_890159261", + "DeviceId": "d4271a4f-1bf4-44db-a9b2-c3d5209b8bd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679823506", + "DeviceId": "6191ad8a-1c56-4eaf-a7f9-4efd8f95e36e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956195577", + "DeviceId": "f98a8f93-391e-4315-aa0e-d218e470c2dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_304416966", + "DeviceId": "d62ff1ca-83aa-411c-8392-76c3e4d5aef8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_418730428", + "DeviceId": "f5c945b2-26b1-49d8-bd85-11da4df6a03f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3d49af31-3293-4775-b702-00caf828d27c", + "TenantName": "Tenant-3d49af31" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425214827", + "DeviceId": "ea8bcbff-116d-412e-9f2d-5ff6436b22ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_165190468", + "DeviceId": "2b7a2518-1d4d-4efd-932c-91785c9c7b55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161698915", + "DeviceId": "967be273-5e86-490e-ae15-9ec0f5484411", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720352476", + "DeviceId": "6904cf5c-0d44-4f44-ab21-f521769417ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260945539", + "DeviceId": "be5dd1a7-b7aa-4e18-81b4-fc98f3ce591f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_800721683", + "DeviceId": "5280b3f2-85c9-4dc7-bff5-da5b608de52a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "656beed1-2c43-41c1-8c65-e1fb4bff1d3d", + "TenantName": "Tenant-656beed1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671786151", + "DeviceId": "53c9b702-8ad5-483b-9f33-af011b3a7b3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609641212", + "DeviceId": "b76ba793-0ccb-4c52-bc3f-7420dd9f2f31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862666310", + "DeviceId": "681618b8-f699-4be6-96e5-e57796704121", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_588634141", + "DeviceId": "e53b22fd-a0e6-4e96-ac03-4fdc547a8147", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_684974260", + "DeviceId": "c9510003-3176-4d20-b0c0-1c7fedeced1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_540284290", + "DeviceId": "27c5c97f-5f02-45ea-9cf2-c40942fb7497", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e9c8f92-5fdb-4929-930a-de8a14c5de0b", + "TenantName": "Tenant-5e9c8f92" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500612918", + "DeviceId": "5925ba77-828a-4e39-bc34-b1dd3add1e53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787081429", + "DeviceId": "87a26c94-cf73-4320-9479-2c6ecfcd3a3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727475453", + "DeviceId": "ff78e155-40ab-47dc-98fb-af4a1ae2eafb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405657403", + "DeviceId": "00ca2915-2665-4146-8e42-d554ee4f298e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_753542791", + "DeviceId": "3d47197d-2e64-4d08-9fea-4319e26ea0b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_665406664", + "DeviceId": "bfd12a06-e4fb-457f-b947-b1f357b2e70b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a67c45ee-ddde-4556-ade8-69de7cdf036c", + "TenantName": "Tenant-a67c45ee" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559217265", + "DeviceId": "307f2d7c-0e14-4c00-bd89-8ec4456e9f6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_321920573", + "DeviceId": "ffcb0d35-1696-48d9-b28c-03f78547ff04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574561486", + "DeviceId": "3881bcd3-1496-40dc-8f50-86fc16fbf281", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_648524727", + "DeviceId": "bb2e85df-2334-439f-8528-446e515695b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_684392065", + "DeviceId": "c3b26efe-44cb-4e55-a990-86a1685972c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_565501653", + "DeviceId": "15762e8f-b9a2-4fa6-b38b-70eaecad32d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be46d1e5-5e3d-4a2a-9182-9928f3da4d64", + "TenantName": "Tenant-be46d1e5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506398850", + "DeviceId": "810b4b15-5b11-4b2d-b40c-e715ebe5d9ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409225285", + "DeviceId": "a6f8652a-602e-49f2-8de9-2d783bac0c06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_750002965", + "DeviceId": "ceb7b470-15d5-4c4f-99ec-a8a9efd48dcc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109667653", + "DeviceId": "137d79f1-b958-4adf-9732-fed119f224d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_627611665", + "DeviceId": "60c063ee-84a2-4772-ab2c-d7b72a405bc5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_465502272", + "DeviceId": "1a2207de-9936-4c87-a0bd-483bb7452939", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5fbcd8e6-088f-4aa7-a322-24fb71868cfc", + "TenantName": "Tenant-5fbcd8e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239918203", + "DeviceId": "e28535d5-097c-4f1c-b353-a801b87a80d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301541598", + "DeviceId": "a9feee0d-eb56-4ff0-82b4-551a65248937", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659036350", + "DeviceId": "904b4e8a-db2d-49da-9c9d-f5a85508e34f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399075624", + "DeviceId": "8eb70809-d9c3-4e5f-a284-465db8f7e55c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_302975861", + "DeviceId": "ac10cd93-7032-445c-b8f8-598651a0c29f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_206114660", + "DeviceId": "ea943398-d34d-492b-8170-7887ef04ab76", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "57a1e1d6-26ca-4361-8c66-9ab4f33144a2", + "TenantName": "Tenant-57a1e1d6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798185588", + "DeviceId": "fe8c2adf-1cdd-4345-957f-6e7152f0a309", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159268809", + "DeviceId": "b8f74fd8-9836-42db-a6a4-76b82201094e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139733986", + "DeviceId": "d9d3c641-8860-42e4-9433-f84b868f2669", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965364866", + "DeviceId": "d1d6f100-8c90-4ccf-9586-07bbd01a9a4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708051726", + "DeviceId": "f5b38200-b1d8-4a4b-9328-569d6dd10386", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_599691043", + "DeviceId": "f155ed99-1781-41b1-bb9b-4d1d40436617", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4ae7f0a5-8e2f-4583-b771-d9d3b2428d6f", + "TenantName": "Tenant-4ae7f0a5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433509513", + "DeviceId": "f236e07e-d82b-4a19-96b1-5bcc09d689c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327737879", + "DeviceId": "2498a66f-e39a-4862-b45b-7024359a329c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694129198", + "DeviceId": "d79dde8d-4bac-49d0-86db-c82494efb1b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154189521", + "DeviceId": "e3277a1b-6f25-4379-88d6-61e0a0e936f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_504742098", + "DeviceId": "976a22df-8efe-4631-9ca5-11275ddf91a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_696475644", + "DeviceId": "4ee8c420-7548-4cb4-8504-d3ca988eaa7b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab23eb50-4134-4c22-8edc-451ad130877a", + "TenantName": "Tenant-ab23eb50" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_132915819", + "DeviceId": "64c84199-3734-4078-a7e5-2dced4116c7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_493163640", + "DeviceId": "8594b520-31d1-4c8b-9929-cbd0e7ee12d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728788142", + "DeviceId": "84d6e747-42d1-43b4-a81e-bb64040c779e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519363058", + "DeviceId": "bff8c1ba-c1e2-4b43-92b7-d4a275fb0aca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999871630", + "DeviceId": "7d523164-7956-4e6d-9669-033a8df35929", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_280605944", + "DeviceId": "83033aa8-c43a-4b8f-80ad-2a7b6f0f206e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8376e491-01e3-4632-8404-c1b5321fd6ce", + "TenantName": "Tenant-8376e491" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619728687", + "DeviceId": "1ddc5252-ee5c-4292-816a-bda726a6ec25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_251389694", + "DeviceId": "a825b586-3a11-4bf6-bfa8-8eb4333cbfe3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_417630885", + "DeviceId": "52591aca-2cab-4315-a23c-9294c5cd1ac5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902799828", + "DeviceId": "3be80df4-e215-401e-9070-4682c98a244b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614675309", + "DeviceId": "ae62f0d8-9053-420a-b446-c5ebd101e9c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_118024586", + "DeviceId": "448a2185-6d2f-4b07-95ef-e3272a17babe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dc097c80-bbb1-4a00-a3e4-d2cc6a076500", + "TenantName": "Tenant-dc097c80" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929606889", + "DeviceId": "cddc9cff-3b44-4894-aa39-cb2c45241b70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_208934472", + "DeviceId": "e8b74b4e-3560-4166-8f4e-788b09368d99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187820756", + "DeviceId": "a1e62353-9dc5-4d8f-acca-9100bf287591", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851869753", + "DeviceId": "d88d7121-1784-493b-a32e-222a9d0f94b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181044431", + "DeviceId": "741f5376-ff8d-4823-a593-ea4afee330dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_658070095", + "DeviceId": "46b24e87-b172-44c6-a621-ae4217666107", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "684e979f-f16b-4b68-9ec1-cc7c5ac616b3", + "TenantName": "Tenant-684e979f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772520084", + "DeviceId": "753e3386-7ac2-4b67-a448-b83af2078845", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601554753", + "DeviceId": "bea61bda-c992-4a7f-b148-caccf8404c76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_387377500", + "DeviceId": "16e8129f-6caa-4dc3-b3b7-5ec9830a42aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869032208", + "DeviceId": "a66568a1-2f69-4d97-8799-5c60e0a0c948", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401375412", + "DeviceId": "04f5de4a-5021-4b17-82df-8e23850f44ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_564323614", + "DeviceId": "00a7c078-ffc9-4765-8f92-366d1b795e58", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "21c89c34-6da8-4ef8-b82d-ffaa8905ba2f", + "TenantName": "Tenant-21c89c34" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_859728834", + "DeviceId": "a75cec88-c24c-4126-9380-e62df356c3a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779545122", + "DeviceId": "005caf6a-53c1-410f-8a0f-d9baf398f856", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524836353", + "DeviceId": "23121958-fe1e-4946-9992-00ed42e40b40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213864098", + "DeviceId": "dbe4b1d5-3172-4d86-8c3d-d2856fa5162c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319763705", + "DeviceId": "f80324a1-43ab-4f82-b238-fc0a452eb61d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_896610071", + "DeviceId": "910f94c0-9664-435f-bf20-da4d95f3a531", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5885eb6b-b941-4380-bf8c-689dd4e4c51c", + "TenantName": "Tenant-5885eb6b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_335985562", + "DeviceId": "46fe10e3-5a77-4c00-a09e-8d13079e2dc3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245628831", + "DeviceId": "205fd1ad-7d7e-4fdd-9dc9-d4720189a717", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591753755", + "DeviceId": "8088fbf9-2335-4ec9-900e-fb755f01f134", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720902005", + "DeviceId": "8e8b4651-bbc8-4571-b6b9-7f9cf18a3f20", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621325556", + "DeviceId": "7225b7fd-59dd-45ef-a607-c80ea6efea8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_419868203", + "DeviceId": "4a3b4f40-8443-4120-af22-99ec119103d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "93b2ff40-e1d2-4260-a48d-c8a176256c5c", + "TenantName": "Tenant-93b2ff40" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713044548", + "DeviceId": "c3b61db1-1932-456d-88ab-3e5a841b3815", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420005714", + "DeviceId": "2247cbbe-d1c9-49b1-b7ae-1becca22cbb7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145658614", + "DeviceId": "20a6eedf-d6d6-413f-a81d-1fc6dc3051c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781129940", + "DeviceId": "279741ee-9b44-49ca-ba2d-90a280e85b34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475745360", + "DeviceId": "3d5898bf-189e-4894-a82c-222142ec18cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_556275232", + "DeviceId": "44f8dc5d-db05-4927-80c3-e1871b385c85", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9e13f737-87fa-4e3a-acd5-3cef01e06cd8", + "TenantName": "Tenant-9e13f737" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535696812", + "DeviceId": "b0ea09df-eba7-44c3-8cc4-b58d2673193e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_105240608", + "DeviceId": "93e3f2fd-61b1-4341-ba60-bcf4c50c13b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848926235", + "DeviceId": "39d70b15-dfe2-4e3b-abe7-b3f43d7b4667", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913506706", + "DeviceId": "95398e55-ebbc-4124-ba58-615ac8c59a3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_983180152", + "DeviceId": "eef4a516-dab8-4725-a37a-0042c3f17b40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_513874564", + "DeviceId": "7e2cbe60-4f13-4746-812a-e6d468db83bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9146276a-21e2-429a-a064-48c2142cceea", + "TenantName": "Tenant-9146276a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_554826419", + "DeviceId": "6da6d191-1bea-44fd-ade1-b321645e3dfe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320667788", + "DeviceId": "422df140-79a2-4c52-b236-33c154833e50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904136671", + "DeviceId": "0fbc0f55-8ad3-4e0a-9efd-21e138d240cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552901611", + "DeviceId": "801edb5c-9c39-4d5c-bf99-c75720a1479c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_819830417", + "DeviceId": "4ec4c1fd-75a4-4ea5-b509-bdf751e50157", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_186321521", + "DeviceId": "28334e8f-d9bf-4353-b0c2-ea22782e7da4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8bd19b28-e95b-4d23-8e98-519b5733cb35", + "TenantName": "Tenant-8bd19b28" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_367076471", + "DeviceId": "1cd2d1a8-d566-44dd-86e3-b6fbe1ed633b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408512201", + "DeviceId": "77591c0d-6cb7-49f4-9fb4-a74afb6d767b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910929087", + "DeviceId": "fe474359-ff7d-4aeb-a8ea-a6ce738192e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506465581", + "DeviceId": "fb4d8f9f-e159-4c93-96a1-b576d01104ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351896438", + "DeviceId": "447dbb2f-09df-4ccc-8acd-92509aaaa5cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_779479250", + "DeviceId": "0037c315-cc7f-4940-8b7e-3a14dd6624ae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "82c22ad4-20d0-4615-9aac-862aef8ab6de", + "TenantName": "Tenant-82c22ad4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944957451", + "DeviceId": "e640121c-832c-4d21-9cba-8a3279809ec6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_137652159", + "DeviceId": "b9e09ee4-a17f-485f-9b6e-5d31ccf4d959", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815301047", + "DeviceId": "78a03ae2-3467-4989-abea-2d13aa0b5541", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730723548", + "DeviceId": "28f3c01c-98e5-4d2f-96f4-3e8c1ef15eea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496432187", + "DeviceId": "5cc07336-983d-45be-8943-5f8437878ffa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_458532451", + "DeviceId": "a1a5bcfd-7fe6-42c7-8903-65f39b8e3eb9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "855b9d81-c4fb-4b9d-b2b2-7d28f5adaea1", + "TenantName": "Tenant-855b9d81" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242144026", + "DeviceId": "9e2ef0d2-1f9a-4a24-a87d-3e6c285755d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131581293", + "DeviceId": "f7e40e30-1c7a-41ec-86be-51874b85acf5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479106190", + "DeviceId": "4e6a71e0-ded6-43fb-824e-a996fdc68072", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477106862", + "DeviceId": "ea9adfd0-30f5-4d6e-9aa5-7a96ed6d516f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670918706", + "DeviceId": "387f898f-ffde-426c-ac9b-8c25fb903909", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_576304639", + "DeviceId": "17e0c166-2955-4bed-a5dc-a0c776fe304d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9d3556fb-49ae-49fc-ab53-42792a8ed29a", + "TenantName": "Tenant-9d3556fb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526522661", + "DeviceId": "75469236-b7f6-4605-8d2d-0f1152366593", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_224643455", + "DeviceId": "838cc5b7-f2ab-469b-aebb-fe5a5a1ebbc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_516106583", + "DeviceId": "f740b020-5335-4499-94b1-343758e45ac5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_571548413", + "DeviceId": "b3d04ca6-0c1c-42e7-968a-b4cff149bdd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911748393", + "DeviceId": "f01c3032-bd36-42f2-aed1-71813c334cc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_244887029", + "DeviceId": "47a3c356-6a3b-455b-a5f6-ad94a30db8a7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "762e75e1-cb14-4371-8bb5-54f7bde07b49", + "TenantName": "Tenant-762e75e1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751736562", + "DeviceId": "49188ca6-fa4d-4dd5-b17b-cab7f17fbc31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900908776", + "DeviceId": "00321ef7-a93d-4bbd-a416-ecefaccc3f1c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_824192694", + "DeviceId": "6ad543ef-044f-4a0d-bc4a-484c758df5b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_142243755", + "DeviceId": "1756f628-f6e9-4a09-91b2-a4fe4f653a2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918888460", + "DeviceId": "ce05bba5-b536-4362-ab0d-1db1f33b23e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_852068903", + "DeviceId": "84c8b158-5616-4c7d-b5b5-0c04280f55ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f1d9e894-a53e-4c26-bc26-bfa6ddbc554a", + "TenantName": "Tenant-f1d9e894" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168689013", + "DeviceId": "5127e370-8559-4237-b094-a73365c4a71d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_908689816", + "DeviceId": "c4273cc5-d21f-4332-9136-4c1eda15a58a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_248782379", + "DeviceId": "7120009a-0fc8-404c-88ab-6e2d754191b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476853699", + "DeviceId": "c09a16e6-3d66-4dcf-b221-381db7572dd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_982531273", + "DeviceId": "037520b2-72cd-4d74-8b17-4b025147bc08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_537934147", + "DeviceId": "87e117ff-42e7-4566-8f06-581115b82bb5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7cffb088-c547-4468-84f2-8f00d064f2cf", + "TenantName": "Tenant-7cffb088" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_816700470", + "DeviceId": "8cbc15b1-c4a9-41b2-ba41-20e9498be111", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372355179", + "DeviceId": "25580612-d8e7-4ee5-a682-fd9ebe56df56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_990223065", + "DeviceId": "06a27195-2f11-4017-b087-2cfe39211a13", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487296583", + "DeviceId": "d873e7a3-ceb0-4ac9-aa6c-0665296aa9f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_308400432", + "DeviceId": "3c5ac508-bf81-4181-b5eb-c47b224a0c98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_337585204", + "DeviceId": "5fdb8388-fdac-4daf-b49a-6e9c44bc5060", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "403a2ea8-d31d-4c2e-8897-429c035573ec", + "TenantName": "Tenant-403a2ea8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_792143001", + "DeviceId": "f20339ba-4ee3-4b70-aef5-d9ab9524a9e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970922247", + "DeviceId": "16685d7a-e7af-4056-8295-5a65dd696ecb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244520897", + "DeviceId": "c7b94ac0-4d93-4d1a-9e45-f37c84cfb836", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143397915", + "DeviceId": "ced2e39e-25a2-4a3c-8b4c-47c55640795b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154012145", + "DeviceId": "27e96d8c-e3c6-4187-94da-9fbd4f5b1120", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_700184157", + "DeviceId": "6c32b11a-d75f-4c05-8476-f05859f42d7f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "360ea393-bd48-476e-91ac-e600013cc68a", + "TenantName": "Tenant-360ea393" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332542507", + "DeviceId": "1b4c83c3-a129-4e97-8096-92a793eef88c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126064104", + "DeviceId": "47ce5cc9-6b38-485a-94d9-740e4db0f33b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908765415", + "DeviceId": "4b789844-7b88-4253-b044-a401303a05ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500529402", + "DeviceId": "531346f5-b4d4-400d-bdf5-6ff0218cbfc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247672951", + "DeviceId": "d74cf55a-3a59-48c3-8b69-b00caf865ef6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_812187585", + "DeviceId": "03a1ef0d-bea8-44bb-84d3-6a591745daf8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd86a3da-707b-42fa-a2de-09ef9e47b4ca", + "TenantName": "Tenant-fd86a3da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513703839", + "DeviceId": "60d14961-62f7-4f4c-9cc9-9a4fb46d5e61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323081335", + "DeviceId": "5a552973-2f24-4b74-a40f-c55d9591c8fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929626408", + "DeviceId": "9099d8e2-3c55-49ab-ab6f-9288960216a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591211465", + "DeviceId": "5d9f1e36-25fc-437d-93cd-20b81edaaadc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_895253094", + "DeviceId": "bd52fb81-f59b-45f8-8226-32e3d3c7c958", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727895103", + "DeviceId": "40647c95-5463-41a8-b5b1-cf8cb32b57e3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8a6f81e1-41c5-408a-9c23-b5c8c6994f45", + "TenantName": "Tenant-8a6f81e1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_630217510", + "DeviceId": "05ae49a4-9eb4-4284-a526-9d54400e2954", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264451962", + "DeviceId": "e046d5e1-b236-40bd-be2a-0ceda1066487", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375542181", + "DeviceId": "6161db77-4b3b-455f-9a78-78917941e62c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_847836077", + "DeviceId": "bf6860c6-a99f-4c5b-9cbd-06bfa649426c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619202344", + "DeviceId": "f179eaa4-7d89-43a5-a87e-2b4d4a4ba571", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_341011164", + "DeviceId": "380039a8-1e3e-435a-9cee-cc4771ae9a2c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "90e92345-5dbb-4569-a7b5-c0ba98f2ce07", + "TenantName": "Tenant-90e92345" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_204333834", + "DeviceId": "ab723e80-8f8b-49cd-ad1d-730cd31f8900", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_908376073", + "DeviceId": "ea3a78bb-9d7e-4889-8136-48bb6759822d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_444345025", + "DeviceId": "cccfcbc9-6a1a-4c7b-aad9-10393e56fc25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278036403", + "DeviceId": "43feeee3-ce2c-4bc1-9d42-0ad35c2e4868", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649087747", + "DeviceId": "5da1b6c0-5f43-458b-9ce1-1b3efb69ac1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_917441751", + "DeviceId": "e5b53d69-36e7-4b38-bbdb-3b36903303b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cc5b7d10-4f08-49ad-9551-375a74e2bae4", + "TenantName": "Tenant-cc5b7d10" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882052193", + "DeviceId": "b5ed7aa9-43f6-46d4-8ef2-c61c13ce9013", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429459333", + "DeviceId": "60fb46f5-24ee-494a-95f2-7537e53125d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401695943", + "DeviceId": "1a4ef5df-9b00-4eee-9a11-c8fc76a9e595", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138175578", + "DeviceId": "3dda337c-0781-49e8-bf0e-7452ef7a3ccf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233537374", + "DeviceId": "27bf2b6f-4f01-491b-b0c3-ac6c16356d54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_444317833", + "DeviceId": "80d305ef-0318-488c-8431-25cb054ad2cd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c2399b86-394f-4ef4-a3d2-5d7e9e669f03", + "TenantName": "Tenant-c2399b86" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_421389670", + "DeviceId": "56339bc7-c2e3-47f0-858f-7252d7630109", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670151967", + "DeviceId": "d9fa7349-d354-4004-975c-34ef05cd261a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672436797", + "DeviceId": "d9cad1c5-b1cb-4195-b8e9-6d00fc294592", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622403275", + "DeviceId": "e544c490-7ca8-4c22-8ebe-00b8f80126c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290240281", + "DeviceId": "73fa744b-a41e-4df3-92c1-f9a19e03345a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_731676741", + "DeviceId": "7548735e-e15a-4936-a579-0d94ded531e2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea2d4b8b-0bbf-4e41-9e29-5e65aeb74055", + "TenantName": "Tenant-ea2d4b8b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103898399", + "DeviceId": "0ca00eda-2756-4677-b644-7223e32d48a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_544331057", + "DeviceId": "e69df0b2-9877-4f9a-8fa7-849c4ef71926", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613090626", + "DeviceId": "88ccae2a-debc-495e-a369-8073d6581890", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_449184250", + "DeviceId": "61b582cd-1f6d-46b9-9398-385353f89696", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260198482", + "DeviceId": "68cb7693-8800-48c1-8438-8873f05d3ced", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_521675073", + "DeviceId": "aeeda22f-c991-4522-935c-27afbeadb1f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "36337d17-5ec6-414e-8544-49ab7c942e18", + "TenantName": "Tenant-36337d17" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687415141", + "DeviceId": "09dd8dc1-513c-400b-8e58-b2d4d2ba53ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628937369", + "DeviceId": "66268918-2639-4611-a1df-62d8db386693", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_572346652", + "DeviceId": "7d194483-39e5-423e-a3b1-40918b4b4b4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457621162", + "DeviceId": "ec6d4bf0-dc75-4d30-8e0b-74e368216c68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929809103", + "DeviceId": "a1666c64-c03c-4239-bc3c-e1f39257a888", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_372336373", + "DeviceId": "d7aecced-de34-4b94-b7b6-64846e5f5b78", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6a67e3bd-dd8e-4a8d-ac73-e28d2ea515d8", + "TenantName": "Tenant-6a67e3bd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225951274", + "DeviceId": "a413b10c-d74c-4865-bef5-143b8c16f553", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826214934", + "DeviceId": "52eb4ff3-4590-4448-bc54-801b0d6a1112", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495023335", + "DeviceId": "b872436e-1d05-4863-8251-53f6d899a448", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942036639", + "DeviceId": "1178abd9-2432-43a2-be59-cc8b6d847c6c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_277186494", + "DeviceId": "82000f75-0d13-4a78-9435-5b07535043d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_953237732", + "DeviceId": "04d958a1-ce16-4bd8-9809-c641b8cbbe52", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "12cecddd-0c0b-4be4-b137-9066c32971f9", + "TenantName": "Tenant-12cecddd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109045461", + "DeviceId": "58344da5-0f70-4999-81fa-92e55a0272b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_338303384", + "DeviceId": "ad1b0f00-1a6a-4d67-83df-c4b0a39778b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575170893", + "DeviceId": "14f7f303-da3c-4ae9-8392-4a5ff8690fde", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_396045989", + "DeviceId": "8edc0f9b-0a71-4c85-8e7b-3e71184c8be4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198711273", + "DeviceId": "531fa34d-a5a8-4331-809e-1d8f265ecb4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_879083352", + "DeviceId": "82d9da8f-56c9-404b-8281-659ef35f2bc9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a6597164-3b51-478e-bc4e-a87ae92517cd", + "TenantName": "Tenant-a6597164" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668730426", + "DeviceId": "d437c26e-1af4-4d52-a5eb-ce7a1c3e6507", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727849283", + "DeviceId": "c0f21d5e-fec5-46b6-886d-24bbb70343c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_751239037", + "DeviceId": "2e8e6ad7-bd99-437e-9e33-7f285272e84f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158533462", + "DeviceId": "aa8dedcf-dbb3-4495-b354-98b9db178cd9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201033812", + "DeviceId": "ecbacbcb-2966-487b-a063-832d7a15b8cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_591571141", + "DeviceId": "e8a7b152-91e9-40b0-9bbc-a85b178db884", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "31d1f9d3-347b-45c6-b754-c2d5ac7f5c02", + "TenantName": "Tenant-31d1f9d3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108323168", + "DeviceId": "c50bcc66-297c-4f01-b9ee-8dd3337d3518", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_614150008", + "DeviceId": "fdf10b96-6ec4-42c9-9bfb-a47c7fde159f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667575412", + "DeviceId": "513f8d85-f470-46de-bae0-9918cb8186d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_587384998", + "DeviceId": "5e5443fb-62cf-4682-a160-067f745149e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_340622364", + "DeviceId": "f0af1acd-b8a0-4cf0-bef6-23b369b8fcd5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_409918643", + "DeviceId": "c13df2fe-1c1e-4265-ac97-d39b62bfabed", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "739d403e-f9d2-4552-9385-ddf1e5dcd0f5", + "TenantName": "Tenant-739d403e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601225907", + "DeviceId": "869596dd-f0cd-4906-b499-9863d1453add", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804877830", + "DeviceId": "2dd378d4-0147-490a-b8cb-5a4a094a6875", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_683667123", + "DeviceId": "0741fd70-81d3-41d1-9e77-36b1574eb16e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904316329", + "DeviceId": "1c631485-60e9-400f-8a83-1249ee33fbed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_819191626", + "DeviceId": "0ae7caf2-5ba7-4f1f-883b-4fffd9574757", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_963705172", + "DeviceId": "7ad87ff5-6975-49b3-a6b5-b526250c97c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0c856dce-6951-4990-a1b2-f50382e28436", + "TenantName": "Tenant-0c856dce" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844127139", + "DeviceId": "a22bbc28-483a-40e7-b102-62c494f3c213", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_902210845", + "DeviceId": "0e6a3a2a-36f0-4ed6-a66e-f42120629365", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290652008", + "DeviceId": "e119d4de-fb34-46a5-b09a-6a3a1ea96e03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512764872", + "DeviceId": "ed645196-4484-4acb-9eae-2f0c33b38fc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119839520", + "DeviceId": "660dbd41-668a-43c1-80cd-3e48b59a4839", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_743943488", + "DeviceId": "68aa132b-ac68-4d3a-bc44-f904c22fc9d4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fccf18de-decd-4f16-bb88-8e4fea3c4095", + "TenantName": "Tenant-fccf18de" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_180974536", + "DeviceId": "b88bed10-84c6-42f9-be25-892c4bdf27ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572143178", + "DeviceId": "cf2b5ff0-a2d2-4f8f-b3b8-40941f4f2f77", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201911025", + "DeviceId": "b72db36b-034b-4f9f-9114-a0a1bd32d9d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_280794043", + "DeviceId": "5e4e52ea-abb0-4bb2-a2b2-cefe36f9bfa1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310055408", + "DeviceId": "2e834d57-a8a0-4936-9744-1b19a8d93b23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_990297669", + "DeviceId": "d127a824-10aa-4640-b3fe-471fc2628b86", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d86073da-a2ac-4e07-bbcc-d6cc8455bc55", + "TenantName": "Tenant-d86073da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_715303862", + "DeviceId": "fde3f611-4622-4eec-8ccf-bc079bd50475", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_848435908", + "DeviceId": "146f27bf-f77d-437c-b2ab-abc15893700c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_655154756", + "DeviceId": "b2c39d51-03c1-4303-9dcf-3278100f0224", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469366669", + "DeviceId": "200025e0-968c-44d3-9934-8c0af1f6b3de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618784933", + "DeviceId": "564b6ad7-e1cf-41b1-b828-9c766da7732f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_801224195", + "DeviceId": "ae1a5b12-1b72-42ec-82bc-baaf49f1978b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bb18a6b1-60af-4e42-a430-13330d408d7d", + "TenantName": "Tenant-bb18a6b1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388989655", + "DeviceId": "8b30616a-8909-48f3-8963-58e7ea51cc6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_219729799", + "DeviceId": "780cd2ce-179f-4221-9ae2-cb0a7313acbf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165692608", + "DeviceId": "07480af9-6329-4742-ac05-2d864432cabc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206395414", + "DeviceId": "2688b74b-a724-4a65-83e0-b0523bc864d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_985527593", + "DeviceId": "86870cc8-dadb-4aec-8372-abef337fda65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_518855775", + "DeviceId": "928f5701-582a-458c-af7f-ee0b89bb3b85", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "72c56963-b903-49b0-a57b-806601e81194", + "TenantName": "Tenant-72c56963" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409035197", + "DeviceId": "4b66f7cd-4a10-409c-b959-f2c51eb73ec3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457193962", + "DeviceId": "9e63445c-c917-476d-9896-3517833001a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373353703", + "DeviceId": "5c1db316-fb47-434d-ab14-5b72bfba9ecc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152677170", + "DeviceId": "f2db7485-05e5-42f7-be3e-2c5a829e2358", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_243449616", + "DeviceId": "9cb06bcc-c84b-465c-8e5b-880e26ffde0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_188555816", + "DeviceId": "4bb3906f-0bbc-4756-ba5b-858d7a6151e1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed1123f1-6c72-4c74-a6e3-a390fb83eb94", + "TenantName": "Tenant-ed1123f1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542963027", + "DeviceId": "a1f4f45f-4144-4f12-b1a8-06db6545afe6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328835344", + "DeviceId": "69445036-e9c5-446a-b615-3c87e60704d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301590635", + "DeviceId": "ad66924e-fd6a-4f17-8a5c-6fa1a6b9a18e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761985975", + "DeviceId": "1eb85831-bc5a-4500-af88-7addc14b7748", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647332111", + "DeviceId": "8ffe9d7e-4b1a-48ed-8d37-d6dadbec41f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_307558128", + "DeviceId": "4a5b5a81-fe7a-4883-a292-69526aa0a692", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8385c646-945a-4eb0-bd05-1df0e4959ced", + "TenantName": "Tenant-8385c646" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951859470", + "DeviceId": "433e539b-33f8-49ab-aae4-829d94a593cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485106756", + "DeviceId": "5d136107-5ed2-43c6-a0ab-bd7f024549c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676356532", + "DeviceId": "dbeaab12-867e-4c1c-a366-2f9796657e69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_895282592", + "DeviceId": "3423ad6b-ef00-4fb3-bbbe-d2afa754c199", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616111248", + "DeviceId": "618a2578-591c-4e97-a224-de31cc7e5a30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527447583", + "DeviceId": "a96cff8a-b9dc-41f4-a3bb-c622ea048bdb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d50b4b6d-30fa-4303-af62-e5dc2b2d9c5b", + "TenantName": "Tenant-d50b4b6d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101278219", + "DeviceId": "bb991b98-3d05-4f0f-928e-e61657e994e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_209700589", + "DeviceId": "ffc6936d-ca73-4bb7-855e-9dc4bf825489", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_750789979", + "DeviceId": "ac5962f6-e615-4c3c-9b69-17bed36271dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_901059022", + "DeviceId": "ec5cea0d-4fd4-4ceb-92c2-885020a0012e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812987490", + "DeviceId": "5dc73c29-21b2-4cdc-8ed0-f4661f26b7f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_112425425", + "DeviceId": "54f76773-0166-4517-8335-9113e7f4789f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a87a0836-7047-4b13-a8b5-34344e122152", + "TenantName": "Tenant-a87a0836" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720699984", + "DeviceId": "b350cdae-3c2a-440e-8696-5edcc4bda2ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104984460", + "DeviceId": "d75297cc-5849-42e4-a374-d086031e4fe0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490294035", + "DeviceId": "05f00e61-27aa-4ae2-9f44-a7c9dbd466f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825851827", + "DeviceId": "3ef95e4d-c944-4f2c-879e-6525d7025d1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165123828", + "DeviceId": "6cb026f5-e085-4597-a518-c27105d68aee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_281629819", + "DeviceId": "dabc1809-d936-4486-9018-c5600bef9ffe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b54b8566-88ea-4a5e-8a0c-0f7ad61f7d7e", + "TenantName": "Tenant-b54b8566" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237192971", + "DeviceId": "c9c66fe9-cecf-4acb-96c5-201113296988", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407237868", + "DeviceId": "eb85a2de-0bc8-4d2f-beb8-19053d03b6e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_805552233", + "DeviceId": "0062428d-0744-4ad2-84b2-98e801d78d98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554224258", + "DeviceId": "000dcc11-7d6d-4964-b886-02ccaa468a4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742213951", + "DeviceId": "8203160e-718a-459c-b054-1c11970375a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_395173030", + "DeviceId": "73b98cc8-f86d-4f9e-b222-2d943f1fe43e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8ac19ed3-3bc4-4171-a876-324f904f94e8", + "TenantName": "Tenant-8ac19ed3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451926917", + "DeviceId": "80ee8cae-24b5-4abb-8e18-da6eb51f5eb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881105302", + "DeviceId": "c02c0287-366d-453c-835f-e62532227379", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424059333", + "DeviceId": "09ea3778-fbf6-4b16-b06a-8a4712013738", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670070376", + "DeviceId": "33513485-d656-4b89-9eea-8cf2d812e777", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_446547875", + "DeviceId": "d6cbbc5e-bd0f-4c66-9e25-07e1f9720a62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_763199152", + "DeviceId": "50bf00e4-8cd8-4c50-8e59-681ab24d20ef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eac37127-950d-42a0-b354-02da8f5af899", + "TenantName": "Tenant-eac37127" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290821601", + "DeviceId": "7b6eee24-f805-4d5a-8bac-af87f48d574a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168113107", + "DeviceId": "10fd04fe-b194-436d-83a9-bc26979907d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519184623", + "DeviceId": "edfc695f-520d-4018-a911-b622f3b1caec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408385424", + "DeviceId": "5dcf7456-6188-4ec9-8a08-23e2bc5b5210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_751459572", + "DeviceId": "2cab16ff-5ae6-4dff-bce8-7c8bca9c9a5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_455904352", + "DeviceId": "7bee8979-f1c4-477c-978a-4d89cf8d425c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bcfb765c-43e7-4495-87a8-31b581f7df71", + "TenantName": "Tenant-bcfb765c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_805425739", + "DeviceId": "f3ed2718-4ea7-45be-8971-8f937985db0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670905884", + "DeviceId": "32721e94-3b49-41c5-ab00-299a77d24c72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439814481", + "DeviceId": "105c7d46-1e7a-4fbb-a5ff-609cce0c4c75", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691245453", + "DeviceId": "d329f3dd-6298-44bd-aeaf-f9c572a441d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740337868", + "DeviceId": "1f4da055-8399-4f54-9498-58208b1ae367", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_699281046", + "DeviceId": "49b80c77-2387-43d5-9314-bb41b7f3c403", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6bbe0b85-a3ea-4721-acf0-7d9e9ab3b61a", + "TenantName": "Tenant-6bbe0b85" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192310332", + "DeviceId": "4cf60b00-4135-4d31-ba48-3e985810f011", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_197272900", + "DeviceId": "5ff06eb9-bec4-4cde-9814-62430418a100", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_403582520", + "DeviceId": "61342ab5-ec45-4bc2-a43d-f5d6ae7057cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188691068", + "DeviceId": "9efc1045-a7c7-4da1-8d57-093120348c36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223656694", + "DeviceId": "cce6694c-d0db-42aa-adb7-eb2176b9e0c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_260464659", + "DeviceId": "bd265cab-a831-405f-b6c2-6e9c2f82d8f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af4cb112-91c0-412b-9075-76c472929d46", + "TenantName": "Tenant-af4cb112" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131659938", + "DeviceId": "4d61ebbc-eb1c-4bfd-9554-db8c914f9a4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_795380276", + "DeviceId": "136fcf00-2251-4f2c-a894-810d8c239a09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270048445", + "DeviceId": "bb9a5ecf-42d0-413d-bf8e-243764df585d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488763051", + "DeviceId": "8c2898e9-2a0d-4af9-8810-56de36b3daff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619472927", + "DeviceId": "75145c75-7932-452e-96fe-8d7a02db240d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_497371502", + "DeviceId": "bb1cbb0d-964d-4333-a92d-6a2af87f909a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "16a12805-d3e8-4344-932c-bcfb46ed1240", + "TenantName": "Tenant-16a12805" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437950077", + "DeviceId": "f29d1c2b-8d0c-45ae-8a07-184dcbb8607d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694502366", + "DeviceId": "5509a584-3844-411b-8d8f-4f461482b85d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843895748", + "DeviceId": "c7359c98-3292-4a8f-9e9a-bc3a22a4b1ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_498674192", + "DeviceId": "eb3fb939-2e87-4f76-a711-6335d5bca439", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_870762172", + "DeviceId": "c1b957d6-55da-4373-8b76-f4402b952307", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_416006080", + "DeviceId": "b5bdb70a-8ed3-4388-95a6-fc1f27a7d939", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9dcef419-58a0-41d7-ad28-8d401711a2a8", + "TenantName": "Tenant-9dcef419" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591860600", + "DeviceId": "7e72063e-6702-49e9-bd17-6df4db1bac16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713711518", + "DeviceId": "070aeeec-e246-44bf-a372-17fc90cbbcac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384399131", + "DeviceId": "5e43de11-cb7f-4475-9d43-ad0773683227", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_415844856", + "DeviceId": "fc5e18e5-ed42-4b60-b18f-60722fa1dc3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320441174", + "DeviceId": "7819e288-6a5a-4716-8012-71fd811b475b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_941354449", + "DeviceId": "6d37b499-3b73-4965-892f-547f29485fc5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "534aabbb-2274-4871-b778-eb719d54ffd4", + "TenantName": "Tenant-534aabbb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168290432", + "DeviceId": "9b67842a-91dd-4152-bd1a-d7749db630fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484419104", + "DeviceId": "eb9b3fea-4266-4dc7-8d15-eba618264124", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195201628", + "DeviceId": "83fc2178-9017-4089-9b54-eda5a0965768", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204336758", + "DeviceId": "5cf87ce7-82a9-40d1-b254-557ffbfde1e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961377911", + "DeviceId": "f68392d8-e3cc-4f18-a83f-66ceac76ecbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_753249739", + "DeviceId": "baf94ff7-9699-4888-af0c-d88fdbd349f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "22fc0264-cb8b-45d1-8abd-caa8cbccfc7a", + "TenantName": "Tenant-22fc0264" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207726547", + "DeviceId": "3a85e8c8-2301-4d5d-9a04-d058cc5490aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596052009", + "DeviceId": "aceda4c0-ae6b-4d0b-843a-c5bac00a49f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718648642", + "DeviceId": "f59b0268-6777-498b-926c-76296238569e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_221394528", + "DeviceId": "c906e407-58cd-4b2a-a3da-8f5bd7264ae2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765712765", + "DeviceId": "48be4fee-0cc1-46c8-9c57-d8fffcd56e0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_606388487", + "DeviceId": "b5a0dbbe-2cb3-468f-a027-356162cece7d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aa7768ee-9578-455d-ba9c-42d68cc70578", + "TenantName": "Tenant-aa7768ee" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274654825", + "DeviceId": "e54ac145-20ae-4066-a290-901775e8a119", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147227740", + "DeviceId": "d024e7db-237d-49b6-9568-3ccd3bd562e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989568139", + "DeviceId": "ba19ac36-17ed-4cfb-bc47-7fdb5585271f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427242309", + "DeviceId": "9b797ab3-11c5-41d4-8f7b-29955a08439e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_919351008", + "DeviceId": "cee8cbb2-f98d-493b-b75a-34e2651f45de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_231072255", + "DeviceId": "55649a83-9790-42e8-8545-22a3ae944f6d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ee876e88-ede9-4905-b115-4c3fc812c909", + "TenantName": "Tenant-ee876e88" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532117892", + "DeviceId": "d37210ff-1e32-4528-aff8-675ca4ee7b47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731206744", + "DeviceId": "eaf39171-da7c-4125-8f9a-647c2d76654f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808117171", + "DeviceId": "2f34c79f-2bef-48f9-92a0-c1a646f4c77b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392752577", + "DeviceId": "2ae044a9-3314-489e-85a3-5af82d316a92", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164903328", + "DeviceId": "7b3573de-0410-47c3-9cd8-af09ad070898", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_451017439", + "DeviceId": "98db3981-f2fc-4757-83f3-ff4ca9fad3cb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "045d8d9b-3aa5-4e78-8fac-fc4d83d5a639", + "TenantName": "Tenant-045d8d9b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_296472471", + "DeviceId": "7464d2b0-9614-4e4a-97af-f963610a2f3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646305792", + "DeviceId": "48d2decb-8589-47fa-89e9-e178f9121cbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_340042640", + "DeviceId": "35ed4b5b-eca0-42a5-8646-4cb394848f03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386182407", + "DeviceId": "81991321-76b9-448a-86c3-7cf921699acb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612361925", + "DeviceId": "8248de0e-2586-4670-b249-c0943b290bfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_903454329", + "DeviceId": "a8b3fc8b-105f-4e12-af77-f70f16eafe21", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "308bc60d-e58a-4216-9d1a-a5ab63f6df73", + "TenantName": "Tenant-308bc60d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957045110", + "DeviceId": "8bf7354e-9b78-450c-9f33-155580a48f26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668405008", + "DeviceId": "933244c6-ee96-4f2e-a930-5ea3402fb383", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963471843", + "DeviceId": "f9585ffe-4ddd-4611-a838-7b96b8e066f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_444465394", + "DeviceId": "15b15c06-5f9b-4eaf-a91c-e8bf784e9f3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935039472", + "DeviceId": "d6ef1eba-0116-4bd6-9d79-a2f252635294", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_396991838", + "DeviceId": "e1dcb703-a39f-4f8e-a9eb-7fa0df965cf8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e7d2ece9-ce21-458d-a0a1-b4eec888ba56", + "TenantName": "Tenant-e7d2ece9" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260523.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260523.json new file mode 100644 index 0000000..b8c92aa --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260523.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874693062", + "DeviceId": "31443627-347b-4cea-9613-bd0c1e8a07f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229303391", + "DeviceId": "34d2805b-924e-4e66-a58c-52bc9386d39b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148533130", + "DeviceId": "23e037bc-ecca-4274-9970-27853f43802e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341279514", + "DeviceId": "2be35221-d212-4848-bb62-1b8e5f728b37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116500003", + "DeviceId": "b1bc2d6f-d9de-4b31-8b9f-11478f66bc41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_946772292", + "DeviceId": "5aa5cb70-b5c9-4bba-ab62-205ddc563266", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0e1c4c0-590d-4f56-b5f4-c798e962d537", + "TenantName": "Tenant-e0e1c4c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556872208", + "DeviceId": "67febd39-2ca8-4952-a082-d4a4a0775db7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_956907342", + "DeviceId": "05a92737-3617-4310-871c-4f0014600f54", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742738412", + "DeviceId": "0bfa3fad-655a-482b-afc9-d90268be82de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442991577", + "DeviceId": "9e67068b-6290-4e0e-bcd3-3ad6df0b1c8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_842784980", + "DeviceId": "c262c50a-e9f8-411a-8499-6cf1fbd1e24e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_859544365", + "DeviceId": "198f86df-05af-4765-89d8-45511c0cfb95", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a38c8517-3e0a-4106-ad9d-1294de1e0e05", + "TenantName": "Tenant-a38c8517" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171259772", + "DeviceId": "0f6d833d-dbd3-4040-af02-f9cdc87ee1f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605936672", + "DeviceId": "3992d4cf-16db-46d5-a06f-c533903b111c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_308106254", + "DeviceId": "3d82a9c5-9087-487c-be62-ca69318237ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155621080", + "DeviceId": "d29177b6-a01c-4b2f-aae7-eb86f34e3792", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_142943459", + "DeviceId": "35db851e-daec-463b-b43d-f8e6a44e1c56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_849575990", + "DeviceId": "9e1537ab-6f6a-4727-9f52-a83203aae357", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ac34a354-2392-41d4-8092-bc7583ac9e4b", + "TenantName": "Tenant-ac34a354" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_268177161", + "DeviceId": "1a939ccc-7d0d-4a14-9d0a-a2ba37fc9e3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192487122", + "DeviceId": "ddf91ef0-f9b4-43f1-9255-28aa03c8664b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651790567", + "DeviceId": "d6a0a85c-66e7-4eaa-9c6e-d68350811dd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_276937418", + "DeviceId": "491313c0-fc9c-44c9-9c74-d65ee786dc2a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582895736", + "DeviceId": "7a36bb26-1f8a-4467-8dfa-496a02b99d25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_576100179", + "DeviceId": "4732a00c-acfd-48dd-a5c4-594197869cc5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2c012589-8f5b-42d1-b9d8-2e1e54b08811", + "TenantName": "Tenant-2c012589" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636593064", + "DeviceId": "e807de1a-a2ec-4c4f-9e41-1ad2334088ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379875345", + "DeviceId": "ac8fd5c0-95fe-4472-96cc-65a2abd40a5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_856237490", + "DeviceId": "b463708f-84e6-447c-bb18-1cf556a2cd84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747178876", + "DeviceId": "624edac6-e730-4b6e-bba4-671b355f58dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721706373", + "DeviceId": "062bfff0-21d6-4aec-a86e-3d920323220c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_310184403", + "DeviceId": "8d66e53f-5e57-4e7a-a0da-83ec09f860a9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0566787e-8024-42af-826d-554b2a7f767b", + "TenantName": "Tenant-0566787e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564216993", + "DeviceId": "9432a517-f3c8-4890-b510-d4658f8f9846", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793202414", + "DeviceId": "383ee9ca-7b0a-4cb0-bc72-062bdc305b16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_555627517", + "DeviceId": "a09cbc8e-395d-410f-abd8-67e26982df7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_516219612", + "DeviceId": "4c28f921-ad28-49c3-aa8e-855b2ccc76cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_917545243", + "DeviceId": "79fead5d-5cb6-4e2b-bce7-56b1d0f751ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_593581086", + "DeviceId": "d9f31115-63ae-47f5-8510-5caeed0a1daf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf11d77d-734a-4a72-a13c-dbb0f91c8d96", + "TenantName": "Tenant-bf11d77d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562007377", + "DeviceId": "6ef00625-6333-4aac-b842-1630359631bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926854147", + "DeviceId": "0071671c-555b-461c-97e3-1528d6c97610", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225655154", + "DeviceId": "bd4d0a35-c225-4b64-8561-3b0ef4dcbee8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708147865", + "DeviceId": "28e83171-9615-4325-ab05-742a9327b51d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_489246737", + "DeviceId": "0600ab3d-caa8-4ba7-920c-eedd1519491e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_398448003", + "DeviceId": "ccff9586-964d-4f6a-b82a-fb8ad5b3a533", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "adf27246-a8d9-4459-87b4-d5780d1e4afc", + "TenantName": "Tenant-adf27246" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298793957", + "DeviceId": "a5ad577d-ecdd-4dfa-b92b-c77348db653c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283955497", + "DeviceId": "796423f5-a4aa-445e-bee7-5644977b4b58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390432499", + "DeviceId": "01f3a3bd-ed85-48f1-9e23-5d5f27f7dd1d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307587369", + "DeviceId": "808ac093-cc1e-48ca-9451-8ac411cdbd4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477013055", + "DeviceId": "8d60ac45-7a57-4e86-8d87-085e2718cd1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_980334268", + "DeviceId": "df195751-7010-41f4-a1dd-f55a22c0a382", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9b3a618b-3590-4400-949b-8f2da3e3db24", + "TenantName": "Tenant-9b3a618b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580162365", + "DeviceId": "1fd03684-bd6f-4f73-8509-006702cd685d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_190507408", + "DeviceId": "41e0e6ca-b03e-4724-b810-15f0c0919ebe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_849451150", + "DeviceId": "70c05bb2-dd34-45ec-baad-742534094ee8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_293171044", + "DeviceId": "3e7d0d9e-c1aa-4e16-8fde-414948502a9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429579634", + "DeviceId": "a29bac1c-7087-487a-a7fe-488e0576664c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_147731852", + "DeviceId": "2e19d7f5-93c5-4c44-ab16-b7bfef77aefd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "178866a1-ea66-44f0-bbfd-f892e53ca797", + "TenantName": "Tenant-178866a1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241219379", + "DeviceId": "e2f837bc-a49a-4432-87b9-d7547c0bb57f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394557872", + "DeviceId": "ed6e72c8-a65c-4d57-b355-a651142e915c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295262513", + "DeviceId": "cce4c92b-3f28-406c-ab0d-05bd889f3cf0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913667710", + "DeviceId": "fd59aef0-0cdb-43e0-a3cb-baa0509ff058", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_228450796", + "DeviceId": "a6d9401b-ec1b-4676-ab25-09be768045b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_481880456", + "DeviceId": "190c91ee-f238-424e-895a-9ca66bc30098", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "77ad8387-a4a7-40dc-bc2c-73946adc2e77", + "TenantName": "Tenant-77ad8387" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661825912", + "DeviceId": "a1c88b1c-318e-4f0d-b723-7a551ff419f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121752031", + "DeviceId": "9b52fcbe-437e-45a4-9ca5-27a6fe17e27f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476227568", + "DeviceId": "e32bc674-0c0d-49dc-b895-4eaefa05b0cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_305277253", + "DeviceId": "a7c1f037-4272-46a1-9ae8-53ac0eaef488", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737120439", + "DeviceId": "e2a2ae46-082a-4313-9e69-e9f8c1c74aeb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_863623846", + "DeviceId": "853a9bca-f392-45a6-9644-3887e01c0b07", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00bc3eab-b136-4c48-bf6c-0edd7a5dd4c4", + "TenantName": "Tenant-00bc3eab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230123756", + "DeviceId": "fe4013e6-2ed5-47bf-ac37-43085a82e1a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412272456", + "DeviceId": "134153e9-63c1-4643-9f65-24559212a28b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584004928", + "DeviceId": "22222a5c-f41c-45b8-9449-1a692fd8651e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_833460593", + "DeviceId": "653b0d40-97d0-4020-b4eb-a3534dd3ac80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522732675", + "DeviceId": "8e631056-5ad5-457c-9f89-867ae7577ce7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_820565747", + "DeviceId": "2bed92e1-1ca8-4639-8704-8f2ff856f548", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5eefdcb6-ebc9-4ccf-9ef7-ba58254c2124", + "TenantName": "Tenant-5eefdcb6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728701040", + "DeviceId": "4b1c5458-92bd-4b04-93f9-f8f943f33c4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225593033", + "DeviceId": "9ab71bd0-dfa3-4706-a51f-ab959d4819af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_950935668", + "DeviceId": "1f6b11ef-180a-43f3-b679-558224ad5a4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954759301", + "DeviceId": "7664565a-9954-4d6e-b743-43ff1094264b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182423211", + "DeviceId": "673c70e1-10c3-4628-ab44-072821082faf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_111786467", + "DeviceId": "51310caf-2c81-421c-b393-1f81f0b7aaa0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "439203ec-daac-49bc-a5da-d903bf08222d", + "TenantName": "Tenant-439203ec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_956522556", + "DeviceId": "235b6e3f-a6c2-4f03-b99e-8f348222fc57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_195002230", + "DeviceId": "8b48cc86-4c4e-4d58-b23c-ccb0cf8149ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145476277", + "DeviceId": "4d5658ba-5581-4754-8c1f-2cf1c0878399", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_704570448", + "DeviceId": "6696a6be-1b22-4789-965c-b263859c4a61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728670507", + "DeviceId": "5d060b68-e49b-42cb-a1ed-7339c1c0ca97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_235666533", + "DeviceId": "a74cdd5f-70b6-4b87-ab45-c9e67abde735", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e4b0de01-7180-44d6-b3c1-08fce8d2bfa3", + "TenantName": "Tenant-e4b0de01" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598284042", + "DeviceId": "0e521e55-f2e5-43a5-9da6-6b49367f9e7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_577482364", + "DeviceId": "833893a2-f425-4f53-8bbd-ca73fb64d087", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323148118", + "DeviceId": "48aea5ad-2ac2-4abd-8787-10829dd4c480", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380504231", + "DeviceId": "f20ce29a-0040-4ca4-b570-181e28808105", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376990274", + "DeviceId": "41ee5e30-13a6-4e83-8e7f-16a78b5d8ac4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_836673469", + "DeviceId": "5826799b-a7bf-46ef-a55b-f5a8f1805ed3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f0bf680b-dc26-45c0-9143-c8a1f189b94d", + "TenantName": "Tenant-f0bf680b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103306209", + "DeviceId": "88b84b81-434c-4f91-a921-e31f346cbb93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677739287", + "DeviceId": "bbaa5aab-f8bd-46d8-ab35-690a5a053805", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_344049251", + "DeviceId": "cc9e469c-6d9c-4493-949c-3644e87f2897", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631120031", + "DeviceId": "cdc7eae0-3b91-482d-9f57-d85dd0a94c58", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290362559", + "DeviceId": "eabf2c40-110e-470c-9c81-c65ebb768b12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_532925515", + "DeviceId": "7cd41e5c-c9c6-4c36-aec1-7463cb9869ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9ad27712-6a71-4c49-aa33-2a19e02df1df", + "TenantName": "Tenant-9ad27712" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596013427", + "DeviceId": "d2288187-35b7-44d6-8675-e6b0413f83b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333287692", + "DeviceId": "ea04450d-819a-44ce-b749-c575c2ab637d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530130004", + "DeviceId": "98ef6727-804f-4faa-a196-4db303ec14df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206883854", + "DeviceId": "bfa131bd-07e5-43fb-ba6e-0bf47bd9c8bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994835396", + "DeviceId": "af62c738-008b-4142-a318-e56bf3d2cc5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_455098374", + "DeviceId": "d776d603-9f28-415b-9be5-b545b79287bb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b2a508f1-93e7-4152-b079-6c21ac38d52a", + "TenantName": "Tenant-b2a508f1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771290359", + "DeviceId": "dc8d59be-3484-46a4-9603-8c852e0fffd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230012866", + "DeviceId": "0fbbab0c-806c-4ed3-a9fb-7f9778006b21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564762702", + "DeviceId": "288bec8d-8d61-458a-894c-c245f4b702b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674713130", + "DeviceId": "59d2ab8d-ac15-4cf9-a695-998358345e1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658075606", + "DeviceId": "5899ded5-2a26-4d9c-971b-ae4b83f081ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_193069852", + "DeviceId": "17634045-dee1-40cc-9df3-e2e24c167c38", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "efbb6a8c-56a4-4cc2-9c0d-20bd268e9fef", + "TenantName": "Tenant-efbb6a8c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257108867", + "DeviceId": "aceba743-26d2-433d-9ec3-285389754d2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536027510", + "DeviceId": "4cca3782-a2ca-472e-855b-071639ed89af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688301555", + "DeviceId": "ab31d34e-d633-41e2-adc4-0f055ec40d25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615469445", + "DeviceId": "7d405140-5896-4cec-b99c-1106bfe73bba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_489966890", + "DeviceId": "e90ed864-df50-404d-bb85-462f06056dc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_592515362", + "DeviceId": "7bfe2e39-790c-4d30-a4bf-dffd891da7ca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ba8019c-9c58-4b56-998d-83b18fe056da", + "TenantName": "Tenant-0ba8019c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860065936", + "DeviceId": "c66bd502-a060-43f2-9e85-4ebf87adbf18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856686139", + "DeviceId": "f324b067-84c3-4ee5-ba8c-0e3f98fe6d82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287683121", + "DeviceId": "0f75be74-f957-4900-b5bf-7115ecc8a76b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609721752", + "DeviceId": "3edfdc5b-6605-44b3-924e-864a5f9c0199", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902482500", + "DeviceId": "63a793cf-10f1-410c-882a-2754ee7705ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_878004843", + "DeviceId": "d37cf968-50e1-40fd-9085-1277fcb028fe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "566dc336-18ee-429b-9912-31dd7fc3d140", + "TenantName": "Tenant-566dc336" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398801448", + "DeviceId": "7a47acda-e637-4774-9dae-33b5eed8bae6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726381379", + "DeviceId": "2616d799-ba67-44e0-b568-8f3025fe288c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361705787", + "DeviceId": "c5b66ede-7142-419e-aff6-6df7d895dab3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695636647", + "DeviceId": "cfd35876-0947-4619-b5d6-d435dbcd70fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_712737924", + "DeviceId": "82d91dbc-b141-4a46-8fd9-7dde4da1c170", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_881843031", + "DeviceId": "eb287eb6-010f-46a0-977b-42fb772376b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00dba1c1-3cc1-4094-9ba2-8f3c301baef0", + "TenantName": "Tenant-00dba1c1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812521602", + "DeviceId": "07c32811-489d-496a-9d96-b8cb4f518e27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416083726", + "DeviceId": "0a088175-2b05-4544-804c-6253bcb6fd4a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798366253", + "DeviceId": "62b26fee-830c-47d7-bb5c-f86ba62dc36b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670040031", + "DeviceId": "41b9dad4-b49c-46d8-9947-d4e57bb56aee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793483591", + "DeviceId": "e74f803a-921f-4c6b-8d46-4ca4b331b0a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_520782289", + "DeviceId": "7db8877a-524f-46f5-86b5-79210755d332", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5b072618-1b48-4b65-a51b-9eb6360a1269", + "TenantName": "Tenant-5b072618" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996886304", + "DeviceId": "de562046-e461-418e-8bf7-76279a8163bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_647400485", + "DeviceId": "41a6452e-adf9-4b89-9bed-5b29fb2d3f59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152839646", + "DeviceId": "be7edfad-5050-4b6d-9cb0-dd8350aff897", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288372362", + "DeviceId": "6d270315-9ab5-4151-b59c-dadd2d6fe7db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316547578", + "DeviceId": "f1aef978-b6b6-4242-9c6e-86730b79270b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_131707279", + "DeviceId": "4a3db1b1-eeff-419c-96c7-f77a47173cff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f9b2639a-9794-4269-a0db-27f20c2b8526", + "TenantName": "Tenant-f9b2639a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203857771", + "DeviceId": "8cdadcd8-24b9-44c0-82d8-744100c133cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_590315360", + "DeviceId": "f874263f-2dd9-4153-a9bb-8197d0adaf78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907570883", + "DeviceId": "fff84b9f-ad13-416b-80bf-d7d652b9bba3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_536016233", + "DeviceId": "d82a1596-1219-4414-b829-5dfb4fbc8f2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915755304", + "DeviceId": "cca4e826-8e2a-45fc-926a-3487bb72deab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_819730686", + "DeviceId": "f41e1cb5-7769-43af-8e67-e29cdf372b2d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bd2cefef-ca0b-46b9-9a2b-0e511b2642ec", + "TenantName": "Tenant-bd2cefef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_700361991", + "DeviceId": "bc911ba8-bd71-436a-8038-1cf5c3333d2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538905456", + "DeviceId": "5cae2497-7aaf-4841-84a7-370e70d6c272", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_671083751", + "DeviceId": "e29f8e0e-6200-4762-bbd1-7a48a4b677b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411747013", + "DeviceId": "2e57227b-ebdd-4e20-8470-1ca6c0c0ee22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591299208", + "DeviceId": "2d0afcb4-8fac-4b68-b477-543748caf12c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_720229525", + "DeviceId": "606cc763-3136-44a8-97eb-d25581b50c00", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a9d27d8f-da55-4c03-b49a-98bbfa7f71aa", + "TenantName": "Tenant-a9d27d8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559215964", + "DeviceId": "ca881aad-57ea-4e1f-924b-e6a2e0775714", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341432046", + "DeviceId": "814c17da-dbff-4ca6-88ae-89d967f95d04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981588639", + "DeviceId": "d368cd88-aae4-4ece-ab67-7bd365479a44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728627797", + "DeviceId": "f84ad9a4-da62-4ef5-bf89-9739a44eda14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678799140", + "DeviceId": "df983b8a-8dea-474f-871a-618df305f52e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120267598", + "DeviceId": "e2820b3a-f3ea-41ab-b409-75ddbd7de889", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "725d472a-7388-4e42-bf56-2a62b214296a", + "TenantName": "Tenant-725d472a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_179998156", + "DeviceId": "017a408a-bc71-48d3-b700-a71ea93ee97d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_160065949", + "DeviceId": "a9eaf48f-bf57-4054-befa-7b70e4f8316b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137935774", + "DeviceId": "547aa6b2-3abe-4224-919a-5be129f18373", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222408195", + "DeviceId": "04cad061-63aa-4ab1-a9a5-666d2769df4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_535885427", + "DeviceId": "def97261-3b96-4c00-aee3-5dfbc392ab1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_589308735", + "DeviceId": "428a4053-efaf-4b75-a9b1-b212d3166994", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e58976e9-9ca7-480d-a7cd-054b9d539ced", + "TenantName": "Tenant-e58976e9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_669965618", + "DeviceId": "0da554c9-2f21-4b75-884f-5aed22a023a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703238347", + "DeviceId": "c5dde3b9-af66-44c6-a058-08efa5e315d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_998298938", + "DeviceId": "f9dd11b1-42d1-4806-b7f8-4651539cbb77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442581687", + "DeviceId": "f4f7a4ad-a0a4-42f7-a032-b845fa452e66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820147647", + "DeviceId": "ea0929b9-6e99-4781-a30d-63a2b151333e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_262941286", + "DeviceId": "0fb34092-40d2-4502-b2ce-cbadcc433757", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6c8579a3-4de0-4423-925a-92554ca4ca60", + "TenantName": "Tenant-6c8579a3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834840879", + "DeviceId": "fe5c79c1-1646-4b5b-8682-3f5c16dd3906", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567553809", + "DeviceId": "508db69a-b699-43b0-98df-dc18e41da273", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_402725540", + "DeviceId": "65fcf165-ee27-4da2-b365-0cd3cc4427af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_484272715", + "DeviceId": "d537dbdd-06de-44d5-9e66-6d8c14686ad2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549677977", + "DeviceId": "33c25cae-7771-46a1-8b15-2d5a5010a210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_949799158", + "DeviceId": "d84eb07b-192c-4e11-9393-d3874eab7056", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8b55ca01-6791-4602-82a0-4cdbaa6e7d9c", + "TenantName": "Tenant-8b55ca01" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100018402", + "DeviceId": "8f38976a-8be6-47e1-96cd-bb042fe2eaae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_331985963", + "DeviceId": "91a64878-72fa-49cf-909f-d1252185168f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573009247", + "DeviceId": "a77b216a-3692-4cef-a3a9-2fe2091ec6cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_893745896", + "DeviceId": "3f3c04d2-a5f2-484f-b654-854dc8a70544", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193389186", + "DeviceId": "5e161f20-f4c5-4339-ae19-6475f0fceda0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_767674651", + "DeviceId": "a75fe8fd-56af-4709-b5a8-7a05650cb44f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "609fd366-717d-409f-818e-055ec2f9ead0", + "TenantName": "Tenant-609fd366" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152217355", + "DeviceId": "3e05e236-ffbf-40b7-8d22-91989f01f9ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608756808", + "DeviceId": "9270832c-f28a-4887-b440-e83be0167222", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889646099", + "DeviceId": "7e59ca19-5cc4-4e9d-8e33-843bc4df1d25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390070686", + "DeviceId": "0a3796b7-63fb-4c86-9565-774f6f94ab44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_343770148", + "DeviceId": "03e15d50-fa5d-43b5-9aa8-349af5e30d7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_199716288", + "DeviceId": "64c0338c-2571-46e9-a756-5540a645e1c8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "64baeb20-0e4d-405f-b0d0-6b0c71f0a96b", + "TenantName": "Tenant-64baeb20" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161823932", + "DeviceId": "c56ea560-8606-4186-bfd9-bf36001ba389", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301358148", + "DeviceId": "18ce8f6e-6f57-4c8b-8e3c-db652fae5f09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665967165", + "DeviceId": "4805639f-1345-4a9d-926c-7a60ffadcf19", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954324713", + "DeviceId": "123bcd6d-aabc-4f79-a59d-907fe0d95022", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703747741", + "DeviceId": "a6c478f5-f650-461f-81c8-edade127ab30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_677520418", + "DeviceId": "56a2d5e3-f192-45bd-81d9-3d0a806d4de9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ecf3a4f0-4181-4d3e-aff8-2c5358ce4c5b", + "TenantName": "Tenant-ecf3a4f0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838405321", + "DeviceId": "4600dd24-5059-466a-8a94-c257191982ca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294028018", + "DeviceId": "7be90d2e-006b-4985-9b99-faa95bfaedbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_315450506", + "DeviceId": "752d3305-39c3-4345-9725-9723a126eaf4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940936385", + "DeviceId": "2d583f58-c64b-4142-b3db-5c7e585e6848", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809745589", + "DeviceId": "7ff7500d-0729-4c23-8b22-6f99eb0f1724", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_373767837", + "DeviceId": "13619a4e-45c6-4603-b1d5-6484af2d774e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "63b667db-8b43-46cc-88b3-ead936e035c0", + "TenantName": "Tenant-63b667db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_994640035", + "DeviceId": "b42ce50c-aca6-4811-8106-cf829f512d70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585507062", + "DeviceId": "5009ae0d-cce1-465c-9308-ab8d6a3c73c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_371848767", + "DeviceId": "414fdce9-0a9a-42ef-abfc-5b789367fb0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_345516295", + "DeviceId": "3d7a9c7d-73f5-4cd8-bf28-cc6b9a083c5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724916807", + "DeviceId": "2cdce245-4f91-432e-b27c-a35b5c8e7d7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_568378880", + "DeviceId": "d407172d-f944-494f-b2b6-537c45d91dc6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "73874224-069f-48eb-bf3e-89ac1db15dbd", + "TenantName": "Tenant-73874224" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_857350369", + "DeviceId": "ed4820cb-73a5-4c14-b194-9485002524f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127940020", + "DeviceId": "3846d696-aeb4-4eb3-a1c1-42946e7ca099", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615657398", + "DeviceId": "65cd55bf-8dac-4458-a1b0-928378063086", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_265529170", + "DeviceId": "ac125d5d-f202-4d8d-b5e0-6d99fe152cf9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929692722", + "DeviceId": "13d6a9d0-5ed8-4030-8227-d29d88ca93b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_523969292", + "DeviceId": "1242227c-4d1b-4bee-954d-02dc2ea56fc9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d31ae8ba-f915-4547-ac3b-8b08c715917e", + "TenantName": "Tenant-d31ae8ba" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408906268", + "DeviceId": "f5872561-c9de-4869-a479-0b9df9e4c689", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_369137588", + "DeviceId": "b80378f8-c8a0-4a8f-93be-7670b8089f9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_617510619", + "DeviceId": "0171c52c-b8dd-4db6-8af7-54cd66892a5e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996504863", + "DeviceId": "fb94684a-9a2d-481c-9104-4cafb4de2c02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557070975", + "DeviceId": "01754432-efe3-45f6-a586-e6ae0fa0f6d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_902863800", + "DeviceId": "4a18e7df-2fcc-4d2f-af11-c5d106b97c39", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5604ce20-c9e4-4294-950c-f3ed20027532", + "TenantName": "Tenant-5604ce20" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147448432", + "DeviceId": "ba4b831a-eee5-4e21-bebd-7debc10366f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435150191", + "DeviceId": "24376a3e-d20e-4ecf-86ae-1b2fde258337", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_980534553", + "DeviceId": "c1fb0c9d-d25d-4bda-98ca-fdefe1b3e331", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626001474", + "DeviceId": "f91321cb-bd87-4c8e-89cd-696c5ba4b116", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479429366", + "DeviceId": "812198d3-d5a1-43ef-af4c-4ea0b101c888", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_130281559", + "DeviceId": "06a0e64f-ba4a-497c-9c3e-26bd615d8ed4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "478802c5-c497-4473-9242-54abeff445db", + "TenantName": "Tenant-478802c5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906431341", + "DeviceId": "0ceb3dc6-00bb-465f-955f-b2e32ba67a2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284704662", + "DeviceId": "01fd311f-84bf-47a9-a62a-15ab978c3134", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_627098218", + "DeviceId": "0c1ce302-2a85-4634-8fc0-8e63c8250993", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850035417", + "DeviceId": "bd5e3a20-3f2e-4ced-a76b-695512a25023", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384904920", + "DeviceId": "49806529-89f1-4348-aa26-67078d6e71ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_918207889", + "DeviceId": "ad2f499d-73e1-4c8e-9104-e53f89fc96a5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ae6413f9-f3d8-4883-a1be-56bee04e403c", + "TenantName": "Tenant-ae6413f9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227974489", + "DeviceId": "6bef0fc2-7ca3-4c00-9b34-00b1c7db7cce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347349523", + "DeviceId": "68f973ba-a809-48d7-be97-eca042ff9447", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525865634", + "DeviceId": "7092062d-2ae2-4ca9-bf23-ae07c507c77c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916919807", + "DeviceId": "aa3ff175-a6bf-46c8-b4cc-3f7c34e65a96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691444232", + "DeviceId": "3d9fd9f3-cc2d-4a15-80c1-5db755d35e7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_570961194", + "DeviceId": "3ee2fa8e-990e-4e59-9500-29a94f5e10df", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b08134fa-253c-404f-a6e3-90c2c1dcce3d", + "TenantName": "Tenant-b08134fa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_620793608", + "DeviceId": "ccb385a1-a839-484a-a5c0-2be1b5b66f39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164010997", + "DeviceId": "709fc528-ca6b-4e0a-8aac-d5636dc7265e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_133808364", + "DeviceId": "385e5385-a080-4867-af8b-75cb13b5f7f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_803054535", + "DeviceId": "e07bef5a-4c22-4fb1-a2a9-b683af48ce9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898919111", + "DeviceId": "236f5767-5d87-4ab7-974f-dd156c1eb391", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_673187703", + "DeviceId": "58f5ed89-78ba-467b-a04b-c2850f400b06", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "422e635c-e9e9-4070-b396-c51b99327d3d", + "TenantName": "Tenant-422e635c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_763156872", + "DeviceId": "4bc808d7-a932-46f1-8d3d-80369a91eaab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193261901", + "DeviceId": "e1255d45-b0b0-4c08-a43f-0f004d3b3e69", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283645582", + "DeviceId": "b3971f1d-29b4-41af-8ff9-fc316d40dbe4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981915958", + "DeviceId": "c9bb1325-c4a6-4c68-b046-3adb909b0542", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_144541275", + "DeviceId": "e5a15b66-cd18-458f-9aaf-707fa94cd9f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_238499631", + "DeviceId": "0e0b5ea8-0ac7-4123-a18a-1078a041756a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4515912a-e48b-452f-993a-283f02e3eda7", + "TenantName": "Tenant-4515912a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_463984270", + "DeviceId": "2707a04b-6aed-4ab9-939d-a45c24a6688d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873742600", + "DeviceId": "51179840-89ef-4af9-b873-5cf3490511fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360056398", + "DeviceId": "d3fc86a9-323e-4d60-beb4-3ba54c1f2d48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966650203", + "DeviceId": "abe23f39-f88f-48e6-984c-8a0bc4cfef6f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904324764", + "DeviceId": "9d43cfa3-e85d-438f-a52c-0fc85e6d4de3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_471864536", + "DeviceId": "40ea9c75-62df-4dca-bb3b-905147cdd936", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eaf5dccf-dbc4-497f-9ba7-87e1fb9a50db", + "TenantName": "Tenant-eaf5dccf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_672316081", + "DeviceId": "18f7af5d-8d10-4553-81ed-084e68cfc2fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572218291", + "DeviceId": "c61d5a04-b3a6-41d2-a20d-0bf49cfe0190", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188437403", + "DeviceId": "57aab759-31ce-4d96-90cf-f02a66f53750", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306335289", + "DeviceId": "ffa2cd61-dbb1-47d2-8ee6-61aa392f4de0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728194911", + "DeviceId": "3dcf1631-aa14-4c69-9245-55f9914b3c0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_699295486", + "DeviceId": "ecc9bde4-3366-4393-b256-abeaffda2977", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f4d33968-7ec8-4635-9aa4-896eb3330d92", + "TenantName": "Tenant-f4d33968" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350552657", + "DeviceId": "42ec6a57-b1bd-49dd-9cf1-c9cc85f0bf64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_943065711", + "DeviceId": "0640de26-c89f-44b1-8405-a2af09337b12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364914787", + "DeviceId": "9cac358c-244f-43b4-b454-0d5f4d34f163", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333801585", + "DeviceId": "ecebf33a-523c-4c94-b308-5405e0075ef8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_428824114", + "DeviceId": "69c070b1-1acf-47fd-a833-daa1a9410d52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_938339219", + "DeviceId": "9f00eb18-c0cd-4bfc-adde-c12033f7c1da", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7dfa967-eb28-4658-a3be-de87844872f0", + "TenantName": "Tenant-b7dfa967" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582041054", + "DeviceId": "6717613d-8b06-4b63-8fef-363b70d167df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_361910167", + "DeviceId": "944537bd-b543-4c8a-b7d0-7caf16bb4180", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_565831061", + "DeviceId": "862b990f-8cbd-4a2d-8733-c7d251fc6bb6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581083707", + "DeviceId": "f020d180-b2e2-483a-9935-4d072195dd34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_236190995", + "DeviceId": "29c7f040-930b-4e32-bbc7-eff7bc8257a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_683546595", + "DeviceId": "b937ecc8-a8f3-4e20-a90a-c96f1d5ff9e9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd3ffe91-a9c6-4762-9d71-6eb18d6dbfb1", + "TenantName": "Tenant-fd3ffe91" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154538959", + "DeviceId": "86a2a33e-8e07-444d-9fe5-c7ee1e677217", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323546839", + "DeviceId": "f7f5ba00-d60b-4b59-a80a-875c9e4e163a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519853554", + "DeviceId": "3481705f-3403-424f-8834-46471d47694e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_990698874", + "DeviceId": "8ef20654-8b63-4c59-a634-713d30df7727", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171007970", + "DeviceId": "38c6e514-8491-40d6-81fb-42e7ce9f2673", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_503289470", + "DeviceId": "aa80fea4-4fba-4a66-8479-b892acdbc2aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "53c8b476-0ecd-4b53-939e-2f01dc298537", + "TenantName": "Tenant-53c8b476" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618812656", + "DeviceId": "9519d23c-48e4-4133-8af1-b78f85d72ebc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597866431", + "DeviceId": "552e5a32-0e39-4a6c-b886-22f4bed39eac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777320008", + "DeviceId": "c64794e3-b22c-471f-9696-11eab119b210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948475521", + "DeviceId": "b242ec61-693d-4d75-a551-c67fbe1fd9ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495668155", + "DeviceId": "0afb441b-6617-4af6-b3f9-f59f699fac69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_404594077", + "DeviceId": "2907db27-5ab6-49b6-b36f-20b191a34b95", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d1ba92b5-c810-4aa1-b5c2-20f6c72fbe5d", + "TenantName": "Tenant-d1ba92b5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508598269", + "DeviceId": "790ff3c2-25e6-4558-9a17-bc071d3d1c41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786157460", + "DeviceId": "fb9e0dd3-dab4-402b-b90e-b29ce1322763", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_648143024", + "DeviceId": "205cd23a-953f-4530-9254-55758161a325", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247469347", + "DeviceId": "2ba8e921-980d-4ce1-b1b4-1018aacccd9d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_409316774", + "DeviceId": "30be9cc2-87ea-4595-8ca6-9c8e49aa90e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_764873807", + "DeviceId": "276c05f5-8b7f-4c23-b0d3-aa7344766042", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "94c7d998-af10-4306-9b07-538f5ebee7c7", + "TenantName": "Tenant-94c7d998" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619909285", + "DeviceId": "a68c6087-7a37-48d5-aefb-150233d9a305", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125053222", + "DeviceId": "5e9b13ee-de95-4381-b248-2d22f9af552b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937780781", + "DeviceId": "10972a9b-a2ce-4214-bae0-6721933f3b3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926433254", + "DeviceId": "ff9b5457-254c-4d3e-9af5-b77f02ed4e17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_604588974", + "DeviceId": "37ff43a3-b925-47ab-9178-591100cdd007", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_385836068", + "DeviceId": "0af4b87d-524d-44b4-8159-9b88b578f99b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c755dd38-83db-44b3-b6c7-443850db9e32", + "TenantName": "Tenant-c755dd38" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441743340", + "DeviceId": "fed9cac3-0cc4-4d4f-8759-955567370cb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_629831662", + "DeviceId": "1000b8bd-cb9e-4744-a2a1-149012519047", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869680248", + "DeviceId": "5cfbe2e1-f8eb-4fe8-be0c-47928db651e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290303757", + "DeviceId": "2e0f833f-adb1-4d38-a52c-919eaea9f1c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_859566077", + "DeviceId": "58bf9344-710c-4bc1-98eb-c92543834c01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_615554149", + "DeviceId": "684b9b4d-d4ff-4b4e-8682-2e02f38a370d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b50a99d7-54bd-437c-bada-35aab9cee7e1", + "TenantName": "Tenant-b50a99d7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393182548", + "DeviceId": "80f359af-56e6-4e90-bc43-240e6789b7ca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631540877", + "DeviceId": "0eaeae21-a529-4e3a-af4a-8c26df6453d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681106528", + "DeviceId": "f3620f5f-0b78-446a-bf59-b63f70d9a72e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208760178", + "DeviceId": "a6573d24-6648-4ea3-91a6-c32daa3a1066", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_330873082", + "DeviceId": "d8c5e280-84f0-4e49-a030-cf5be898ad39", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_388555591", + "DeviceId": "0385cb35-01ec-4f9c-b87a-b8d932c11e65", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0a12b46-92a8-44dd-bf25-b3b89e4ecaa7", + "TenantName": "Tenant-e0a12b46" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366640105", + "DeviceId": "6989368d-8fb7-47c2-9320-ad9d0d49472f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229130531", + "DeviceId": "dfd4e3a9-74f3-4ce0-827d-4ca6231c9290", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_219460494", + "DeviceId": "efbdde70-efc6-4a7e-86e4-68d7e7e8204b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126688906", + "DeviceId": "47d44238-3134-41ed-9b3d-6cc99554118d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827285321", + "DeviceId": "75ce084a-c99e-4a74-b0e9-6b470d3d0296", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_261860626", + "DeviceId": "3d4526c7-9688-400f-a885-7fcefa89ed0f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "624868dc-dce7-47e8-a229-b3549f89cd6b", + "TenantName": "Tenant-624868dc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_110559509", + "DeviceId": "76156bfe-5ee2-44ca-a418-1c3876b97707", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642887416", + "DeviceId": "26927e58-3e0d-43e1-a8c0-ca145efec168", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995641951", + "DeviceId": "fffd0979-56f3-4da5-b747-1b76c8ba8157", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201594254", + "DeviceId": "53b7ae06-3ed4-4e9f-927a-0d2890ed1644", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171979398", + "DeviceId": "b615d5bf-4424-4f79-912f-5f0c03f094aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_145930964", + "DeviceId": "df45f40b-62ce-4aed-a12e-1e46854bd2e9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "82f5adfa-fb68-4f00-adf0-f421684025fb", + "TenantName": "Tenant-82f5adfa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275870484", + "DeviceId": "c51bcafa-c112-43cd-99c0-4bda34d37da8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_814997747", + "DeviceId": "b23f8d3c-01bb-4b97-83b0-b20bca5f20f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713502105", + "DeviceId": "842799b3-e4ff-4cc8-af34-691d06e3505a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558364836", + "DeviceId": "3efe20d2-fc10-49c8-b96b-5367270e71ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313895463", + "DeviceId": "26c12fdf-2020-4fb9-93fa-8fca62c5b99e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_266444658", + "DeviceId": "84cd23da-690b-43a8-95e4-3a49620d7894", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3a0a8321-87b4-4fc6-8658-16c4b8ba38e9", + "TenantName": "Tenant-3a0a8321" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540074689", + "DeviceId": "3bb7d6c2-744a-4fb0-8cfd-d24d92f018df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905006934", + "DeviceId": "beba0e0a-6a06-4768-8e6c-a63fcfd29780", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_984781839", + "DeviceId": "a1d526d7-e010-432f-8b8f-e2ef544f3dd6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165774633", + "DeviceId": "4d2c9fa8-a644-44b3-a02a-4094080dadae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782651533", + "DeviceId": "e476281d-da1e-4b85-b136-00f2ea2b7921", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_872964781", + "DeviceId": "9d82fa40-a2df-4877-a936-655c632f2b86", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7ad126b2-994a-4cfe-841f-be14b23f180c", + "TenantName": "Tenant-7ad126b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487937584", + "DeviceId": "e79a4137-7ed9-4d7c-b0eb-d3a800f3cc02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657374957", + "DeviceId": "cd2d170f-b14e-44ca-9e1b-28b7b036af2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524079669", + "DeviceId": "ac6dac45-6857-4796-8352-8774fd3f3c91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_113120012", + "DeviceId": "e57fae80-b105-44e4-9df6-f09b57ec3fe5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_125036114", + "DeviceId": "bd5a403f-623d-4068-8ce6-b47bb054702d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_893144381", + "DeviceId": "9a10467c-e434-4ec1-9d7d-3f0748624679", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3cb808f8-e8f7-4691-980d-4ab1fbc7c4a9", + "TenantName": "Tenant-3cb808f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_220057056", + "DeviceId": "0c009ddf-41b4-4ded-8ca3-f0e4dc9e2ff6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619420783", + "DeviceId": "8d177483-b6b8-4feb-aa4c-2255a2ed53a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270316314", + "DeviceId": "4b639c34-4a86-4f73-b601-e6614353afdf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189303173", + "DeviceId": "04133bd5-02e6-4c97-a404-7dd87636c7c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673332107", + "DeviceId": "35d6a151-1c05-40ba-8b55-009e82751a10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_870993414", + "DeviceId": "8a725dec-d66d-403a-b339-9928d7e902bf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c0f31436-568a-4730-93a8-773c933b4c77", + "TenantName": "Tenant-c0f31436" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934347144", + "DeviceId": "3789ef49-9300-49fb-bb45-cd20dac5fb0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636272913", + "DeviceId": "c29ac118-d58c-4002-bb28-2b3fb635bcfc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896606130", + "DeviceId": "7042d9eb-951f-4dc1-abf0-67c3717c7991", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356035013", + "DeviceId": "19c569b6-ab77-4b0b-b60d-77bc9c80df42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139276944", + "DeviceId": "7c746df7-f720-4afd-9756-b04bc3680b84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_622702077", + "DeviceId": "8a52006b-8bdf-42be-8157-22d41998de35", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9668abd8-8b50-4684-bb8c-df34b29db7c5", + "TenantName": "Tenant-9668abd8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_978729519", + "DeviceId": "0413c445-96d0-4833-a52d-4697ea02b8b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762563132", + "DeviceId": "d4a7b648-0235-4b7f-b809-7843699f6b37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916005208", + "DeviceId": "838502b6-b667-4a16-9e2a-bceaccca1109", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977621021", + "DeviceId": "79948e90-044a-49d3-8701-10c27a478d1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_629622962", + "DeviceId": "53a5191a-7b34-421a-aa85-fa422b9117f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_716296921", + "DeviceId": "2b5f1451-6a28-4c61-8808-daa04de43024", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "44fbc341-817c-4261-afdb-6813d34daf89", + "TenantName": "Tenant-44fbc341" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203599528", + "DeviceId": "93aab843-86dd-4e35-be08-7a948564e10c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333779955", + "DeviceId": "bcce6904-af49-440a-b7e8-01830e6adadd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941913856", + "DeviceId": "506b189c-74f7-435c-8546-2b763fd95a12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782022730", + "DeviceId": "8ffcdc69-606d-4087-b535-8780a1132faa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_638420749", + "DeviceId": "2ab22160-e5bb-4a72-bc69-624c3026d6f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_318625506", + "DeviceId": "816f884a-24b5-415c-820c-6417be4bb759", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b531f4d4-8f0f-42d5-b58e-5010a5040923", + "TenantName": "Tenant-b531f4d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954933614", + "DeviceId": "6f6e91ba-e1ce-4b18-a42a-160de393ff7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996488274", + "DeviceId": "3e6689e1-98e0-4646-9455-a85afb7b7305", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694260553", + "DeviceId": "c7288591-39c6-488e-ad21-4da8991d20af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_892663406", + "DeviceId": "0590556b-9209-4436-b2c3-c52b0eaa7e6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234103390", + "DeviceId": "0fc14be0-e69e-4e9b-a481-21bc68845ca6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_106880440", + "DeviceId": "a8b6bc5d-7670-4e1d-8261-56690a68245f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "47a31888-4836-4962-a8ea-319583e11575", + "TenantName": "Tenant-47a31888" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_890599936", + "DeviceId": "ccbd851f-eb61-4c5e-ab62-ee5fe0925307", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435449253", + "DeviceId": "af14265f-d274-4e11-b203-1cb3c612fa0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_262480565", + "DeviceId": "96bf8068-e1d7-4058-831b-c0a63bfca599", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_789218958", + "DeviceId": "56430d47-61ee-4cd3-adfd-5d6d4eae93a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_237389288", + "DeviceId": "29521164-3743-45fb-9413-394a9898f89f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_935698475", + "DeviceId": "c2214e7d-6cad-4fa1-9af4-b123f55c054c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "910e402e-fc92-4c00-be17-78b59be0a04c", + "TenantName": "Tenant-910e402e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850853278", + "DeviceId": "d585b711-67bd-458b-b66b-adb6de262851", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252873689", + "DeviceId": "648077a3-4c74-408d-87b4-e13b89a3b5e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_633234653", + "DeviceId": "dbfd0766-e8e2-4242-8ca3-9f514fe6adeb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_134508758", + "DeviceId": "6cc74f9a-ebad-4062-97fb-0086d1e1bffd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170511152", + "DeviceId": "63046efc-7692-4fa3-815a-1fbf149ae72e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_258206936", + "DeviceId": "40ceb474-ac0a-45c0-abc3-5c8473f5a76c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "02fc3836-6978-4bc8-b650-e7ce9c51cc09", + "TenantName": "Tenant-02fc3836" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833895423", + "DeviceId": "fadc62bc-fd1e-4dc0-b051-c6f3c15fc316", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912737076", + "DeviceId": "04f762d6-8e08-4037-8942-af9f0c8f2ccc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_363881831", + "DeviceId": "e50ba893-e96c-4801-a36e-605749f14581", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_949832285", + "DeviceId": "1748aa9d-ba17-4e48-b2c4-4a9556ab8884", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643082964", + "DeviceId": "036e0b32-1648-4dd2-96e1-b6ce8a5765d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_531281773", + "DeviceId": "94c6d0f5-b4ac-49d1-b700-18efe7efebe7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "61c98494-c698-43bd-81a9-db974b38ee15", + "TenantName": "Tenant-61c98494" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_947473192", + "DeviceId": "7f6a75a4-4c36-4b59-9b20-0836cbb74dea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250742146", + "DeviceId": "245a346b-fb74-4782-918d-af2284e3ba6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530196508", + "DeviceId": "68769de2-67c5-4e75-81a3-2e88a6f6f914", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760389593", + "DeviceId": "8eb05e49-6716-4209-82e4-cd97bac7643f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263009901", + "DeviceId": "83c3f70f-9f87-4e83-914c-8ab2298911f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_657291745", + "DeviceId": "0097b88b-f712-411f-b2be-8eaca5981bd5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cab5de0f-90e3-488b-93fd-d9169e6bd7bf", + "TenantName": "Tenant-cab5de0f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451696834", + "DeviceId": "371636f4-7db1-4596-ab1d-66ea92fc80cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986649598", + "DeviceId": "64323638-ec4c-4694-85ff-aa5c4b71d4a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729249395", + "DeviceId": "3ce33381-e6bb-42bf-b194-6c601772ea0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594513140", + "DeviceId": "bddc07db-eaf0-49d9-bead-39725c2099b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711091348", + "DeviceId": "a0ef585d-a6e0-41d5-9717-3dd4acd41d55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_129164523", + "DeviceId": "e3280b4d-a036-49f5-9730-0a98d47eda57", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a1cb0a5c-d742-4bba-9e47-011134a90539", + "TenantName": "Tenant-a1cb0a5c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408468100", + "DeviceId": "ee01cb2f-fdf4-4921-aa6f-1c5331c29fa3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608276087", + "DeviceId": "13a0671d-c4c1-4552-bb01-4cb6eb5f7f55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469459640", + "DeviceId": "e7428f9d-e6ba-4ea5-91a4-da395584afa9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406891402", + "DeviceId": "ebcc1802-38d2-4740-9388-99df07e38c74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341974542", + "DeviceId": "9237b2f4-0e71-4cbb-b430-8244b8c382f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_632331357", + "DeviceId": "35912306-ab54-46c7-8145-25879a0c289d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "09b1c9f6-254a-4b47-b3e2-4f16b64e2315", + "TenantName": "Tenant-09b1c9f6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461166493", + "DeviceId": "d09bca3c-9f6b-487f-8f71-b6eac119a7d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742173678", + "DeviceId": "9b61b263-2bbd-4227-a9d8-9a6f7054e5c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914479151", + "DeviceId": "8baa8ec0-194a-4f8c-b385-b9860fd99a4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_719670588", + "DeviceId": "88ec30d7-5ea6-48f0-87a1-1e4d63d9bd86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258463747", + "DeviceId": "dc44e728-5fbd-4b40-85a6-0bc32b428c71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_658902091", + "DeviceId": "d24c1cf6-92f5-417c-98b2-d60150710bdf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea079bcf-a556-46c0-bbf0-9aa2fa96b956", + "TenantName": "Tenant-ea079bcf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935155579", + "DeviceId": "a4cf2961-d970-48ed-bea1-8821c3d166fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_627276600", + "DeviceId": "d4221253-b954-4307-83f1-810454d7c325", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_363347167", + "DeviceId": "2d7d76af-f3e0-4378-bda8-928de7606dd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687150766", + "DeviceId": "c33e207f-f475-42ac-b4e4-dacd3d372c9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434711562", + "DeviceId": "837e9c18-83a1-4ea4-87b7-0b7e2aa3aa1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_260072372", + "DeviceId": "bc8dcbfc-ec2d-45eb-8ec7-9ed38a8c5188", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1dee071c-9cdb-4867-83e8-411105a7ad6d", + "TenantName": "Tenant-1dee071c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_799896195", + "DeviceId": "89cb6acb-9933-4028-b4be-e5ec32fec1ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494472575", + "DeviceId": "366b2053-ecb7-4f62-ab5d-489a1a427558", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_230664583", + "DeviceId": "1043a486-a014-433e-ba93-9168b7557388", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_498680914", + "DeviceId": "a9117d83-9395-44d4-9406-3496551652ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647883670", + "DeviceId": "9ac11d52-ea63-460b-9778-34d6c8e9e07a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_462666568", + "DeviceId": "29dd4962-b90a-4e72-a7be-91c582a07448", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "85e66fdb-9aab-49d9-91ff-ec6ebd92fa21", + "TenantName": "Tenant-85e66fdb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319900866", + "DeviceId": "b75bcc00-9dcf-460c-a409-1a9d01d91972", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250356497", + "DeviceId": "00b8337e-a31a-4991-8147-189e1ed43591", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742221654", + "DeviceId": "2a7fcbb9-5691-4109-b975-d35d40769dc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743949015", + "DeviceId": "f4dae978-ac0e-4b4e-b853-8d4035457717", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_560316881", + "DeviceId": "8afca79b-306c-4c01-8481-8152133090ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_553161378", + "DeviceId": "6d0fc456-1edb-4f1c-ab0f-41faf4171f54", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "59cae8c8-58ba-4b62-a51c-baf174f8dbf7", + "TenantName": "Tenant-59cae8c8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_191779512", + "DeviceId": "215c31cb-875c-4f09-8215-dbea69ee1720", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450307275", + "DeviceId": "8fc0fe1c-c9c9-4400-b574-2cf2807e07fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480802713", + "DeviceId": "4a678e7e-a3c1-47ac-b64c-923b479ff594", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427438144", + "DeviceId": "ebe90cb9-9d7e-44c1-bc76-74fcf4342240", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848886304", + "DeviceId": "ece36944-ccf4-49e0-b759-b449e5ac6076", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_202018542", + "DeviceId": "dd34274c-de51-49af-a2f7-5aa934a484b8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9b401c35-fa55-460d-a47b-29436420d34a", + "TenantName": "Tenant-9b401c35" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516837211", + "DeviceId": "746dfd04-caa2-45c0-96c5-40f42af5f92a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_760036475", + "DeviceId": "4d75fb14-ed7d-439e-922b-520bfc18a5ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_919470439", + "DeviceId": "1485edbf-e8f4-4ad6-b788-c4da8950faca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898328520", + "DeviceId": "9bdb4c78-fbfd-4809-9496-d1dbe110f1c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539833867", + "DeviceId": "1890cd4f-8f36-4ad2-bd62-0302bf4a26f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_586892045", + "DeviceId": "4b9d2366-8cd3-4ba6-bffc-aa3eafd2f81d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3c21a94b-a935-4a20-be7b-b5c7a9aa6a5b", + "TenantName": "Tenant-3c21a94b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714377842", + "DeviceId": "0e3166ab-aeeb-4bfe-a501-8fd3f8cdf739", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929856873", + "DeviceId": "0e27533e-9069-4e77-8a97-9f81bc695d61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711780223", + "DeviceId": "810b822e-4ec2-4601-89f6-87a6755e4a69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193940514", + "DeviceId": "e468a539-d980-4363-8694-a570cc29f3b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_541599696", + "DeviceId": "f6ae38d3-a44f-4bcd-8896-2366ea1d911b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160650994", + "DeviceId": "3eb0ee6a-176b-4538-8015-6e8ca12188fa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0a596ee6-6c89-4002-bfba-3c3251611a44", + "TenantName": "Tenant-0a596ee6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_194709710", + "DeviceId": "e397cb9b-2f63-426a-ad32-4402e3bf2f90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100814541", + "DeviceId": "5735c36b-7742-4ee2-8f49-6d5c4742779e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622659028", + "DeviceId": "a80c35e7-81fc-4577-9a18-f5f5209a1546", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566341197", + "DeviceId": "0ec0b70b-7747-40f6-a8ee-125318a510ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861840608", + "DeviceId": "db2398b4-728c-4f62-8a7e-fc793b66a70a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_467813725", + "DeviceId": "c32c3030-ed92-4e12-821b-5d5f6505b806", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cbc967ad-086e-41eb-a68f-fca9a98bf703", + "TenantName": "Tenant-cbc967ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_128847026", + "DeviceId": "707e58a1-75f5-4cc0-9d2c-3da978576ca1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835185052", + "DeviceId": "29910d79-cba0-45d3-ad39-f26bf9472ea1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154347385", + "DeviceId": "f49cf401-1566-474f-884d-cdfdde33fa32", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_163725181", + "DeviceId": "5b28dad8-22f8-4256-9874-302dd528e7f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679530336", + "DeviceId": "072be02b-41bf-4b7f-966d-b41078f72c62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_227847877", + "DeviceId": "85584ca1-ddde-4d97-91e1-595867572c05", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7febfcd0-4773-4803-a07a-321532cb8427", + "TenantName": "Tenant-7febfcd0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397812130", + "DeviceId": "49ada124-7f25-4945-a3e2-4420c9bb0db3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_809237843", + "DeviceId": "2f396a50-7736-4727-9173-817874fce294", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_783466385", + "DeviceId": "3b18739b-8e75-408c-99f0-8d6d7a631efe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244144307", + "DeviceId": "405a8adc-cd56-4e03-a3e4-5f4f19da0fba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406025590", + "DeviceId": "73326d4f-1eb8-4ca5-9635-cffbe66fa26a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_831883954", + "DeviceId": "652d1685-670a-4b88-a70d-3eb26106e2f1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d9673a23-83ab-4b8e-9f5b-bf0d07815b69", + "TenantName": "Tenant-d9673a23" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742774513", + "DeviceId": "353ca49d-ef06-4bd1-abe6-191694110bed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350771798", + "DeviceId": "674e9a41-3feb-48ce-bc6d-d26848ce43d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_394002620", + "DeviceId": "26f9e0bd-8b43-4a50-b0ee-b95d25a5f00b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_855027007", + "DeviceId": "4fc499bd-a91f-45a6-b1ab-3a86a740e210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_653032271", + "DeviceId": "97c5d93d-af81-43f8-b599-0e7905a740e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_124211040", + "DeviceId": "f159a79a-0b81-48ea-8f7f-7c3ba872751c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "111e2bc7-f204-49da-8444-4e2e61806ccf", + "TenantName": "Tenant-111e2bc7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487230909", + "DeviceId": "2dd3c276-342f-41ba-ae67-a1841355ccee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_959456947", + "DeviceId": "b9d43a6e-a457-4472-8ca8-baee8f22b292", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948362753", + "DeviceId": "8fc39f4b-1eab-4c81-9245-09e1e3176425", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837335347", + "DeviceId": "7fb2d006-874a-4221-b0e9-b06ae8fd0f98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939829233", + "DeviceId": "e31eca73-fbb0-4c6e-aa3f-e82225865283", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_884778780", + "DeviceId": "c402d9f5-85df-491a-be73-fe098afccd5e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0dc22155-450b-4e94-8624-47d2ece6a59c", + "TenantName": "Tenant-0dc22155" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_956118672", + "DeviceId": "44bf76a7-836b-4689-9960-6334d7f4022f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_222883240", + "DeviceId": "606783f5-9424-4bbd-8537-049befb497ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802183430", + "DeviceId": "995d7470-3c8b-44a5-8c4c-1abd4eeb76ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255849962", + "DeviceId": "0df19834-c445-40cf-b1ad-a1ee97fa6c9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936542590", + "DeviceId": "b56f2940-e679-4a1c-889e-5f0b07d72d11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_645776023", + "DeviceId": "df4001a1-7873-4059-93de-8142fdbbc20c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "15370cf3-1dad-4e13-ae45-88deb5f5b1d3", + "TenantName": "Tenant-15370cf3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_174614619", + "DeviceId": "73697595-bdfd-49ed-8319-941624805f0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416742813", + "DeviceId": "4d69d82a-9bcb-4615-8c7e-8dfd65991db8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941802665", + "DeviceId": "e88cb46b-fc60-4074-942b-04f779b91e29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_813841717", + "DeviceId": "cce3d05d-adff-443e-9c2e-bf3d2d27f23d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475948653", + "DeviceId": "b6685d5e-5df1-4f2b-8124-00d697ce47cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_741345468", + "DeviceId": "b413f737-5d06-4113-96c6-1ef0c156dae7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "81003559-d70d-4e71-a46c-c958ae8503f0", + "TenantName": "Tenant-81003559" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_629542846", + "DeviceId": "8751f187-969d-498c-a9cc-ef83ccae3b83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_296179964", + "DeviceId": "ead7a410-de10-41ad-8f8b-6f04341734d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_578133920", + "DeviceId": "f13f5882-8e61-4e2e-839d-71f1a7ef3c7d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_441863793", + "DeviceId": "d3ca415c-6b93-43f9-91e5-526319b8975f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_178434452", + "DeviceId": "2167c33e-3628-4fb4-9039-95c3fe9ec954", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_369242879", + "DeviceId": "bcbd72da-8649-4124-b1fe-4db79123d4fb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be393456-b577-4459-be69-9ec15b6df008", + "TenantName": "Tenant-be393456" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860845571", + "DeviceId": "f5d704dd-955f-4fe8-946d-a9fd1629674d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549659818", + "DeviceId": "5b545e5e-ea62-4757-838d-2b68700cd7b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282570877", + "DeviceId": "89d8a4ae-81a8-4c70-9448-6b995ddbc303", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_217522412", + "DeviceId": "556de96f-0d67-4331-a6df-b9d7e8b6ca04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570608304", + "DeviceId": "48e5256c-ac9a-4df6-b1e0-1d3eb90f1582", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_265360476", + "DeviceId": "0ff27cd9-be84-4bbc-98f5-95e30c62b953", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5c940e8-e807-4ec8-b8ce-9bd4e2ca4425", + "TenantName": "Tenant-c5c940e8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678007240", + "DeviceId": "3a5db545-dc8b-491b-8eeb-8387c9ee5df7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_179082074", + "DeviceId": "5a7c3568-8cc1-463c-88bf-9df33ee32556", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657570104", + "DeviceId": "fea1825b-d9d8-47db-be51-ec4bb2e686c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914527980", + "DeviceId": "d43af988-a958-42bb-a8a2-c47bca89a4a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_680550162", + "DeviceId": "aa4f7385-f63a-4e07-9729-287132532c9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_486871501", + "DeviceId": "506629c1-c52d-4e65-833d-64be392253af", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af6e5a5d-402e-462c-a5f8-93b2996bad59", + "TenantName": "Tenant-af6e5a5d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151589108", + "DeviceId": "b3a7c248-7501-4ee9-9beb-350082942a2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697114393", + "DeviceId": "ca883f75-4593-4d53-80a4-47f49f64ccb4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_178966871", + "DeviceId": "5c33569d-4e10-42c0-adc0-8728111f4c70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381014328", + "DeviceId": "ed33f5f1-fd3e-4dca-9ba2-c33bf0a020a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562984818", + "DeviceId": "4c6f3fb9-baca-4662-b51a-e128c8f775e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_934120573", + "DeviceId": "c15ec77a-454f-4a65-ab3c-e9efa9a98b5f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d0bef4b6-fb69-4b8a-aeaa-0138acf24848", + "TenantName": "Tenant-d0bef4b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_902256373", + "DeviceId": "e5e6ac71-b732-4628-b562-e50d20e9b04c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642004021", + "DeviceId": "e321f78e-daab-46c0-abde-99584b44bfcb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698207590", + "DeviceId": "e8a308f5-a4b3-4e60-852f-a5e22120900b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380789529", + "DeviceId": "3068b32d-060f-4943-ad00-ece553a5753e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290462735", + "DeviceId": "0a5a7df3-4665-41b9-b1b5-66f8163566d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_509685986", + "DeviceId": "4d78fa73-b371-4198-b8aa-b6e45687abae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9631f7e6-9274-4c6d-aab6-97b0e6f5d56f", + "TenantName": "Tenant-9631f7e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_486370591", + "DeviceId": "8ccb6005-96e5-4889-bfc3-f3a83534b596", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_446163946", + "DeviceId": "0eb5a21f-0bf9-417f-bb96-ebdb1e9e65d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170697548", + "DeviceId": "1e458395-64f5-479b-9393-2106eabb649d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422732972", + "DeviceId": "07e57dd4-2645-4e7e-8299-31de882a2bfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693614685", + "DeviceId": "687cc1dc-c074-4c1b-8c13-b573ed963ad7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_376448763", + "DeviceId": "2ca24218-b82e-4a19-902b-17173e743e64", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f807f4d5-1c8e-460f-b903-c2473662691d", + "TenantName": "Tenant-f807f4d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109588363", + "DeviceId": "90f8e722-88eb-4746-aa0a-869e3f4e9d2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687323921", + "DeviceId": "53e31034-9a83-4b68-9d51-3d0f22254ea6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678135394", + "DeviceId": "7c330bed-853c-4282-8823-08332ec5f416", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_514180088", + "DeviceId": "56a152ad-77c9-4d92-9f43-6efd6dba2412", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566835050", + "DeviceId": "38d09773-1308-490a-b713-73d1b50f1d12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_786447351", + "DeviceId": "27c2f373-392a-440f-8857-710a6682a71b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "81b809c6-f061-4127-a04b-0162cdd4533a", + "TenantName": "Tenant-81b809c6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348380391", + "DeviceId": "f3a77135-d860-473f-9f66-dcade965e37d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580610518", + "DeviceId": "47041b16-0a60-41b8-b898-f38f7a87a0ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_844726881", + "DeviceId": "07d28dc1-909d-43dd-8af2-917c13326d4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_671134295", + "DeviceId": "fbbcb0ff-e90e-4b09-9839-af5ce28da996", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556722708", + "DeviceId": "abaf0251-f145-4a95-84e4-9ca1e8a3871a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_257535024", + "DeviceId": "1b154987-e60d-42db-9bd0-373bb5aa1625", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "78e8368e-c5d1-4524-bd84-9fa9bc583157", + "TenantName": "Tenant-78e8368e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_950016910", + "DeviceId": "6afe06a3-9086-4069-baf9-596a30f50462", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313552854", + "DeviceId": "8bdfd01a-717d-4630-a268-875c5c8dd654", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204292401", + "DeviceId": "d628a5e0-13b2-4787-957e-495410349ab2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469972606", + "DeviceId": "f673dddc-881a-4281-9dde-c582eb9163bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736308499", + "DeviceId": "30b3a623-1c32-46c6-afeb-30e35d52ba99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_594119076", + "DeviceId": "e305ef8b-e5bb-465f-bb1e-6aa2a13a3add", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b7cbe05-be04-4655-a340-503f7357075e", + "TenantName": "Tenant-2b7cbe05" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_209444860", + "DeviceId": "5fae1e5e-27aa-416f-99b3-cda9bf3a3fc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748285041", + "DeviceId": "46ca5331-5cf3-409b-a8ea-0eed07190747", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450803549", + "DeviceId": "00c9547a-3967-44f5-839f-542b9234f281", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_268090928", + "DeviceId": "beef8211-f923-4267-9c46-0608ee14b6cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944384308", + "DeviceId": "6c2a22fb-d006-4d5e-96aa-e0120b6fdeac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_561994771", + "DeviceId": "0e87a08a-245f-4a97-896e-18c7a4e0c3af", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "40b42a0c-2633-423a-86b6-827e36264382", + "TenantName": "Tenant-40b42a0c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_966423063", + "DeviceId": "f045664b-47b6-4c52-8c87-5f77847dc953", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670791822", + "DeviceId": "fe45828e-4e4f-4a53-8b7d-4fab1be7557d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324143317", + "DeviceId": "239c748e-0e5e-4b7c-8dfa-e01bd6b393d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145245501", + "DeviceId": "88ba9d0c-e82e-4b33-9611-87fc6a8af3eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324679766", + "DeviceId": "a68087d8-042b-4f0d-8be6-7cae6be95b35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_919925570", + "DeviceId": "16139583-4ddc-457d-b055-c7467a675f8c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd686072-8308-4757-b098-49f7311e4f5e", + "TenantName": "Tenant-fd686072" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_502986970", + "DeviceId": "af2fe59a-9e5d-4ee2-a794-70d4a43ecd76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671570151", + "DeviceId": "361e4ba6-7ce0-4fb3-9305-664a7a9cf2a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_111857035", + "DeviceId": "f68c036d-fd4b-40d4-b6d6-89fdd39fd68b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357927681", + "DeviceId": "e3cbf6ea-05a7-4ab3-aa0f-1dc96ee73524", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273872690", + "DeviceId": "3ae8db82-d09a-4798-aa28-20ac4c0dcb2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_968610183", + "DeviceId": "03778ddc-c4d7-4846-bc7e-af02bb526e87", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ca6b1cbd-ad3b-4cff-8d1c-a3b96b0801e6", + "TenantName": "Tenant-ca6b1cbd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_735126595", + "DeviceId": "f9f3ee18-b95e-457c-971a-dde8bffd376b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_342763203", + "DeviceId": "2c0e8128-c055-40a8-94a0-fa02d929ae85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264015008", + "DeviceId": "be7768d3-f97c-40f3-8f3a-8b63a2e8101e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_731132799", + "DeviceId": "4bd3aaa9-f3ca-417a-9ebc-80cf8fa13f45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_990369621", + "DeviceId": "ac8eae83-73dc-403f-ade6-bade7f01c3d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_922655697", + "DeviceId": "f0256db3-ce75-457b-bac0-c4bbd5786b29", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c37d5923-7f1a-43e9-9e27-a198135b0d1c", + "TenantName": "Tenant-c37d5923" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408392473", + "DeviceId": "3b2a4b0e-6c4d-4da0-85ff-8b9a0f945b2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550503104", + "DeviceId": "3271ced6-00fb-4aae-9f78-9123db4c5e70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_710783866", + "DeviceId": "259afdc2-07eb-46dd-a5c2-13e0d90ff219", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_279464204", + "DeviceId": "1f484e11-f5d1-44a2-b4c8-00004e77b7df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_211473832", + "DeviceId": "31d24dde-4216-4d9e-b387-1bc2987ca1b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_318549010", + "DeviceId": "cd0c7b5d-1e12-43ea-9b7a-133b21d89948", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4cb0a3e9-1d72-45c0-b6b8-d61a4feac09c", + "TenantName": "Tenant-4cb0a3e9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818603199", + "DeviceId": "be998f58-6404-4823-8a38-9f7901870ead", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_479426657", + "DeviceId": "79974543-32a4-48d4-8839-af23cfbf6309", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_413057777", + "DeviceId": "52f50c2c-bd57-43e3-aded-1e6220e82fa9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_840751566", + "DeviceId": "8e7cddcf-3cb4-4798-8d1e-4411f1a6beba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274186074", + "DeviceId": "6f89895b-f467-4a9c-acaa-2e6039cd8b05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_858535995", + "DeviceId": "b50a14c4-2632-4179-85f0-d586e78469e9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4405232b-8b6f-4643-9028-1dfc8326f690", + "TenantName": "Tenant-4405232b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_918366982", + "DeviceId": "dacf3850-1ab8-475b-b458-5fcdbb7b7819", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260438465", + "DeviceId": "ddbb53eb-2b2d-46a3-ac6b-19cf39fc40c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621329093", + "DeviceId": "a3955bfe-d621-4a9d-b238-f169f0a45bbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667744328", + "DeviceId": "8f89a4d3-9569-4949-b52c-9bda960aa04f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244291058", + "DeviceId": "eccf97f3-58a6-4a5a-99ff-40c08e4c6100", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_283822694", + "DeviceId": "1d1454c6-2768-4768-b465-935ca6a0e60f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7bef0cf8-4a17-434c-b57c-6322549ddeaa", + "TenantName": "Tenant-7bef0cf8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514062954", + "DeviceId": "f04ae908-a96c-4d4b-99f2-fe016f742d90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842245299", + "DeviceId": "a4ecaa5d-d291-4067-979e-ce63e8eb6a66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784135190", + "DeviceId": "ad1d24ec-ca1c-4644-b361-9e1c9eca272c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359282984", + "DeviceId": "2ae71d83-4add-4a22-ad8c-b35e6029a330", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569578135", + "DeviceId": "50a52b14-32e8-4263-acd8-5278b0bb21ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_640654457", + "DeviceId": "5a0a8227-f927-4738-bbcf-1e03ba9bde95", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "049f2657-9b7c-4024-9580-fb283136c946", + "TenantName": "Tenant-049f2657" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441626081", + "DeviceId": "662d3541-4696-431b-a096-6d5e3f447db3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597618133", + "DeviceId": "a0d4a04e-c411-4d91-b864-cc7da0c894e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_800223513", + "DeviceId": "b5fd2af6-03ce-460d-8273-3a276a9b2569", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509333826", + "DeviceId": "2dc9d36c-a180-428a-9a13-43520865cb1d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477179019", + "DeviceId": "e01961ac-efba-4655-827c-717d5a80b9ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_955650195", + "DeviceId": "c55e4206-07ba-496f-885b-3481165f84ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "038d4b9c-a235-4f0a-8a1d-d1f47aac520f", + "TenantName": "Tenant-038d4b9c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_111706432", + "DeviceId": "1e911b36-4e93-4e37-9d90-9aa30191a3e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580933531", + "DeviceId": "0249142a-a30b-4163-97b2-64c19452198d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_974711593", + "DeviceId": "c7df8a43-cf0e-477c-af48-7115934d59ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611852524", + "DeviceId": "a29c22e5-afac-407e-851b-8e2aeef4c715", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532906023", + "DeviceId": "73452027-483c-4e09-be06-ec7c90c46d57", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_371998856", + "DeviceId": "cb83018c-3b48-40a3-9d68-8b139700126b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "30f5e8bf-b5c5-4cbb-9a31-dcb8cd40b351", + "TenantName": "Tenant-30f5e8bf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407534071", + "DeviceId": "e10e8f01-083f-46b8-a1fe-14a25d3efe93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119779883", + "DeviceId": "7caed047-8eef-45e3-b3db-544020e60605", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904984233", + "DeviceId": "924cbd2e-45d9-4754-83e9-5a970000d1df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896957858", + "DeviceId": "d5a09c02-2504-43bb-aff5-a48450a1eab3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798062940", + "DeviceId": "9e863b3f-b63b-457b-9f69-07c6818683ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_390165639", + "DeviceId": "b1d7dd9e-e39f-4c19-9d75-6d9824527cb2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ff953b8e-f5db-482c-b91e-e7a59bfd355e", + "TenantName": "Tenant-ff953b8e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239716388", + "DeviceId": "bde2804c-4968-4297-94ab-6e876454d192", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_852905111", + "DeviceId": "07bf9296-7c11-49b7-9dac-da9539949ab7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688202381", + "DeviceId": "de9c2de8-b495-4e97-96c3-6f381500d757", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_391887888", + "DeviceId": "8d8413c9-8d87-4613-b0b0-1f1bbc965053", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284033622", + "DeviceId": "8f137c1c-09e6-4ebc-87b9-65c6417933a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_228611216", + "DeviceId": "a991c72e-7829-44bf-8013-c14afffd5fa8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a13dccd4-48ac-42a0-a561-b565f53b97ea", + "TenantName": "Tenant-a13dccd4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739326394", + "DeviceId": "4ab779ee-c8c9-4ddf-a185-5e1542fd089e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_785296417", + "DeviceId": "eb1c7ed1-9c79-4044-8ba0-ac9ce49f72dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_407347831", + "DeviceId": "5cab17f1-b668-4c16-801d-58ccbed52ae5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508961779", + "DeviceId": "3d26f68d-7cb0-4935-a5b2-c4d95c2824e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457827240", + "DeviceId": "a9657ef6-8225-4d1e-995a-5127e87aff63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393813003", + "DeviceId": "64f230ac-0d21-4869-ab6f-7344a573530c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bde72f24-a26b-4ec4-83ff-fcf3b79d0cad", + "TenantName": "Tenant-bde72f24" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348997786", + "DeviceId": "3bf83838-0a14-4650-ac45-73555108e3d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129489676", + "DeviceId": "6bfd0682-ecf1-4375-8f6b-3dd4b9d6c2e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947123914", + "DeviceId": "52b4af96-ba18-45ab-ad33-6a3a23cacfe0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658276041", + "DeviceId": "fe3a3b03-0b20-457a-8fb6-fdff8f5a1148", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836801919", + "DeviceId": "c655201c-b6ed-4792-a76b-7b34c46dd0e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_351545344", + "DeviceId": "1890d55e-f5b6-490a-acec-9ee0c17ab63e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "44241872-3b2c-420a-b997-283b4b60969b", + "TenantName": "Tenant-44241872" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402066684", + "DeviceId": "0296bc04-c438-4a0a-ad54-20805942d45a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320648422", + "DeviceId": "424f0ec0-28fc-4ef4-a27b-2a93e31f82d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851344822", + "DeviceId": "de08fd9c-804f-4aec-8310-f6397620d513", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755441017", + "DeviceId": "12badf14-baaa-4e91-bdc1-b9adc883751c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825514593", + "DeviceId": "31b0cf8e-cec3-4ac4-9b90-92ca95918576", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_892245157", + "DeviceId": "721fb261-9f9a-4702-ab07-fa319c5e71d4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "91f74074-afa7-444b-84b9-3024bdaac26d", + "TenantName": "Tenant-91f74074" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839634322", + "DeviceId": "ba0a613f-82a5-40fe-8f3f-c7d1befdc80c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938406982", + "DeviceId": "6c349ff9-dcd6-407a-b669-afbbc2e05895", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_876450254", + "DeviceId": "6f0b3e02-3662-41f8-81dc-8ed79bf3bd57", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931031859", + "DeviceId": "092b74f1-a09a-4353-a6c9-c2c7621c9c1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_800336554", + "DeviceId": "20ef99e8-0e65-4a51-82ec-0b6481c72ace", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_418887690", + "DeviceId": "0f39bd12-d845-4b24-8c70-b43417a2fa2b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "69a82f07-593e-4ec7-8d10-40f2e8b3d065", + "TenantName": "Tenant-69a82f07" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201927963", + "DeviceId": "d8488e9e-8e24-49db-a044-7b431d9af3c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704634274", + "DeviceId": "c4e5c28b-2944-43ad-9296-6d2c41d1450b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_514268831", + "DeviceId": "ab9b488c-d458-4d4d-a2f1-6627ee9fb63b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631697306", + "DeviceId": "7a081244-7807-4ded-8ab4-e190abcb74ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576425032", + "DeviceId": "66e74d77-af97-4875-b3cd-2a8dd9ce7265", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_265399539", + "DeviceId": "e3b2ab5b-163e-415e-87b7-39719f73235d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "43a35b94-9994-4673-a0ac-cdb12118604d", + "TenantName": "Tenant-43a35b94" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804243425", + "DeviceId": "f64edf53-ad48-4201-acdd-797f1fe606ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968108457", + "DeviceId": "8838b7e5-57dc-49fc-8678-61c418b99467", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673813523", + "DeviceId": "c371180d-b92c-435e-8168-20521dc15ee7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568095609", + "DeviceId": "7bfef8f5-d9f3-4335-918b-3d38147d8973", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361445278", + "DeviceId": "d7856604-37a9-4784-9b18-78ac182d0823", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_550723262", + "DeviceId": "6ba3eaf8-dc10-416f-9ef0-64ccef877eeb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "65bfa057-67c4-4704-9f83-492f87c53a46", + "TenantName": "Tenant-65bfa057" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419607660", + "DeviceId": "2f90b636-d296-4959-ace6-9fcc06d9f288", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328775802", + "DeviceId": "a9a13209-e048-455d-a0d0-36e1ba75503c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290592250", + "DeviceId": "10f63880-955e-4834-8947-be2eff1c1c2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889554777", + "DeviceId": "d4868aa1-8a49-410e-abf4-9c536bce4e15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881634479", + "DeviceId": "a8c490dd-cb5d-485f-aaf9-cdc68a3d323e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_384352569", + "DeviceId": "d2ea97ed-762a-4cb3-b031-7dcbb288d69d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "501863f1-b77f-4547-b3f4-476d2c0b413f", + "TenantName": "Tenant-501863f1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617818228", + "DeviceId": "b66aa377-2a3d-4296-9124-51efbdb9181d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244239720", + "DeviceId": "723f8a53-b176-495b-80c0-abaa96a8948e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_824026347", + "DeviceId": "e33ad1ba-d4f4-496e-9332-21152521806c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612452247", + "DeviceId": "78c41893-2d8d-4724-99ae-3807f72d71cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810696154", + "DeviceId": "205b22ab-a3c2-4ea0-a3a0-cbeb6394f97b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_600826039", + "DeviceId": "9ccd0639-62ad-4b60-ba5f-d2759ddb7047", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b2a167ed-2f41-457d-ae9f-2676e7d6c398", + "TenantName": "Tenant-b2a167ed" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706393558", + "DeviceId": "64e8a3a4-a619-4407-8f6c-90b9ea4bc25f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474325636", + "DeviceId": "f83387a3-9e7c-4b43-a1e8-0ec333ae612e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_355294757", + "DeviceId": "2bb7921c-7872-4713-b003-0b7bcb96669c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_353396426", + "DeviceId": "37a5263e-d59e-4990-9c3e-fc19aaf4336f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_775119545", + "DeviceId": "5fea79b0-6e9a-4c2c-8112-08ce4a6216cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_847387652", + "DeviceId": "5af642b6-b1d0-44c8-9db5-fff1139c46d1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00838a41-84ea-48a4-93a3-085498b00220", + "TenantName": "Tenant-00838a41" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592058843", + "DeviceId": "044d6508-5b35-461f-8dbc-7abf38119811", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506567671", + "DeviceId": "08f22ccc-4da1-4441-b888-7647a65a8ad6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190417978", + "DeviceId": "b99ba536-5b48-425f-889d-61c5c0bb7d20", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506768919", + "DeviceId": "1af8515f-d84a-4720-ab03-66c44ecc75d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_349498115", + "DeviceId": "e5d9e23d-0757-42d5-ba8f-12a12bcc7269", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_509340544", + "DeviceId": "a5a8a124-47d2-4d4d-9525-b7d71fc77892", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d9ac24f-80fc-4bf4-ae84-0f7f69a9f457", + "TenantName": "Tenant-2d9ac24f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409301573", + "DeviceId": "4f3c6143-5e86-4fac-b137-98391c13c6c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532776692", + "DeviceId": "a72f0f4a-adc9-4f4b-9299-e3cd8d2d2e02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199903289", + "DeviceId": "334847dc-d0af-4362-819c-75810940110c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232556869", + "DeviceId": "eb6c70e1-af36-4199-8ba0-c0ebc8c0c6e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_339088875", + "DeviceId": "ed2f52ee-8fdb-4b44-b6ee-3a7badd7740b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_332444277", + "DeviceId": "59d954ae-170a-4801-96ff-b8800a6c1cbd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a61fa370-9a24-4c23-8d06-def9862893bd", + "TenantName": "Tenant-a61fa370" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184290385", + "DeviceId": "79c02c7a-b0b8-415c-a528-eef9a208c4e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206465661", + "DeviceId": "ca1b2e47-e7d8-44c6-a777-dda28efacaf0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130714006", + "DeviceId": "de4ffee0-90ad-41a0-9c7a-297750a78731", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945898029", + "DeviceId": "76b74c8e-2280-4f3f-8a7d-bd82bae591df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687010937", + "DeviceId": "93b20eff-18a4-4a3f-b7b9-d90c688e9882", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_264666454", + "DeviceId": "2f065ad5-3184-48db-93f8-d9cbcb08ad3d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c7014022-6eee-4760-be92-bc8a40314f0a", + "TenantName": "Tenant-c7014022" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914151164", + "DeviceId": "82e28c20-8ef6-4851-8cc6-98381f1045f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566231664", + "DeviceId": "a4ac9083-5335-4d34-b3f1-587d1d5cc307", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_759932377", + "DeviceId": "8e09e06d-19ff-4acd-b815-b8d7e0e28f80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989933237", + "DeviceId": "216377d2-9a70-40a7-9d29-275a28594aa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_974735161", + "DeviceId": "1105a63a-53f8-44bb-9905-4548c659a0b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_402155164", + "DeviceId": "098bf4b1-c206-4850-bd7d-0be2e29e6a75", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "21360fb4-ed39-49d8-8bd8-1abefe183803", + "TenantName": "Tenant-21360fb4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_194837391", + "DeviceId": "bc7ac0bf-f3b8-420e-8f91-3b1e98ef420e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730699910", + "DeviceId": "cd28176c-ee28-46ef-9178-d5160b09a46e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512990741", + "DeviceId": "5d1b5fd1-ef4b-4a11-8f01-0fc730719570", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481975852", + "DeviceId": "b1f793cb-47d4-4715-8cf1-eeb3a76b127a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476705809", + "DeviceId": "d9e46284-5fbc-40ca-905f-32e7d81a08aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_377721352", + "DeviceId": "f4d54eb3-9154-4298-9b44-b8979ee44699", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4254008e-8494-4bab-a183-78763d7ea798", + "TenantName": "Tenant-4254008e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477139187", + "DeviceId": "86d28df9-119a-44a0-b024-55a6182fdef2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382732271", + "DeviceId": "55061aab-c5d0-4b81-935a-e79c1e12de08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168976276", + "DeviceId": "202fa194-d142-498f-ba39-2b4a7e1195f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614820840", + "DeviceId": "ab6c79a7-c08f-4f07-b51e-76000579d66f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_710023181", + "DeviceId": "b8fef3bc-93b5-4932-9600-18dbecff74c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_100414781", + "DeviceId": "ad627f1c-dcf6-43a5-b1e9-2b9c2cc865bd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d25eb3d-e90b-46fa-b706-890c797ea1a5", + "TenantName": "Tenant-2d25eb3d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_214491605", + "DeviceId": "828c47f6-a325-4df5-905a-be03842396be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564093550", + "DeviceId": "547a8b04-00fa-4798-a06a-137b11c230ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258647419", + "DeviceId": "a78f6f27-6750-4f79-9408-f2bbb71210a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_824139745", + "DeviceId": "1d4f5f80-5961-4477-8c1e-45f8907e1254", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_943032675", + "DeviceId": "e7ea7a3c-14ec-4f23-901f-11c2db7f5d8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_168794903", + "DeviceId": "a6917b18-5e53-4ab1-b804-19434c20da4d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a3775f78-15f3-4485-a187-c46acef5bccd", + "TenantName": "Tenant-a3775f78" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313486832", + "DeviceId": "5a639de9-d265-472b-880b-16b2f1b968a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722263532", + "DeviceId": "e4cf25cb-926c-40ff-8a01-8812e79817d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673462890", + "DeviceId": "3b429eea-e571-4a5f-be8b-21072c124121", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200111772", + "DeviceId": "7ae81d74-4838-451b-adf2-71ae1597310b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141083030", + "DeviceId": "fbc8c72d-e0fd-4d11-bfcd-d2981d601ff0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_786520000", + "DeviceId": "1e945e79-42fe-40ef-a192-c790efc8b6c2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d7d973ab-a355-4423-9bf1-250ac20e389b", + "TenantName": "Tenant-d7d973ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_816178612", + "DeviceId": "1640b936-43c5-4c61-af80-bc70cdc9c473", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_340626199", + "DeviceId": "4160943d-af15-41f9-9604-62a65dc535b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_293444154", + "DeviceId": "83bb2e68-873d-4fd6-b4af-caffb23a89f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_602735493", + "DeviceId": "a19b4efd-e448-4eba-a8e4-5db393831996", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757767257", + "DeviceId": "cf28f03f-96e5-4b19-832c-4ef46b673a79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_980813146", + "DeviceId": "aebb7c7f-6974-434e-8222-caa2a5ab580c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fc2d96ab-5e96-499a-b71a-79d091556f50", + "TenantName": "Tenant-fc2d96ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142299283", + "DeviceId": "dca9ecca-66e3-46c9-bf4f-6a63da6de692", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591217447", + "DeviceId": "ce1806df-b5fa-482a-8df3-443017ddc9f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681136902", + "DeviceId": "901a2ae0-03a3-4cf2-ba8e-fa162ddba9a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334092601", + "DeviceId": "adaeaf4b-0f6e-455a-b05e-2fd0aa8dc4e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_180133165", + "DeviceId": "a60bdacb-cb7e-4a71-8e6a-35d72103033e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_780617322", + "DeviceId": "7dc5fdc9-8cd8-4209-ac6d-f5bb074256ee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11e9cb93-d474-4692-b645-c55640241d66", + "TenantName": "Tenant-11e9cb93" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201708333", + "DeviceId": "6ae0a329-6392-45bb-a963-774801bcf49e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734609462", + "DeviceId": "16c17edd-6611-4a9d-a1e0-8dc14e721866", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_124551188", + "DeviceId": "5cbc958b-5abf-4c86-b8fc-4072b40eb4a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_544339631", + "DeviceId": "f01bca45-7464-4334-8ed0-3122b0d35899", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698564840", + "DeviceId": "90b805ce-f3dc-4907-8bfd-34891a01be15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_402715629", + "DeviceId": "b3dbbe8c-40a7-43f5-b51e-708b63445aa5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e16ced74-a5f6-4a31-ac68-e1cd342daf5c", + "TenantName": "Tenant-e16ced74" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_367866659", + "DeviceId": "d452b269-7fe7-4eae-b602-9cbd76e67f50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853910547", + "DeviceId": "21ddb3b4-3d37-49da-84f5-a6220b947811", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_870942402", + "DeviceId": "1be7d940-3981-47cd-b829-1c0ac6375333", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_521151855", + "DeviceId": "b5dcea69-d7d4-49a3-968b-a2e09d33857f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619248488", + "DeviceId": "786ef296-789e-4bfc-bb26-ff5ab964f420", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_996191222", + "DeviceId": "7130786e-9f19-4c23-a9dc-8f42f693ff34", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "37ce60d0-f4b3-474e-a75b-27cbf3fe4f4c", + "TenantName": "Tenant-37ce60d0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_959815675", + "DeviceId": "7f948949-3900-43a9-a64d-fff69fbd5e56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_322537102", + "DeviceId": "237cd1cd-742e-4375-9656-bd883f774ca5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782635210", + "DeviceId": "9be52c87-51ca-499e-b20c-22aa76984f83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_789353956", + "DeviceId": "7eae4189-c366-4a30-8fe3-f0fdad90b2ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_489268845", + "DeviceId": "52c32fee-0143-4293-9270-be2511faee61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_694022151", + "DeviceId": "d97af5a7-6b2b-481e-a3cc-ca52fae99ead", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "64553ea4-d153-4303-a3ab-79c6a57fb37a", + "TenantName": "Tenant-64553ea4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597564232", + "DeviceId": "bfcd08e7-5412-4b8d-914c-5f6818477a4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845657588", + "DeviceId": "479ac5e3-1c17-4fee-b2b8-a83e54f336d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_958424507", + "DeviceId": "4aad2e66-750d-48b2-ab56-3c71845ad8fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618537791", + "DeviceId": "c77bd2d8-c723-44c8-96e8-e7e9293882b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_605477718", + "DeviceId": "a6d48192-30b8-4681-93e5-43bd4f2f36fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_455943494", + "DeviceId": "45452bb9-c57f-4c52-98dc-8a68bd3a6fb3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4179ac00-a0a5-4a81-a6bd-21a10ab1cc5a", + "TenantName": "Tenant-4179ac00" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400223303", + "DeviceId": "9ad00455-c49c-4e74-b5c0-3ac86ac32dc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234821558", + "DeviceId": "7221eee5-83a0-4f98-bab3-5b8d28e2c3d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_327178943", + "DeviceId": "83a2e722-e76e-4ac6-84d8-aef93bf7cbf4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438998609", + "DeviceId": "9955e295-0cda-4253-9b9c-76a5cd4d7430", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378348250", + "DeviceId": "5e91e108-f921-49d8-ba66-ec6fa8bff4e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_335861294", + "DeviceId": "f010c76f-da5b-44ff-8501-a6b3296edf6d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7663cf1a-1c41-4620-8dde-291444caa858", + "TenantName": "Tenant-7663cf1a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444998659", + "DeviceId": "963d0437-acc4-4efb-a2a2-b206edd11306", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_507538853", + "DeviceId": "6282ef27-13fc-41c0-895b-ddf3dee15f28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395800022", + "DeviceId": "498c1ffc-4ecd-4756-a919-9852d30eacd8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614529876", + "DeviceId": "9921769a-0a13-486a-80e7-076be38f2500", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709550575", + "DeviceId": "2df0a03f-623a-4a6a-9e67-a7da1ee1d042", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_124117754", + "DeviceId": "fdfa426a-45b6-4854-8329-226cf67a10f9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aea821af-8e6c-4b03-8fcc-42d9468236ed", + "TenantName": "Tenant-aea821af" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162991602", + "DeviceId": "a5469d17-235c-4be5-a01b-34e8a5394e85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_530664048", + "DeviceId": "6fe37799-7b1a-4e2f-91df-6441ce2a7c2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645324992", + "DeviceId": "29d11b3a-b480-4f10-a5dc-d0f696fa1b8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698804354", + "DeviceId": "71af3f9c-6ed2-4e4c-8683-80c326f046de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969618432", + "DeviceId": "239ff30c-f024-4d6b-96e2-268184eb7f9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_250424942", + "DeviceId": "101fe571-f9c3-4cd7-a09a-a1de49a93caf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "81ad9bc4-217a-4128-b6b3-12c45494e4d1", + "TenantName": "Tenant-81ad9bc4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116660449", + "DeviceId": "c0deca92-ca96-4e56-9c71-ce543b8d9615", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_355684908", + "DeviceId": "488c0631-5041-4d7b-803f-782540287437", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316863473", + "DeviceId": "c1eba640-0072-4a8e-b0d5-ae0d7e1cbb16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_544672828", + "DeviceId": "99009bb9-8760-4265-bfc8-1d23a1fcd5b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931666638", + "DeviceId": "9ce64cc1-d351-4fd1-bfe2-80109b88fe5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_968800571", + "DeviceId": "cfbfea0d-7d85-4192-bb8d-7bd29fc1b481", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "49effa01-25c4-42ee-82fb-220fb773d365", + "TenantName": "Tenant-49effa01" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582338131", + "DeviceId": "cf78012e-d557-4b9c-8e67-380f823b412e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_551628518", + "DeviceId": "6d05bda2-1e17-477e-91b7-6536c83ac661", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_946001154", + "DeviceId": "cb514ebb-f766-4c04-89ee-92947f5d6bf6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827771175", + "DeviceId": "6dc8b32a-276a-4191-aede-6f2c5b33c67d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_551740514", + "DeviceId": "da7a0876-1df0-49fd-9165-84968efb6c97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_746838497", + "DeviceId": "c0f6a535-6a31-4fb9-8dbd-bee0a542efd0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4ee11c48-bdb3-4b17-970f-d79caa30aa47", + "TenantName": "Tenant-4ee11c48" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325731647", + "DeviceId": "25aa46d8-bbad-4b46-a54a-22830516e36c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643119050", + "DeviceId": "76a4c32c-de40-4506-8212-e53b11140fa3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540601532", + "DeviceId": "75dd72a9-fef4-490d-a44a-ab2bae177c96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287980552", + "DeviceId": "00af9861-c902-4844-96d8-4cfe2e114bbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_779600510", + "DeviceId": "d94b2737-4f47-4d93-819c-f3ed1fbd1315", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_215968917", + "DeviceId": "057b4f4a-4c19-4502-918a-f5e8f6f8812a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "18351ea9-2ed0-4559-93b4-f87428198d8f", + "TenantName": "Tenant-18351ea9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416113556", + "DeviceId": "3c51bd95-475d-4e74-a2fd-2b03b264511c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164257095", + "DeviceId": "4de9b36e-ab7b-465c-ad9e-f9c07e986f69", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_664282997", + "DeviceId": "e9b98ffd-73b5-4735-9d72-9411d5fbc48e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_117662924", + "DeviceId": "d07b0560-225a-4bcf-b9a7-187cbe2bb8ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_340332738", + "DeviceId": "0a976ab4-11bd-4d1f-a91d-28373ce484ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_383214004", + "DeviceId": "b7fef8ab-4bd1-40d5-881f-4bc1aa2e9436", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "773729ad-16ab-4277-b261-c72999097f59", + "TenantName": "Tenant-773729ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287711537", + "DeviceId": "9f53337a-db24-4c8a-9c33-ddb850429c2b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495997120", + "DeviceId": "e48de00e-86e6-4b68-9d80-e38e019527cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645707082", + "DeviceId": "cdcfe6b9-4d9b-4af9-af7b-28cd1c762719", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_265506597", + "DeviceId": "86d9a346-9cf2-4d6a-ac10-bd6fa4be8b2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427260037", + "DeviceId": "7a6107eb-7a05-4c04-8b50-02aed2261c2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_255483605", + "DeviceId": "57afe29b-2d15-4da8-9850-aa2b2e5b8c63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "061bc790-ce09-427e-8ad2-87360d64166c", + "TenantName": "Tenant-061bc790" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_655084230", + "DeviceId": "2058c129-c0dc-4a88-a12f-0c7f5997c0b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457067906", + "DeviceId": "5f317611-d69f-4ae6-a733-8379e17efffd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_689704364", + "DeviceId": "a20af647-eb65-4335-9673-4823a9ffc200", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714384033", + "DeviceId": "828aed99-a77b-409b-84a2-85c65abbbcc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_417987324", + "DeviceId": "c56ee0ab-51fe-4b3e-81ac-fb743b2970c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_370208759", + "DeviceId": "96516562-8210-4e42-bac6-ad1d61c7b352", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "387eb1e1-ae8b-47fc-973f-02dc328c0a4c", + "TenantName": "Tenant-387eb1e1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_157269944", + "DeviceId": "1bbf734c-6b44-4943-8710-8273770b2f48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402886715", + "DeviceId": "ef3bb9b2-9bd6-47f3-b913-3d33cd8d6feb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662973672", + "DeviceId": "ab0b3baa-1739-4b71-8b8f-ebde0090766c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_565415645", + "DeviceId": "af8dc3e3-de0d-4ccf-9c75-a962c09b2158", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540638641", + "DeviceId": "741cbb66-944c-44fa-8588-bc420892011b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_267666666", + "DeviceId": "16968731-7796-462b-bf6f-63be8d3b5acf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c29afee2-4ea0-415b-bf67-2a9cc83ecd6b", + "TenantName": "Tenant-c29afee2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866585348", + "DeviceId": "14a79ffe-32be-42ac-8993-9eb4bb5bf9d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425238901", + "DeviceId": "b0cdb938-8ea2-4208-8b65-9c4c3c5a2ae9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310343908", + "DeviceId": "8472d6eb-451d-4274-8e49-aabaa0884018", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619759512", + "DeviceId": "e95db487-6f45-4fd3-8a43-43a30352ef0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_686202225", + "DeviceId": "a205b7d4-3a49-4ead-973e-4417dd029a36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393910206", + "DeviceId": "233d8dfa-e1bb-4ec4-af55-8ebf06dcaff4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1f7ef950-cd8a-4c45-b8bb-3c5bea8c3013", + "TenantName": "Tenant-1f7ef950" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_220864762", + "DeviceId": "8ed3a2ba-46ad-4bbf-833b-bf74a3d456a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260407167", + "DeviceId": "e75b715f-fd88-4aec-8850-7fecb3cfbeb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994250113", + "DeviceId": "3f86d7cc-1717-4b5f-a755-e8707570b8b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481456003", + "DeviceId": "dd1ae7e0-11c3-41fb-949d-56e0ce29985d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606567652", + "DeviceId": "b22b4c53-eece-48a7-9330-6e9d49a29575", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_380736568", + "DeviceId": "2e742647-11ac-43d3-90e1-ecd843287174", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "21ab1517-22c3-4e3a-82f8-dfcea6c7723d", + "TenantName": "Tenant-21ab1517" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798725273", + "DeviceId": "b01447dc-0e5c-43dc-a073-f80c8b4384e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302890773", + "DeviceId": "4857eb6f-4f80-446f-93f4-b4ed5cf74a16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375085918", + "DeviceId": "e5b55950-0888-4456-b704-8fe67623956e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411067979", + "DeviceId": "c6b09149-e96f-43a0-8904-4a0b09d5aea3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148595114", + "DeviceId": "9f3f3172-d68f-4418-87ba-406e47bb4c9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_976734822", + "DeviceId": "fd799cd1-060a-424d-8aeb-93e1c8f0f1a9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "36bc0294-333f-4a90-a324-e2692b41f4ac", + "TenantName": "Tenant-36bc0294" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476657763", + "DeviceId": "7e19e5f9-4940-4499-8a46-fd16e5ae88aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693499917", + "DeviceId": "2a0c9df1-0bb3-461e-9a9a-a2d9fb7e7d0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729481991", + "DeviceId": "4eca808d-3689-4719-995f-9d27753c8854", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283605339", + "DeviceId": "cf339478-0fde-46b8-b0df-e42335611819", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_813164529", + "DeviceId": "0620eae3-248a-4fcd-bae4-60b2e4b8eda0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_296100906", + "DeviceId": "33e4447a-b1f0-48ff-818b-30213d8e491e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aa1327ef-136f-4826-b9b4-102548b7e3fc", + "TenantName": "Tenant-aa1327ef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443542749", + "DeviceId": "61945ac2-3e89-4568-916c-0935fb9ef20c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997369024", + "DeviceId": "740d7a08-7367-4b65-ace4-5f524a441284", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862471810", + "DeviceId": "0b16fb35-2e68-4286-afc2-76757878fe46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_634666474", + "DeviceId": "aadc7fba-55f8-4435-8fa6-4326bd30c4d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_877542727", + "DeviceId": "2b306fe9-08b1-4b60-8d55-ed817a003121", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_944937132", + "DeviceId": "f47a416a-c9f6-463f-a9a2-0e27f6f08461", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a59f01f5-25df-4efa-bcbc-55925267d02d", + "TenantName": "Tenant-a59f01f5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802321604", + "DeviceId": "9f79a2bd-48f1-4cec-a61e-074fc11ec812", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151714508", + "DeviceId": "c29668e5-358b-4fad-b95c-05ab10af6644", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596678732", + "DeviceId": "d8b9ac6f-7a9b-49f5-a351-2e342915947f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637245336", + "DeviceId": "89367680-0037-45a2-abfa-f8b40ed2cec4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_330590549", + "DeviceId": "16d04c33-1f83-4fa4-aea8-2b9af2f93bb1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_503496356", + "DeviceId": "5b0ef69f-d40b-45f1-8fe7-947683974d11", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8c25ea33-0451-40b3-93b6-26a65c74e663", + "TenantName": "Tenant-8c25ea33" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874789743", + "DeviceId": "fae24c36-7b9b-404d-a4b9-27e578f8c023", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822645581", + "DeviceId": "768b03b8-53a0-4601-94b3-2821ec1648a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_221928369", + "DeviceId": "023affcb-f611-4e0d-97a7-c21d066eec5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_891186187", + "DeviceId": "af78c523-29ac-4150-8bba-1e5f3cc52b5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283057520", + "DeviceId": "95c26e37-0037-4227-94b8-3b028f7d4383", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_386949161", + "DeviceId": "6c474c3b-a179-4908-b37d-50d665d3c74d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a249a0b4-3571-4c54-8ee0-5ff0f5647b65", + "TenantName": "Tenant-a249a0b4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803663795", + "DeviceId": "eb42b1e5-6cc8-43da-8c8a-0f3cb49f1920", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218434037", + "DeviceId": "362310da-66da-4c38-8b2a-47c9097596be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_332975508", + "DeviceId": "923f1546-ef1c-476c-96a4-8cb133918393", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382351296", + "DeviceId": "9f66efbd-558c-4942-88a6-f13ff7a450ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736334120", + "DeviceId": "2187e6e8-d571-4bf0-b554-390c3b99fa7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_171816768", + "DeviceId": "216bc2ca-9749-4a74-8e22-d539901abe22", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a04459f2-61da-4544-85c1-f10d82aadcab", + "TenantName": "Tenant-a04459f2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_177781882", + "DeviceId": "77783389-2ded-4183-978e-1cc93b08abfe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582429841", + "DeviceId": "acf95b80-c87e-4153-a87c-8d531be80d2b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752649852", + "DeviceId": "9ed3258f-56ff-45f4-9c36-363342875df1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868097930", + "DeviceId": "29f979f9-b5d6-4329-ae4e-b87c3eb139d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_839882744", + "DeviceId": "b55cbe7d-fe62-4460-8676-897cdee8070a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_755636578", + "DeviceId": "a52b1353-7b7b-466f-a3a0-43e35e7a752a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b2cd58d1-69d9-4193-a4d4-df76173f952d", + "TenantName": "Tenant-b2cd58d1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843925786", + "DeviceId": "600ef92a-fa39-4b23-8630-f05c7c76d720", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690036524", + "DeviceId": "47ac71dc-394f-4258-9ec1-6b3fddf1e31d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799444642", + "DeviceId": "f9794df4-82f2-4166-b261-c342462f3ebb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208669642", + "DeviceId": "587c11c6-f3d7-4c96-b5d3-e0b96a40f9f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454925088", + "DeviceId": "b653e44e-6ce1-46b4-a0ac-3339590e02ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_791885814", + "DeviceId": "99c8715e-3b7a-45b7-bf1c-eb2e54962f4c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d2ad09db-11d3-4385-9150-80e5731a0405", + "TenantName": "Tenant-d2ad09db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606674984", + "DeviceId": "dc63303d-f229-4070-b581-2ce2e9576e06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_865289677", + "DeviceId": "2f10db0e-4fb5-45df-8dbf-dd5c0a9b0bc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_704315880", + "DeviceId": "3890173f-cf47-4653-8d73-8a35095fcc45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714151868", + "DeviceId": "45f92864-5293-4b21-ad15-2163247e3dd6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201234332", + "DeviceId": "4e6827ee-ea80-4996-ac76-645fc423f739", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_404972999", + "DeviceId": "f4a019de-130e-4101-8355-e00d76481685", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d0971d85-113c-438b-9aea-d658c6557165", + "TenantName": "Tenant-d0971d85" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681565930", + "DeviceId": "03578de9-5daa-4c95-b8ef-53bb9ec95fc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_369559973", + "DeviceId": "5b72e4d0-5fb3-4440-a918-e0d32418af67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_489802461", + "DeviceId": "4efd5d75-8864-4878-b480-79dd6bd4b46d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698733193", + "DeviceId": "2aef5678-867c-439d-a8d9-c091d2d4e3bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_801301296", + "DeviceId": "3bccf90b-cd70-4ebf-be84-1b48987ae203", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_323317199", + "DeviceId": "98595d9d-d2fa-465a-a259-9f31fea41ffc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "014d19ac-c6b0-46db-8da8-1dcb446b4567", + "TenantName": "Tenant-014d19ac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972834730", + "DeviceId": "5820ea32-b01f-43e9-b7c5-a5cce5623df3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_452031933", + "DeviceId": "d0cd4913-b314-401b-ac0a-4b9566f46dbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472698378", + "DeviceId": "85fed947-0c8a-4017-9ea5-dc17297ec3fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667269854", + "DeviceId": "f2f20e41-6b83-4773-a5f2-8f31349a50ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670864975", + "DeviceId": "61a56005-fa0d-4b47-af20-27451ab80f31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_302708515", + "DeviceId": "6e3dd617-d4f9-44d6-8368-81cbae70778f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "14b60b66-a23a-4e85-9c2b-ef060318c7ed", + "TenantName": "Tenant-14b60b66" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508246163", + "DeviceId": "e06d4db1-4c65-472f-9c3d-9b4c41c4d283", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103810685", + "DeviceId": "b8510bca-f799-41d0-b1b4-5d489640d346", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342175990", + "DeviceId": "26f9860a-7ad4-4034-82ab-9c5c36ac6838", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347808698", + "DeviceId": "f9736e39-0dc2-4766-aba4-61a2e8b723f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677325605", + "DeviceId": "da72e513-5aba-454a-8b39-bc5b2015c5d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_914396979", + "DeviceId": "df8c8b79-2978-4679-aaf7-a5dafdfab06e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd260d83-fb37-42d2-99f8-8793795d95b1", + "TenantName": "Tenant-fd260d83" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152890294", + "DeviceId": "553c890c-a06e-444d-93a4-de095b405458", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152384606", + "DeviceId": "21422905-c8e0-44f2-8914-176654098932", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348017503", + "DeviceId": "5cf7e954-da25-41f2-b24b-ed8bf96386cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320724584", + "DeviceId": "3a861c00-68b3-446d-abf8-6cd0e2e121e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672899470", + "DeviceId": "f0a80a6d-878d-40ef-92f7-ef7d54794c9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_771233282", + "DeviceId": "e5c9410a-2b10-4c14-8788-44b439201750", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1eecc383-6522-4bf5-bc27-84222b518b0d", + "TenantName": "Tenant-1eecc383" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364898504", + "DeviceId": "e4b4282a-da1c-472c-8276-05636ab178ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_395800998", + "DeviceId": "8203d92f-c3a9-4601-8e8f-b1822093ac29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_985775794", + "DeviceId": "680a7d43-a82b-43a8-8fbf-f22b20c6267a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936635036", + "DeviceId": "e3730787-bb52-4170-8cc0-5036eea44784", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_407565216", + "DeviceId": "6f5ad22d-3785-4426-9eb5-3396ce982238", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_511848011", + "DeviceId": "f5d62400-502d-4089-ad60-60eda683fe2b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "498f7fcd-f34e-4dee-97ab-331b53030c4c", + "TenantName": "Tenant-498f7fcd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984252466", + "DeviceId": "24a5e98a-570d-4a23-b326-fc2f2f464934", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992798815", + "DeviceId": "11fe044c-f340-4d39-a722-5ab79c044ee6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869441516", + "DeviceId": "1bf7b33d-11b9-4428-ad8b-00a9ade877a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651499553", + "DeviceId": "c140ae08-9f5d-4c4f-ada9-1e30a12013fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_922968559", + "DeviceId": "c64d0104-81b4-4c53-83bf-5e14b9e98402", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_470948134", + "DeviceId": "72c07bf3-335a-4db8-ab31-7c066c478aa4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "67b416bf-acd5-409d-a172-9e3f07a7bad3", + "TenantName": "Tenant-67b416bf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511814883", + "DeviceId": "47a91d6f-ff04-42f2-9541-dbdf50c4c527", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382479699", + "DeviceId": "6dd94583-cf4e-4e2b-b060-d84267ee6c40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_243660109", + "DeviceId": "77d8f5bd-d9fc-4f7d-99ab-4031f7e49b60", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119806672", + "DeviceId": "ab59f03a-86a5-447f-91f3-1b0f2c12bec1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496257301", + "DeviceId": "479e991a-03a0-47a2-abc7-65d8e07f5569", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_519058042", + "DeviceId": "b08e86f4-7893-4ffe-821f-fd7f81ae69eb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "38669bd4-dd5b-486c-8b92-fda78437493f", + "TenantName": "Tenant-38669bd4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_577219780", + "DeviceId": "97aa06a3-056d-4dde-95dd-611cb6fe1e9b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611981210", + "DeviceId": "5a8e811d-93ab-4101-99ec-d51cafb07d84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383569385", + "DeviceId": "a1343689-1cd5-4d00-aa08-bbe7c6acb394", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817918258", + "DeviceId": "49ae941c-4da7-4c5c-8290-f2d361f6984a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_987540520", + "DeviceId": "5683a4a8-e35f-4c73-b56b-eff3453f70ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_883079019", + "DeviceId": "b748c3be-7081-4151-94c7-e70842c9bc5b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7dce351b-20c1-424c-bf57-0db6698b2072", + "TenantName": "Tenant-7dce351b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651598663", + "DeviceId": "d45ebd6b-a12d-4380-ac81-d02d4443c744", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973500780", + "DeviceId": "d4bf54a3-d790-4275-ada5-ce4b001ebf3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691029977", + "DeviceId": "7b4cbffe-da00-47f6-859f-ea8eebab2400", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_785607132", + "DeviceId": "8f1e130b-8829-4740-a856-ceb7f33f065f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136841392", + "DeviceId": "5f6c97a6-c437-4198-99d3-fe502a22a1ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_303505841", + "DeviceId": "193da8f9-b56d-4c63-b3a3-a6dc3e8a9981", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "488cb53f-2bcd-45fa-aab6-b9ce3434e0bc", + "TenantName": "Tenant-488cb53f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788387403", + "DeviceId": "2287c5be-26b4-4b9a-b784-b982426337f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616901251", + "DeviceId": "7173df5b-b312-44a7-ba5d-a931e8adc55f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_617371906", + "DeviceId": "10aa7707-b9c9-400b-a985-6e5a33eff04e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693613410", + "DeviceId": "e7853290-e8ff-4363-ba16-b14d85565168", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_280044323", + "DeviceId": "0524ed5f-b131-4405-b501-ad3e5a40f7a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_371999367", + "DeviceId": "05546e21-107a-487c-af90-46838764eec6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "69bdb37c-407e-400d-8489-877488612c2e", + "TenantName": "Tenant-69bdb37c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783483501", + "DeviceId": "530aa37f-0cbd-49bc-b875-a98ea1c39e2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976801444", + "DeviceId": "95d17faf-ec14-466e-ad18-dd40df4908fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_229499945", + "DeviceId": "f50d7ccb-5638-4002-a6d6-0dc548507493", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584032189", + "DeviceId": "a53f3a9e-d18b-4293-8234-7b55d2d8df17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511200749", + "DeviceId": "dd891037-bb54-4d64-aa67-fa6c62b9daa9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_718876993", + "DeviceId": "e75b1860-4c45-433c-9c9c-0eadf2a7c13b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8bfaeeac-dfec-4130-99c6-f7a0b0e1ce93", + "TenantName": "Tenant-8bfaeeac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_470259376", + "DeviceId": "b26c5448-f1fe-4e37-8b32-794ab1428e1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169662493", + "DeviceId": "1d58ecb0-3288-465c-ab25-936442e9d686", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263861624", + "DeviceId": "be454f63-4baf-408d-bd55-04f1f6ec1024", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_536603062", + "DeviceId": "94c7e43d-21e5-4224-b21e-cbb23f25de5e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273584162", + "DeviceId": "70ff1bc2-eed9-4f99-8614-b35b3bf95eb6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_168309610", + "DeviceId": "e25d050d-e506-4278-8338-59f56c829f85", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a2ef534e-344c-4fd3-b85b-4b8d0c47657c", + "TenantName": "Tenant-a2ef534e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477494615", + "DeviceId": "e6a977d6-9d51-4ad1-92ee-c36ba0e0eb42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626504699", + "DeviceId": "b506900e-df2c-49d4-be28-9deaa37440be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_756715851", + "DeviceId": "f4387ad5-6d35-4fed-823e-4fdaa3f0b003", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_920153407", + "DeviceId": "9b54fa38-0be0-4c21-98fd-45b117f4a436", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157206501", + "DeviceId": "47394802-337f-4f98-8085-2ef98d3c23c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_127246453", + "DeviceId": "910df891-70e9-4e61-9409-64577f291a98", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "776cd356-720b-4660-a3e6-9725e930c0d9", + "TenantName": "Tenant-776cd356" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790790093", + "DeviceId": "b9957cc7-9999-4b3b-9362-1dc1b5c190af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568482766", + "DeviceId": "a4a9e1e5-5beb-4b01-bb88-8769e88fde5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164281654", + "DeviceId": "63160ba5-0f88-4168-a3d0-a94452eb6164", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_327493649", + "DeviceId": "1f490f38-1386-4daa-8b89-a1b73a4e2156", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_191939908", + "DeviceId": "111456e4-ec18-47bf-bb78-30e73d19f025", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_473528688", + "DeviceId": "66926756-7637-44af-916b-8bdd83bf86eb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8c562590-fcfb-4f59-87a5-0a4e322378ef", + "TenantName": "Tenant-8c562590" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812351313", + "DeviceId": "d33fcde1-ce82-4897-876f-2cda8d7f7d99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360893252", + "DeviceId": "7beccf02-c79f-462b-8a02-56af2ab13082", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554808024", + "DeviceId": "245a7ed3-2116-4f68-ba57-ef08ee21b6fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284212247", + "DeviceId": "0558699b-5f56-499f-88e5-ba82aefc37be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_751619974", + "DeviceId": "6747af2c-4d12-44f2-81a1-989563a7f3d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_743912381", + "DeviceId": "57a7d472-38ed-44e1-a0ba-b8a83615e05e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e02eac8d-566f-41fd-b150-fbafe4be1f88", + "TenantName": "Tenant-e02eac8d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_932301112", + "DeviceId": "e6146904-586f-494b-a401-0d1ec47b029b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860338501", + "DeviceId": "bacb2bd3-0883-4c29-80ba-d67670e1fca6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836204399", + "DeviceId": "bdc09881-5ed6-4ad1-9c3f-f72ab83358a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810681584", + "DeviceId": "2b29046d-a67b-48e3-8b9d-3f41b092dfb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866712237", + "DeviceId": "770ecf64-3ee5-4e97-9a90-a03fc6650ac0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_965414396", + "DeviceId": "289f8bef-25c6-4432-9c08-54a06635a4a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fffbdffc-991f-46d4-8a9f-c719faeef140", + "TenantName": "Tenant-fffbdffc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185060913", + "DeviceId": "dae5e391-ce87-4d42-8d9a-31ba0b569b15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_143825152", + "DeviceId": "999d0253-6fdf-4540-8efd-a9adfee6735c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584877552", + "DeviceId": "f96a902a-cd73-4dc6-9efd-f58a6b8395cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_464826355", + "DeviceId": "76cf2580-44ee-40eb-9a0c-01e585e09a04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_924410813", + "DeviceId": "d3b7a7af-e21c-4cdf-93b5-14628b9f44a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_444978245", + "DeviceId": "873ba87a-3354-4c2b-adb0-e870cfac3247", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "966833ad-12ce-4439-94c5-3e02c3de3ad1", + "TenantName": "Tenant-966833ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_811638297", + "DeviceId": "30bf5fcc-8ea0-4dcb-adf4-2d09f4c9f2c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148091116", + "DeviceId": "65bceec2-84c9-4d4b-b993-a65736f95fb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_365678654", + "DeviceId": "1cdb3834-7dc3-4d89-b644-429f5460ac36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910952370", + "DeviceId": "664e7b73-566f-43c9-b452-d61841a1fe64", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376757318", + "DeviceId": "4210d177-4278-4a82-be97-598c7163a4f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_906749835", + "DeviceId": "ba139b33-00c5-40a5-ac75-903d0305b407", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1df091c4-d009-429b-83fd-e754449f3439", + "TenantName": "Tenant-1df091c4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484393316", + "DeviceId": "efaa2eca-3ac9-4aa7-a5b8-77f67257c4f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888374970", + "DeviceId": "1d676ad1-914f-4994-8346-db221d10a7cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945023487", + "DeviceId": "a0efa074-19a1-4678-a943-d58f947db5dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854981690", + "DeviceId": "5ffc0a44-b5e1-4b38-b75f-a5e6f9fc67b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670953209", + "DeviceId": "d1bec0db-a1f6-40a3-b0a5-e723fd9d9f2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_642925082", + "DeviceId": "5c1260ac-3cf9-40b8-9688-25fd94a082a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87c8153c-996f-44e9-8f4a-3ca9fe85256d", + "TenantName": "Tenant-87c8153c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511878935", + "DeviceId": "30c81680-d18f-4789-9b08-d7cff488cf33", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107002092", + "DeviceId": "dd2265af-332d-4a54-b7c0-663ace660764", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_715587682", + "DeviceId": "43d31364-4236-453d-a488-1b0b06865165", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_449454379", + "DeviceId": "a55ad14d-744f-4a12-9725-d1f342ee2f98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994833300", + "DeviceId": "9cab0e4c-0550-42a1-9f17-7a021d4a9579", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_164337109", + "DeviceId": "1c4e1b0d-659f-485f-8217-7eb9e6316002", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7eea09ae-a8d7-4572-979b-6f9a0440077c", + "TenantName": "Tenant-7eea09ae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148076198", + "DeviceId": "d99d0bc0-5cea-4e92-b0f8-97506a359ed9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742332438", + "DeviceId": "70b1aa27-d0bf-4d2e-8494-64014983def9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651097191", + "DeviceId": "aaac9bb0-e821-4f80-804e-a49ec81da28d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429966262", + "DeviceId": "47d8a652-8eec-4297-8c4f-98736f71e705", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735899307", + "DeviceId": "1a19b2a7-d4f1-405d-af52-21513be21218", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_563117207", + "DeviceId": "21acd1a4-386e-4b7c-a04a-c5439dff9dfb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "71ac173a-ae95-4e3e-8a00-867ca3516e77", + "TenantName": "Tenant-71ac173a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747841866", + "DeviceId": "596d0032-c4d5-4690-a9a3-370cc4047e04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_750740232", + "DeviceId": "67f15bb9-d325-482b-ba0a-da4e05d61f65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810095621", + "DeviceId": "2cdf7f7d-54fc-46c5-853d-e51b05d659ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_983793438", + "DeviceId": "2ba1783d-e578-4be4-9148-8ca6b7eaf7a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795567391", + "DeviceId": "4ab66cdd-e7e9-4ccc-a349-5a4345798a4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_324015026", + "DeviceId": "3ff142f8-90f6-4cce-8a6a-8ccb5eb392ec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9889c612-1e33-42e8-b8b4-a9fcf6392eee", + "TenantName": "Tenant-9889c612" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844324487", + "DeviceId": "24455b2f-feb3-4484-9051-98ff341fce8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538770545", + "DeviceId": "093a79af-401d-436e-91f6-4c9dd95ad4a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525381674", + "DeviceId": "35ae88cf-b16f-4a02-855d-f2b720797909", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310994728", + "DeviceId": "97b15028-d8ad-4eeb-9f53-024f86941174", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193454643", + "DeviceId": "0b881d75-2d4c-4e75-9541-d8ee89a42f1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_383350887", + "DeviceId": "c83e975f-e932-40f7-a4e4-b4af51cae6ec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7cd165f2-139c-4e7b-8699-d6020f203d99", + "TenantName": "Tenant-7cd165f2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562421678", + "DeviceId": "fc3a1032-b3dc-48a6-81b5-50e164bda353", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640818686", + "DeviceId": "5b807fc4-6e23-4e04-b0b9-efaa4610874a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_813087534", + "DeviceId": "ea9b6965-7f8c-456e-9a5e-7265e37a1cdb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182926596", + "DeviceId": "edfb485e-9dd0-4587-b1e8-4d5b8d74c0ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114426068", + "DeviceId": "1ee46bf2-ec01-428c-bdba-9bf8e56e770a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_810672873", + "DeviceId": "83f5dde6-8cf5-4582-a7eb-f5d7f5a2a466", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ff2f923-8150-4997-98cd-d118d6717692", + "TenantName": "Tenant-0ff2f923" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798762888", + "DeviceId": "94de7ef8-709b-41fe-a738-89bfb3541432", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_440062922", + "DeviceId": "fb2a92b0-1399-4376-b89f-f7d9344552c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283879645", + "DeviceId": "12cf533a-a088-492a-9f87-fcd3fd25db5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_919180228", + "DeviceId": "3babbfa8-124e-46f0-9315-df991e8e3c1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225526512", + "DeviceId": "ba0108bd-48a3-4ce6-8fd7-e941ce1bc1a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_669755585", + "DeviceId": "14106918-2084-4c5e-a521-6c0d1a98a7b5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf6948e1-d305-4927-b76a-82b166de1624", + "TenantName": "Tenant-cf6948e1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376139848", + "DeviceId": "790326b6-028c-49ac-9873-0a4f43cc3ae6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670474953", + "DeviceId": "7a8091dd-5f87-4329-8133-6f85fc857200", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_366153625", + "DeviceId": "f612428b-84f7-4324-848b-061a7d5b0799", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_160644547", + "DeviceId": "73bb74f1-ee29-4e69-a148-0530b31e75c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_705668663", + "DeviceId": "7c7178a5-612d-43b3-b1fe-924e42ed44f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_211419967", + "DeviceId": "c916dd7c-1191-44e6-a1cf-260dc1b6b49e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "761b2182-bbb0-43db-aa63-cf6c1f6348c6", + "TenantName": "Tenant-761b2182" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821999720", + "DeviceId": "efe12a75-bc5d-4071-8fa0-3ebc230367ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229790713", + "DeviceId": "544854d5-2ec5-4933-9143-6271c88e30e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_245216901", + "DeviceId": "ca91f153-f668-4984-9d84-9af8365f6285", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761403445", + "DeviceId": "2d565375-67f0-46fa-bd70-a4db0a2197eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242537754", + "DeviceId": "8222c46d-7ebb-4b46-aae5-321450571c8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_856620738", + "DeviceId": "5f1d3163-7eb2-4742-b051-0910d17e32bf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a7ce8b6-cd8d-46c8-a254-95b151537d3c", + "TenantName": "Tenant-1a7ce8b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666116648", + "DeviceId": "2125b448-2ee7-46c3-a53d-29cb08466dc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919886463", + "DeviceId": "4dac8fb9-bc44-4a82-b5f4-d0b87257f5c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227185308", + "DeviceId": "b1db77ba-05ed-4e0c-9a13-f43100713f53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369756007", + "DeviceId": "38502e20-7b2b-453f-a20b-470d9ba96e0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916195154", + "DeviceId": "5cc35a8c-b2bc-4666-8b00-3a2eeb2ce20e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_848034926", + "DeviceId": "584b18af-6d85-4621-8fbb-6476a1e9402f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f20f0139-4278-4bba-833d-613e6d158c66", + "TenantName": "Tenant-f20f0139" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592143556", + "DeviceId": "4971083c-156b-4f2e-b68b-fbe9f49ea543", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930529781", + "DeviceId": "ad0604bb-6ce8-4675-b34d-1eca892abaf7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853467016", + "DeviceId": "617393e2-4778-41db-896f-2351c3657ac8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691972788", + "DeviceId": "3ffafb3e-fdb6-4ee2-860f-ac6032a071ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539714183", + "DeviceId": "4e7e357c-a06c-45aa-8941-10051dcc09dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_409456748", + "DeviceId": "b2d6b20c-5733-4530-bab1-0dd07493e9d6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "423814aa-cc0c-4aa8-8717-29e4a43a7adb", + "TenantName": "Tenant-423814aa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682467106", + "DeviceId": "dd773f44-a790-4694-9410-c8de8d78a498", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399464807", + "DeviceId": "cc70a409-91e5-4a98-98a4-cb4f4371906d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_464314933", + "DeviceId": "ea1489f5-2480-4799-a6b0-995753ca2227", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700551539", + "DeviceId": "35eacf15-75e6-4db7-bd90-a702ad4feb06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677999522", + "DeviceId": "556fe9f8-6fef-47d4-a157-82dcf3004ae2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_731967379", + "DeviceId": "7711602c-43d9-47aa-8fd8-c9f1533599f0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e3ba0ae-8077-4cba-927c-b445c8c92bc6", + "TenantName": "Tenant-5e3ba0ae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732033797", + "DeviceId": "5fee6319-d853-494d-ab95-28d5443f497c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246196165", + "DeviceId": "f7cc7da6-e2ca-441b-9a85-4cba5664f9c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278709638", + "DeviceId": "f18c0ead-fb07-4e10-80f5-bac9ca36d6d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469629949", + "DeviceId": "136683bb-77ac-4b81-b801-9887ae371759", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_236612385", + "DeviceId": "c2dbdf2f-01ac-4386-9e33-b1aeb5874164", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_816666795", + "DeviceId": "07e6ff3d-db7a-4fe9-ad47-43df0950f5ec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d1b93b8-50fb-495d-8438-cdad9553a8f8", + "TenantName": "Tenant-8d1b93b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681529259", + "DeviceId": "5338af67-953b-4d4f-9f74-5a982e74840c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431655267", + "DeviceId": "e08538c6-f2fc-4258-8033-d559499d40a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_893418612", + "DeviceId": "54005a91-b509-4856-a24c-abc15f1bb7f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969389171", + "DeviceId": "c39de45b-4b81-4f64-97d9-eb1b8276d948", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_955945240", + "DeviceId": "876f9807-de88-4165-8e4a-e06cec8c198c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_959428692", + "DeviceId": "6cbf0d68-2ef6-4559-b15b-0006c6bf37b6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6845af66-adbf-43a3-bbfb-f3d1bcf625f0", + "TenantName": "Tenant-6845af66" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803313448", + "DeviceId": "add6770b-bc07-4d13-8509-7f8c3af8c882", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416349157", + "DeviceId": "c2b41500-04b1-47f3-9721-c3d5d48f9f1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793965016", + "DeviceId": "0c94b166-3933-47b8-8148-9f360d168e66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491496276", + "DeviceId": "a6771359-207d-48ab-a611-470ab25370c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794344868", + "DeviceId": "298a0e6c-c3c4-4869-8fbc-b4365e0f842c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_444355867", + "DeviceId": "c9545721-1648-4370-8ab8-5bfea065b7b1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "208509d7-f201-47cb-a1e9-fa3681fa49d3", + "TenantName": "Tenant-208509d7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833501939", + "DeviceId": "29713496-2e32-4152-a845-10ed828393a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488490618", + "DeviceId": "e0b01f16-43d5-4661-a43a-fdc9f059500c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727921966", + "DeviceId": "c93caf30-2ffd-41c6-8575-6c17f001ad5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575025163", + "DeviceId": "4546ae1e-70fa-4e7a-ab0f-22286f0aa6d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564731143", + "DeviceId": "414fdfa0-e250-40c2-b68b-290cb5ea8473", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_662750969", + "DeviceId": "2eb79449-bb89-4eaf-9503-800beef0a981", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "65f83e88-3905-45ad-8b5c-4c4372122a53", + "TenantName": "Tenant-65f83e88" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_817393982", + "DeviceId": "9ce7efa1-c8f9-4e66-950d-86e85056eb99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_823660820", + "DeviceId": "c14719b8-6ee1-4e88-a6db-9b683ec94e22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297756338", + "DeviceId": "85d2fff5-9471-4bc6-99c3-c512f293bd17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_791247824", + "DeviceId": "1dcb16a3-fe1b-4629-a315-d716455e21a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418152926", + "DeviceId": "da117e69-1bc5-4f9b-b20d-9ce09a6749d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_944258555", + "DeviceId": "fc8a5ca5-4bc4-4d5b-a5a7-5c8700068afe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6722e3f4-2500-4b05-9b3d-166f3b167b89", + "TenantName": "Tenant-6722e3f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_898415948", + "DeviceId": "5fd06730-2a86-4979-95ef-3ce59b6357f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712877794", + "DeviceId": "80c4b56e-4b15-4a8e-92d9-0c62b9b297dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_459296259", + "DeviceId": "b922cc63-8f0c-47aa-8058-3939d55b1376", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_317098735", + "DeviceId": "f999a0b1-6bb9-40c9-a5e8-f964e395400a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_262599163", + "DeviceId": "2f04ba48-b9a7-468c-89b4-55e5696d2715", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_725417941", + "DeviceId": "20a7173b-b0c2-407e-bd82-534c623845e1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f7d79754-ff40-4c7e-9b95-acade11fba72", + "TenantName": "Tenant-f7d79754" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_308260658", + "DeviceId": "6cc95e0c-043e-41fd-8362-b02223c561dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_446615778", + "DeviceId": "ef56f0f9-8ee7-4240-9b11-1db5b2c9d6ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997954064", + "DeviceId": "caba2369-3ef9-4609-83fc-9b6acfb45f8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861938896", + "DeviceId": "e8700e3b-4953-4da7-8638-a116cd2dcf40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_840087183", + "DeviceId": "cc7aa27d-9170-430a-948f-e09ea54df975", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_193812445", + "DeviceId": "f058c3de-7ecd-4a73-bb1e-d2c6bba7e349", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bbe29a7d-be27-4e02-84f2-fa3f3eb8721d", + "TenantName": "Tenant-bbe29a7d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260684767", + "DeviceId": "11df6ca0-6d4b-404b-9b68-6e55e83424e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213690957", + "DeviceId": "33139dda-3a3e-4da0-97fb-b5ff5c3adaf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_473419435", + "DeviceId": "6cd35a7c-5775-4694-86c6-1c8ca198387d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_209632974", + "DeviceId": "58dc0519-e541-42ee-a5d6-74e1ead8a4e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561841351", + "DeviceId": "e948be99-22da-43fd-a7c5-fa426bbc3684", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_213504403", + "DeviceId": "7c1b2109-dd68-4a02-8298-74752d87fed4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bc39abe5-112f-43dd-8d79-2e1e5d30727e", + "TenantName": "Tenant-bc39abe5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714526649", + "DeviceId": "d93f7b14-e95f-445d-9d82-1ada2bfb39b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657283907", + "DeviceId": "807b8065-d611-45e0-bfbc-895c68c9fa6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911455778", + "DeviceId": "d33c5c2a-b8f2-4234-be4b-f55f917214de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_874013040", + "DeviceId": "28aedf79-c012-44f1-a3bb-22d7d0ac356d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875618357", + "DeviceId": "caa5d18d-0f5b-40cf-9d3c-cf6037314fab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_692474460", + "DeviceId": "64a3e727-7cc2-4d8d-adab-fcf4ad1755fe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ff366341-1568-4413-949d-43aa065c0499", + "TenantName": "Tenant-ff366341" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381654838", + "DeviceId": "61e8f6d6-0718-4203-b94b-58aeda8f9148", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295962645", + "DeviceId": "3f8b3c21-fdb5-47a8-a093-c20aa89a4fee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_412005778", + "DeviceId": "ef5acec4-38a0-447c-8581-77c07e03e697", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576190586", + "DeviceId": "13d1fd1a-0a82-49b4-8196-34158d16f386", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_403058926", + "DeviceId": "06eff1bf-74f3-4228-b409-a8e8418a12a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_461920975", + "DeviceId": "119dc0e1-92b2-4c90-8eca-0972016afe50", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4144fcf6-f947-48c6-a334-c340fbb829dc", + "TenantName": "Tenant-4144fcf6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515222334", + "DeviceId": "d736e266-0f54-494f-8b59-162acc24f108", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704416032", + "DeviceId": "13f07ca9-84f4-46c1-95b5-138a9ed6a017", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636064724", + "DeviceId": "4b954060-d5f2-4e2c-b8a4-0eb74c8a945e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_789039245", + "DeviceId": "84164c47-aeb3-4a75-9f7b-27bda63dc3bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_905457968", + "DeviceId": "b6ecf84d-4cc7-4526-b3a4-fe3312766767", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_672285900", + "DeviceId": "5d679d0f-ded7-41f1-add2-36d07ab0e5ae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "116ae80f-9de6-4108-a5cd-0a52071f8c35", + "TenantName": "Tenant-116ae80f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949530183", + "DeviceId": "3cc17e31-875e-46aa-9227-ee9a53c6611c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303804113", + "DeviceId": "77a37784-a9f4-4746-932f-f25a4883d6f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647674788", + "DeviceId": "53976975-c682-4d1c-bff2-7be28030c532", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_968805026", + "DeviceId": "cd53bb37-038a-40c2-84bc-095ef3421b6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281345833", + "DeviceId": "1bc29bb7-cf91-4b41-9114-c923d23188e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_627518847", + "DeviceId": "f83048aa-e727-43cb-a12e-cc60d37bcf51", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cab9c5bb-9f50-46ff-ba8b-6b94d20ae030", + "TenantName": "Tenant-cab9c5bb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402719180", + "DeviceId": "26fd1d91-3bd0-4bf6-9ad0-ce072e15976b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422586101", + "DeviceId": "3b22cfbf-1b16-46fe-a3d1-b420feb03094", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505907116", + "DeviceId": "b6a2fc5b-b977-41e5-838b-b04c12b43738", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309308867", + "DeviceId": "b945048b-9d08-40ae-971c-f5e160ce1155", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930087029", + "DeviceId": "54e0ec79-7842-41d4-b95f-7eb339f18d53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_417177645", + "DeviceId": "5970ddd9-0c4e-41c2-a455-c8dc1791dff2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4844ed06-709c-4993-bcd9-3a4191b752df", + "TenantName": "Tenant-4844ed06" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_174150800", + "DeviceId": "d3453abc-a736-43da-b2aa-e90302715baa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699008551", + "DeviceId": "378be6f8-732d-4355-a128-30c340790b25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_909882488", + "DeviceId": "88df2a9b-fcee-4cb4-9736-af35a4e3f8ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_409168991", + "DeviceId": "3cab0078-c5b2-4c0a-96a9-2b2717d7aade", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996638821", + "DeviceId": "6bc37b86-7bd1-4af9-b950-9452397c32f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_460534280", + "DeviceId": "977c957b-57df-46c9-86c1-f139f1c9bcf9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ff90720f-c714-49ed-ace6-4db1fd705c4d", + "TenantName": "Tenant-ff90720f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346817549", + "DeviceId": "e0f24055-bf08-48f1-9cdb-743efe22f17b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847830984", + "DeviceId": "f919fe4b-ef27-45e3-b476-30d507976632", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_738448220", + "DeviceId": "51e4d189-d08a-4057-ad1e-4402252ccd25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249516979", + "DeviceId": "0c6ef2e7-907e-4da2-82d9-364ae76a0467", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879683863", + "DeviceId": "0120b337-b76e-4771-bec5-c6acbf45e2be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_637785301", + "DeviceId": "8100d20e-b4a8-4f53-a42d-c268e6253f3e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fa068f7a-0591-4509-9207-e1e5ec859811", + "TenantName": "Tenant-fa068f7a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163157973", + "DeviceId": "51ad01f3-3493-4fd4-b042-84e80345e8b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_840588069", + "DeviceId": "f758a5a9-fcf2-4074-bc72-d31765e9b23f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314695495", + "DeviceId": "75888ba7-44d2-4a28-a25f-0531393f98e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463692132", + "DeviceId": "ebd363f1-5939-46fb-8c29-6a1d667a00ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760905531", + "DeviceId": "3d91d5eb-a14b-4ed4-8981-c2b19b09efa2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527222814", + "DeviceId": "dbe4d5fc-51f7-470c-8349-1530d63c540e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dfa1dd56-607b-4628-9e72-307366f11fd9", + "TenantName": "Tenant-dfa1dd56" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372324336", + "DeviceId": "c26d0818-0470-417b-8e24-f5e28144a0d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_299160560", + "DeviceId": "6ccd46d0-25db-4ff6-92c8-290b7fa89444", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290959598", + "DeviceId": "20a872dd-91a3-4a9b-b88d-c5fcc8194298", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576352468", + "DeviceId": "435bb298-3177-4744-9b32-203815ae228c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408525291", + "DeviceId": "0ed72895-dc0c-42aa-a435-b180680fcce3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_138357881", + "DeviceId": "0f3df589-6e50-4d58-9291-cf057ed3b3f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "50679e06-2ec0-4c79-9717-4a02b6ca12c9", + "TenantName": "Tenant-50679e06" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_770422546", + "DeviceId": "21a0c86f-a59f-4527-9735-140b7b3d1989", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358807097", + "DeviceId": "f68989b2-b31f-4c26-83e2-018def047bb6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765617482", + "DeviceId": "3fea101a-f135-4c67-a68d-ef352404ef2a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278267162", + "DeviceId": "d0f2f4c8-bc27-43f2-a76b-00bee233786f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527733257", + "DeviceId": "7a5f3247-50d2-4a0e-b11b-c8928c9e22b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_776134800", + "DeviceId": "2227f654-ac8d-4af1-adcf-c871f8a0d2ad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b457f596-09cb-46ad-9bbe-3502b1b3706f", + "TenantName": "Tenant-b457f596" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485025085", + "DeviceId": "56e5bbf7-22c0-4174-b11a-49a1b58f834d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_160945036", + "DeviceId": "f9848acc-b7fc-431d-9610-a062daac0878", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241838096", + "DeviceId": "c2206425-961b-4435-b7a6-29c69ea6b6af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_355047678", + "DeviceId": "54149e78-6935-43b9-92b4-6d9f4e377a34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866196262", + "DeviceId": "99cf24ef-ca51-4022-9886-7a2ed9e4882a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_946538422", + "DeviceId": "b46d1c7a-b4d0-4b22-b207-206fdb9dbede", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e6bc69de-d05a-410f-9764-909e9a359007", + "TenantName": "Tenant-e6bc69de" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592217240", + "DeviceId": "5f7c281c-a5d2-4164-9c5d-e80b2b6d5231", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352674107", + "DeviceId": "aea213da-fd72-4da9-888b-2cd144b59ce2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711297797", + "DeviceId": "9cc0b994-cd7c-4325-8569-c4d387d6c7c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636965823", + "DeviceId": "bb489629-ca5a-47d9-b0cb-d9947f4ede9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926788842", + "DeviceId": "be570674-fc93-4a13-899d-3095f7de12f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_648480066", + "DeviceId": "b4442862-986d-4854-b74b-8a465184287e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e8f607f9-1960-402c-8c16-34d36ceb7ea9", + "TenantName": "Tenant-e8f607f9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977225647", + "DeviceId": "59bb0a12-5711-4df6-a485-f95ad35bf339", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413250974", + "DeviceId": "df1d83af-a474-4346-a4f8-a05efb438825", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386031472", + "DeviceId": "3194bc4b-c848-45c3-96c7-5c6732161937", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763334397", + "DeviceId": "1c50b909-73f1-4401-8ef9-5be3d3085b40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527784141", + "DeviceId": "05adc96c-a8de-426b-8814-c0fa5cd2a47a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_655159991", + "DeviceId": "6836cc84-e46d-4dbb-acad-9cc5a5c620e1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3addc222-2f2c-488c-9a04-920d66ff3c47", + "TenantName": "Tenant-3addc222" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957677140", + "DeviceId": "4ff788de-56fa-4969-870e-dc3b6931b88b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606319440", + "DeviceId": "e1ad7636-9397-46e7-be70-06f7f0ee66ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532147154", + "DeviceId": "9cc87319-9753-4763-bbb7-79b0252920d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_340936958", + "DeviceId": "5cdaa5e6-c083-4148-9a3d-158bf417db26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_598179504", + "DeviceId": "1c03b703-88a2-4b29-8c31-78a3782a8bd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_815363251", + "DeviceId": "4e8b2818-58bf-4144-b999-65fc4484ac72", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "840dc5a5-f607-4a7e-aa79-bdd46ad827e4", + "TenantName": "Tenant-840dc5a5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423100396", + "DeviceId": "b7c259a2-630a-4364-95ab-3dbcb7acb33e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292985780", + "DeviceId": "0e63ae8f-bcf7-4e3b-930f-77afd05c2163", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_437737990", + "DeviceId": "9005c3e4-f07a-4273-8422-2f68295aad15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_773925546", + "DeviceId": "a367db90-667f-4e5a-8c05-0ce06f861ae4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_214332436", + "DeviceId": "e7af8d51-163a-452d-bb28-61bb741558d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_796834216", + "DeviceId": "ce73a7c6-e088-478e-866c-47c9f72d9079", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c67e7fbf-1615-4736-8051-d606eb467f8b", + "TenantName": "Tenant-c67e7fbf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793571194", + "DeviceId": "20b52a24-98cf-45c0-9fe2-5053f8829ea5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567558298", + "DeviceId": "b22dbf74-8637-4138-9ede-12954c8e0a05", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727553605", + "DeviceId": "c035e993-79c4-4394-bd48-5dde0a0f0ccb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_803452688", + "DeviceId": "90710960-607d-4590-a24b-f2d22b513f10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947469829", + "DeviceId": "da01f9c8-f552-4354-8268-47d65d402d30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_487902909", + "DeviceId": "fb76f41a-308a-487b-93f0-e2e50862d365", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "82207587-4bff-40de-a161-7df0b5db1981", + "TenantName": "Tenant-82207587" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260524.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260524.json new file mode 100644 index 0000000..6654850 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-1906260524.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182247554", + "DeviceId": "d0027d9e-ec42-492e-b883-26e86ffeedb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732060516", + "DeviceId": "6bd56da5-b067-4800-81f0-23e824bb6726", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812336550", + "DeviceId": "d1776a45-5977-4ee5-9c37-4ae1a8379ee4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896885108", + "DeviceId": "45d98aae-7492-4a3d-b37c-26ed514c2290", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547507810", + "DeviceId": "3e957fb3-f049-4f83-9b87-4777f1138f2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_377498148", + "DeviceId": "389f964d-3a08-4a0a-862f-9e93d06ac50c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a85e249-96e9-4a0b-b9c3-ffcf5c6304a2", + "TenantName": "Tenant-1a85e249" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401844235", + "DeviceId": "37ca303f-6279-4e9b-b83a-3fc16776f297", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382669646", + "DeviceId": "f23c529a-f3a1-48d1-a428-b10b30689359", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_617081588", + "DeviceId": "1eac9cfc-f614-4bf8-a8f0-2a0732056614", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941217115", + "DeviceId": "08b891f5-a913-40a3-9a46-637c4945d331", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127765879", + "DeviceId": "4c803655-362c-4c71-a653-c577e3bc355f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_686128390", + "DeviceId": "844a331a-ee30-44f6-8cf6-36c240b117f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d7db4244-f2e5-4de0-b26f-d5fc1529f118", + "TenantName": "Tenant-d7db4244" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_653379548", + "DeviceId": "163a3765-3b96-4636-ac8a-25ff244d423d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560331801", + "DeviceId": "e01a95cf-3418-47dc-acbe-9c8cb9bca309", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_441222989", + "DeviceId": "66c0bc0d-8d18-471b-a0a1-ca6153f636c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434603041", + "DeviceId": "fb1ff6b3-7410-4b7d-8d96-003a26a1374f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227084675", + "DeviceId": "6347ac06-2f4b-43cf-8cb5-7df1ef01591b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727577043", + "DeviceId": "681b9c0c-75a3-484d-a9ea-6faa1c60c045", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "13a2c548-4c3e-4f51-9e25-0466b0a54b9a", + "TenantName": "Tenant-13a2c548" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466210701", + "DeviceId": "f2475a45-2143-4397-8003-ed24f3db678b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_322794670", + "DeviceId": "f355a7d2-5286-43ce-ac59-96b15e221c47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416472239", + "DeviceId": "bff7674c-6e80-4a5b-91dd-8d460628c142", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_623929190", + "DeviceId": "5279f91b-4bab-4389-b4a5-5577071d277f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737699189", + "DeviceId": "8671daf1-7346-447c-9ce6-685f49069d78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_922916204", + "DeviceId": "67fd44bb-544b-4214-a788-5dc802b83f8d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "727e3f1d-42d1-4bf5-9c76-8b0765dcc2c8", + "TenantName": "Tenant-727e3f1d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_111208444", + "DeviceId": "57a446a5-7dc4-4cb7-b86f-152670fc0dc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126457242", + "DeviceId": "10bcdc8a-c3d9-4e79-bff0-71ffa227eaf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397650488", + "DeviceId": "1a465d9f-5127-42a2-b4a3-840d289037fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425170122", + "DeviceId": "f45555d5-e50c-45e4-bc89-bcb41645d8b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861110323", + "DeviceId": "b8d162e9-4d57-4270-978f-6526d3e3906a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_173345899", + "DeviceId": "5b2d713e-fe3e-408e-9702-c25cbca0c09b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b543a8b5-9af1-432d-87bb-907325e5ba43", + "TenantName": "Tenant-b543a8b5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_965960161", + "DeviceId": "034ab963-4a84-4aeb-8700-75f5d13775de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498412940", + "DeviceId": "814b7a77-c957-4eca-802c-e0317ec10388", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201103763", + "DeviceId": "7c4e4732-db32-4512-be8d-b7b5da1c75b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204512935", + "DeviceId": "6e252680-b441-4a46-849f-b123ca5aebf4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210864835", + "DeviceId": "d88acf17-dba4-4fc3-9db6-bbf99dee76f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_758778011", + "DeviceId": "6ff51882-e81f-4ff6-9878-fa084b1d2114", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1135b805-aa35-4797-99e1-702318021af6", + "TenantName": "Tenant-1135b805" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682845289", + "DeviceId": "308e54ee-207c-48f1-b284-66fc785e23e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692436126", + "DeviceId": "582d24ca-9017-48c3-889e-482c03cf67d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256265104", + "DeviceId": "7297c36c-4b2a-420b-9a5f-542ed009ab09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_762668740", + "DeviceId": "723597d8-9199-4363-b884-039d83d3cc20", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395955989", + "DeviceId": "101e1b2f-92d5-47fe-9f0e-e31346136d2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_645221963", + "DeviceId": "38dbfbb6-fbd4-49ca-a5b1-ff753b49e9ab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ee4c2346-86d5-4a43-a59d-21c2de030826", + "TenantName": "Tenant-ee4c2346" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_685178620", + "DeviceId": "c27041a3-5419-4934-aa11-17661e534e94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533332668", + "DeviceId": "08b756db-5ace-4cf3-b6b0-dd35c29d41f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727408113", + "DeviceId": "c878be70-32db-450c-8bc0-d56235e6a14c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_706650329", + "DeviceId": "5e46bad4-9305-4be5-bc5c-d34d15242011", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494331599", + "DeviceId": "c99ab649-d5d9-4be9-b9c2-41c334d16c1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_586750534", + "DeviceId": "329e0850-d782-4e8a-8603-df2619163081", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8458697a-6e03-458f-87e6-40adeeaef481", + "TenantName": "Tenant-8458697a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767517021", + "DeviceId": "3a885aca-1aca-4524-bc0b-028d96db485c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849812508", + "DeviceId": "17dfb431-e736-4191-86a6-1efe04d5576e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997894327", + "DeviceId": "11d899d0-6c57-4a51-87f7-1b56bcf058da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853734565", + "DeviceId": "7dd78413-eff6-4ff9-89ab-efe9d6a5640a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189117686", + "DeviceId": "5311687f-5205-43f8-ad64-234bd9a94d0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_515468665", + "DeviceId": "2e004b7e-56bb-4349-92b9-fc1bacc9da26", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7a5c5516-4665-4856-a663-aa202aff37d0", + "TenantName": "Tenant-7a5c5516" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977443181", + "DeviceId": "263ab93c-950c-4e3d-8ad4-d561685d36bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813621054", + "DeviceId": "b18a0bf3-cc34-4221-a547-36c354d414c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748742043", + "DeviceId": "a0634256-a49b-4086-a4ce-8893bd3750f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925798419", + "DeviceId": "d70cfe78-4afa-4852-beb1-050442c3c676", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_588589903", + "DeviceId": "01350687-aeef-48d0-bfd1-815c9a174f1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_556486763", + "DeviceId": "19a5c2ef-6695-449a-b807-e50ebc9b6ab8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "10e25b36-adcb-4f63-9a4e-d3d8620706bf", + "TenantName": "Tenant-10e25b36" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875240469", + "DeviceId": "d55b9284-fe93-48c6-8850-8975e9a315fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878565651", + "DeviceId": "7371374c-78eb-4368-ae35-43c8ffe9f931", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338868502", + "DeviceId": "1034566f-c0fe-4883-ab7c-0b7bfa1368af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695775200", + "DeviceId": "2271f600-70a9-42e0-b159-0f6faf015268", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_680469631", + "DeviceId": "128e4e28-a276-40f8-b2c4-98efcdbf8e92", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_284169378", + "DeviceId": "2ccdcfee-d011-4f2c-b21d-f72b1d9f90c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1832e9bb-ba43-4de1-9fb0-31d7efaba2fe", + "TenantName": "Tenant-1832e9bb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611975828", + "DeviceId": "b537615b-f487-4ec0-b2a5-3574ccc60142", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_707551850", + "DeviceId": "fb6a75aa-25b3-4b36-9aac-f207f33f3e40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392997166", + "DeviceId": "6bf3fde1-6e61-4c11-a817-2b1e4caad08b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599603437", + "DeviceId": "38806339-d7a9-410f-a121-04e31627e1c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670264019", + "DeviceId": "72383423-bc84-40d7-af52-299b2ac28b82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_695378527", + "DeviceId": "f9fb6250-12c3-434e-8297-69f5cb6dff1a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f84b2218-3c9b-42d8-aab9-3b77cb53d625", + "TenantName": "Tenant-f84b2218" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482235155", + "DeviceId": "77339326-ff2b-419a-a0ff-15657ac95386", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394337957", + "DeviceId": "846eb3c4-20fe-4d7a-9a8f-4699eea295ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511295095", + "DeviceId": "ef73c8bf-c0da-4d0c-bdd8-f764d6e0399b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_880422211", + "DeviceId": "f4d8ce93-dc5f-4d6d-bad2-a9771a1b95e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687549394", + "DeviceId": "75232db0-9946-425b-949f-e86e37f88682", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_122530207", + "DeviceId": "0043680a-7d47-45e4-afc3-45ca11de0868", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9f7a8790-1a36-4c37-91b0-7d91cb1c2b0b", + "TenantName": "Tenant-9f7a8790" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_198333590", + "DeviceId": "089b7b06-e899-4136-a8ac-54a3760d8252", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_960368374", + "DeviceId": "3ac1f776-0953-4aab-abeb-c7ccd754237e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_690892842", + "DeviceId": "983b07d5-db4f-4601-aa3e-cbe6ed427b22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953376427", + "DeviceId": "304e4f6f-6421-48b3-bdaa-a3e1727014fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471606868", + "DeviceId": "78119563-c96b-4b67-b53d-453509203d55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_679619335", + "DeviceId": "3644cdc1-eb32-4507-a70d-939b00fd4feb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bb90bbd2-2edb-4d75-9a60-f7e7674213fa", + "TenantName": "Tenant-bb90bbd2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984865663", + "DeviceId": "6c337b6b-3f9b-40c3-bfbb-a7a1e2f14fcf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844593457", + "DeviceId": "a1f898b3-71d7-457d-b8dc-2e74f69a0fca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993280367", + "DeviceId": "7ad79e7b-8a5d-4005-a5c1-954708cf518b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499393392", + "DeviceId": "1b7dba4f-7965-4dea-bc0d-de3115e9e717", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708109262", + "DeviceId": "42a50d10-f3f2-4b3c-b2ea-8fdf30bb88b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_367468717", + "DeviceId": "8271af76-30d6-4fbe-8d66-a860bb084ad0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d75ce66-00b0-4000-ba2a-afc6c9748c00", + "TenantName": "Tenant-8d75ce66" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_654520412", + "DeviceId": "b53f27ad-4061-465e-8e25-90cd1f2436a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467371518", + "DeviceId": "f92a88e6-9c42-4181-a684-5613dbc305ca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_391372595", + "DeviceId": "f25d8755-c406-4209-aba1-f704c82c37a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_449397130", + "DeviceId": "85064ced-6e61-4ddb-af8e-4aee27b86bc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232994156", + "DeviceId": "e9a8578a-da33-4f28-9d91-4a4defccfa7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_550687625", + "DeviceId": "f6183574-5cb1-4de0-afde-d5cad4f67fc3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "031c8c73-0f9b-41f5-b7a3-a1ce56697590", + "TenantName": "Tenant-031c8c73" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601554208", + "DeviceId": "a60ac9d6-f415-45b0-8b36-f9fdb2a9c706", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876301031", + "DeviceId": "8a908e5b-adfa-4e4d-aa23-38fe5bb22d21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_363532876", + "DeviceId": "53792665-09ac-4a87-9a46-659269cd1913", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720378551", + "DeviceId": "d4a5250d-fd7c-4561-8a0d-3f3b0fd6ae30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656500285", + "DeviceId": "f3ddc14e-ae72-4110-96d6-a49b4556e570", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_519474514", + "DeviceId": "a2bcd1e5-0b7a-4213-b75d-4b148f9a24e4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "977d9f33-93d5-422d-b755-b5a56501bd44", + "TenantName": "Tenant-977d9f33" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838429721", + "DeviceId": "15af4c97-0030-4b13-8701-0e7092487776", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301170480", + "DeviceId": "c2897e51-a04e-4040-bee0-e11f91f549cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_180883653", + "DeviceId": "8da92205-eb1b-41df-89bd-cd030400b9b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_823244214", + "DeviceId": "dd5ba2d6-4d77-487a-a3cf-f4d696dc392b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742077677", + "DeviceId": "6ef98b7d-7a93-423d-83cb-79cb6a3c256c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_627647589", + "DeviceId": "8844c1e6-7e8e-4a56-b3f2-3c5dfef1b5fe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00ff9a97-bc13-4d71-a340-5018de1d16e1", + "TenantName": "Tenant-00ff9a97" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_943543362", + "DeviceId": "9d1ecbef-bb97-47bd-9e75-f0d369700b19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721106460", + "DeviceId": "1fc2e12c-4f9f-4dd7-a35f-577c4ea8fe88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679119224", + "DeviceId": "fe2e5ff1-6edc-4d9c-855b-de49e0b8d4da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148552453", + "DeviceId": "272f8056-29c5-4ada-a948-7566257480f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_421537549", + "DeviceId": "638eb23f-effd-4722-878e-d2293f8f7c71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_157098795", + "DeviceId": "ef801e09-7aea-4a66-b12b-8c95f1cbb649", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dac67fd2-e5ed-48f3-995b-1a239ae99c68", + "TenantName": "Tenant-dac67fd2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574966805", + "DeviceId": "1055cdf5-b369-4806-b16f-3086c08a1647", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185824249", + "DeviceId": "3eda8db5-2e31-495a-834e-534c5646cfeb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138466795", + "DeviceId": "e36b5648-39ce-4945-8cf0-2b49d2f97a50", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109033011", + "DeviceId": "cb5e8d04-8200-4044-97b1-c89ff0d0315f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838785187", + "DeviceId": "5c330003-cbf2-4e2e-8850-fc553ec192e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_405310101", + "DeviceId": "db2caeda-30f3-4b52-97d9-3893b701d793", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f3c94510-e08c-44b4-af89-44fbaffc9075", + "TenantName": "Tenant-f3c94510" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547465240", + "DeviceId": "89f761dc-69bc-4d65-b15a-1cc70062fd46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827519268", + "DeviceId": "1f66a967-044a-46b8-85d7-404831b2ce71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582876928", + "DeviceId": "44f173cf-e0d5-4ff8-ad03-0f7bd6bd003a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637951093", + "DeviceId": "e25555d3-6aa8-46b5-96c1-76182cc96aa5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_377957074", + "DeviceId": "e415ee57-753e-41f9-9859-6bbb14e6d0a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_704982679", + "DeviceId": "18758ffa-4844-4b06-a714-8f05e3bf1d9a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "83efbc62-292a-4c2d-902f-42c2043d434b", + "TenantName": "Tenant-83efbc62" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900695238", + "DeviceId": "2f0cc278-0a36-41c0-8b83-af6ada703e66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666240500", + "DeviceId": "19f0c715-5805-4fbe-9a94-8fb2d0690b89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401345312", + "DeviceId": "bff640ea-4ecb-4c54-9283-440468b934c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170280973", + "DeviceId": "26aefc34-ec6b-4f64-9658-d1be87879f4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802927072", + "DeviceId": "20432a70-1aca-421d-a57a-9557b05fc2d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_281714556", + "DeviceId": "b504dbb4-d7a7-4214-ae67-9d79ec9f1d9a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3e465b1e-35fb-4ee7-ac07-3c4c19d29bd2", + "TenantName": "Tenant-3e465b1e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563474322", + "DeviceId": "c7290f47-2d88-4e48-bf33-246b2751879b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259226125", + "DeviceId": "56899fdc-fe19-4b11-86a1-3061a62747c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333283973", + "DeviceId": "8d5d09ae-a8ea-404a-8d31-8f5337c71ed9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_366590227", + "DeviceId": "7ee92bcf-f9b6-4174-a1c5-18b347908bbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499293314", + "DeviceId": "a8773870-2501-4512-a9c4-0de3cd0922ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_241826138", + "DeviceId": "0a8ff178-7f61-47ee-93cd-d78a520259b3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "650fec83-4613-40c2-a23b-069478bfc477", + "TenantName": "Tenant-650fec83" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850751328", + "DeviceId": "493213c1-428e-48da-908a-c8760123b1e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600844732", + "DeviceId": "46bcf696-d238-4c92-9189-65c2551327cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164074345", + "DeviceId": "0bdc0e2b-9bf9-42de-a7e7-c72e7abdfb7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707971349", + "DeviceId": "69a67080-a213-4389-837e-edaac446833b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481890924", + "DeviceId": "3d5c5dfd-e34d-40e2-9d01-44992396d9e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_209674514", + "DeviceId": "e4d156f6-a072-4b2e-9063-302ff2f72f94", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cfc1e513-24e1-4242-bb14-1d3075dd2566", + "TenantName": "Tenant-cfc1e513" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_220388850", + "DeviceId": "1fc17966-4a3b-49df-87a1-14a64ad30ff6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790824379", + "DeviceId": "a7a76ea2-47eb-465b-82e1-1d26a2d91398", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_296963721", + "DeviceId": "752bb42e-5177-4a19-b281-a1d1e732c78d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_863571055", + "DeviceId": "41ab8877-7a0c-4b55-b788-985dde1ce6f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916623538", + "DeviceId": "729fb489-7b94-4e7e-9dd3-41cb86277abc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_163811900", + "DeviceId": "1b1a86fb-dcaa-4b7b-ac7e-7839def00573", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b6ab3843-325f-4a3d-974b-89d414a1fb5b", + "TenantName": "Tenant-b6ab3843" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381650054", + "DeviceId": "5a98f5f9-54f7-48fa-9f82-64958a46f8f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432086941", + "DeviceId": "f6e83af6-3ec8-4169-87dd-4166e9503706", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_317055044", + "DeviceId": "8ca30ec2-655c-4d9c-9b0f-b1e0a303ecec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_420025840", + "DeviceId": "ad229923-27df-441b-87ca-f6de6ed2520e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908964691", + "DeviceId": "61cc97d8-d7a5-49f0-a0a7-c0dcc6c66369", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_492782911", + "DeviceId": "beb115ab-3e30-4712-b161-1cd3b62eb049", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e1b491e3-2a12-4536-957c-8b6a5f4ab2de", + "TenantName": "Tenant-e1b491e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734977344", + "DeviceId": "adc3f7b4-6d81-480b-8d6a-81631ab63ad8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562033120", + "DeviceId": "3e26f515-5ea7-4998-9931-6e248b5d8a5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165092387", + "DeviceId": "b0ca0ab5-f246-4be0-86b0-3e185d3248ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868201811", + "DeviceId": "2cfd44ef-eb09-43e1-807c-553bf30a345e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_560599762", + "DeviceId": "a2430d0a-c7a9-4fdc-a9a2-afcdd168a7a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_690429759", + "DeviceId": "de822ace-2af1-484a-930a-570f1eede0d8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "91c6ed53-410c-4214-b43f-fa2d51896b75", + "TenantName": "Tenant-91c6ed53" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368458727", + "DeviceId": "88c92c69-c994-4bc4-ba92-e50eec704e92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819217114", + "DeviceId": "1697bfb5-5950-4219-8f5c-5eab301ba9b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812318827", + "DeviceId": "b8fa4cdf-dd7c-404a-8bf3-242721af2813", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_958383548", + "DeviceId": "165155ef-5eb3-4e07-a276-9618fd73e9f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608122423", + "DeviceId": "eec81ddc-650d-49cf-b808-328cb0f81b34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_104081610", + "DeviceId": "54fae9d1-351e-46fd-bfd5-299cfe154cdf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1e361d98-208a-4af4-b993-2a2ce51cf974", + "TenantName": "Tenant-1e361d98" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246575012", + "DeviceId": "c3e24d2c-d54e-4383-8a2a-c3863871df63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229432619", + "DeviceId": "430f51af-318a-4137-b8a8-df757e1539fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858445881", + "DeviceId": "487522ec-09a4-478e-8ce7-dfaedbbad11e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564118873", + "DeviceId": "62d13471-515d-40a3-9738-f95868b951d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_548656728", + "DeviceId": "fa962162-0952-4ada-a6c8-39dd46c836f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_740413503", + "DeviceId": "3a5ca995-1d4f-4b99-bca9-8db85126534c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a81eed62-62bc-4cfd-8678-2d6216cd53ba", + "TenantName": "Tenant-a81eed62" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856498168", + "DeviceId": "a0f51b41-61bc-4ddb-bc06-b3578ce21bd2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270934368", + "DeviceId": "d8a5fda8-97e9-404a-8e6d-ddb9e809e641", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_160800692", + "DeviceId": "6b965bce-75fb-438a-ab5d-61d32ee9b752", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_985428565", + "DeviceId": "0eb67a82-f91d-4a58-bd19-a6893cf62011", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_478829148", + "DeviceId": "62555a07-5e14-48c2-baea-c74ffd0443d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_743987103", + "DeviceId": "bf2be115-9157-4d59-afe6-7fb0e10bf9e7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf8b6e22-fe0e-461e-bb65-adb640402469", + "TenantName": "Tenant-bf8b6e22" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162674500", + "DeviceId": "b1835ffb-e3c6-45e6-9a8f-264d42a4a79f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906119226", + "DeviceId": "dddd0dad-1e46-4923-8051-a9db85467594", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370104514", + "DeviceId": "02b10511-8cf0-412c-96b2-4c284592d138", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_151199876", + "DeviceId": "8f95f654-0b7c-49d4-b139-8c8f567442f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467786276", + "DeviceId": "9f0ac92b-1d89-499f-9166-436ede242322", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_758930240", + "DeviceId": "52391b23-71c4-49ec-a4a9-1a8d8c2abfc8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11ff18c7-b560-4162-9ec7-28f4bcf9a2d7", + "TenantName": "Tenant-11ff18c7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323938200", + "DeviceId": "422c85fc-33d6-4cac-8f37-415da4ae53ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350668637", + "DeviceId": "ebf2da1e-e1bc-4640-bf03-b43055887cfd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747807565", + "DeviceId": "de6128d9-d418-4494-b774-4cf33d2e02a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_535842527", + "DeviceId": "6f6ff270-dacd-4f42-817a-491b00eacbbc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_666199374", + "DeviceId": "05da58ba-2ea8-4dd3-b614-4c1269203be6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_156563119", + "DeviceId": "7d27e102-7de9-4156-9ee7-0933d9e82786", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c2e928be-7897-41e6-9863-2756749173aa", + "TenantName": "Tenant-c2e928be" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726066477", + "DeviceId": "00d15219-c2d0-4897-9aec-a2d5e4ae77c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_910800768", + "DeviceId": "137142c2-60dd-4dcf-b97b-4ba6e2b1f8d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462325299", + "DeviceId": "dbe1d28f-d848-4472-8438-6ee29e458827", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956260980", + "DeviceId": "35dec6f9-1a86-4011-b2f4-53f967afbdf6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494443656", + "DeviceId": "5aea4344-2115-42d4-9b40-93793ed7e2c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_371460161", + "DeviceId": "d022a07f-7851-46d7-836d-aad6d4e8be8e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "064212b6-797d-4712-93cc-21bc889fd1b1", + "TenantName": "Tenant-064212b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800962169", + "DeviceId": "d5442175-1d30-42df-8e67-804423e802e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218176299", + "DeviceId": "89755c79-c176-4a40-a4aa-907985c0755c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361702478", + "DeviceId": "2b495578-aae3-4156-a13f-fba9358fdee5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480718364", + "DeviceId": "269889e1-5749-4389-87d4-08f9082bd8b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676264187", + "DeviceId": "5a755b4d-996c-4b1a-aafd-5d3a2610fdaa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_773598044", + "DeviceId": "7c23a6e7-8e56-4a91-a967-66fa0364888e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e986c3e6-8689-476d-a147-3643bd848680", + "TenantName": "Tenant-e986c3e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_829026448", + "DeviceId": "fb398b0f-dfb9-4d3e-860a-b102e12bd6c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546765609", + "DeviceId": "1e007290-11d9-4bfd-b472-be1f36f08e24", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595021437", + "DeviceId": "afe160ba-f3b1-4139-a88a-043653e240a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_125533603", + "DeviceId": "41d6c89e-b0b4-43bb-8295-25b1573ffcb9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790964870", + "DeviceId": "64ea0a43-6f10-4b97-956c-3536e0a39ccf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_836479682", + "DeviceId": "4dca0e85-29c7-4444-87cb-fcc59f282a11", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0d263468-d6e5-4786-93a5-769a1a2a3964", + "TenantName": "Tenant-0d263468" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228680941", + "DeviceId": "32aa238b-3f19-4283-92e7-6d1856c21766", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825769120", + "DeviceId": "35fb6060-8cee-484a-b7c2-8747115301a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925655389", + "DeviceId": "5b281615-5208-4d5e-a823-7262fbd82273", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427005411", + "DeviceId": "2399bb5b-9e6c-4f0f-808c-ab73996ac563", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_803728780", + "DeviceId": "5039c10a-da71-4d5b-b27f-fab8c759867b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_332457405", + "DeviceId": "67cff291-da07-4c18-9bc6-ca008a6ec0f6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a23ae4cc-d6fe-4a92-b731-4325d64b97cb", + "TenantName": "Tenant-a23ae4cc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450691545", + "DeviceId": "48df696c-5c73-460e-bcd4-ab59ff86832e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_871941181", + "DeviceId": "9929b604-90fb-459d-841c-e00ea0dd9eda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972771727", + "DeviceId": "fa419d7a-d318-4c34-8853-cb12a79f34b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748556320", + "DeviceId": "1e54cf3a-762b-4932-b3d5-39b4b0f2247c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_296762121", + "DeviceId": "96041c1b-876d-42ee-b245-fe0ea6b38b2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_259427491", + "DeviceId": "0a5a08f0-62fd-488e-b052-f2a24ce8ecc8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87d3b7f7-d4ee-4f88-a568-ff4c64073e6d", + "TenantName": "Tenant-87d3b7f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_338586385", + "DeviceId": "33cf71a5-e177-4361-b6d1-7061cbfe13c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652829614", + "DeviceId": "d7bf6162-a308-44bc-9a91-44fc67670ec3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_776840417", + "DeviceId": "abc970e4-3239-4915-86c1-4b3f9f27c971", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_417914416", + "DeviceId": "8de6fe56-6b4d-4408-8e96-f700be1bd302", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_272850082", + "DeviceId": "f029088a-5c7a-4a9f-ba0c-456ca06bb297", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_280039996", + "DeviceId": "b99fae65-6ab2-40b2-ae01-291470337d9c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2401f2c0-b559-4687-8b53-5decce51230a", + "TenantName": "Tenant-2401f2c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709706980", + "DeviceId": "404e697b-6ad8-41ab-8066-56d0ea6cf048", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_785123150", + "DeviceId": "5ccfba1f-efc6-4d2d-8595-c126d9e35021", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488504903", + "DeviceId": "4be88c70-eacf-4dd3-8447-fb0041a7ee8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_984246053", + "DeviceId": "0a8e6f1a-2ee6-4340-82a0-54d937793888", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364791832", + "DeviceId": "e74794a2-1ef6-4a1f-a90a-6f06a2bce315", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_819862539", + "DeviceId": "123b401c-bfb3-475a-8579-2a5b617ff559", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a80abc47-9c15-471d-9726-729d3df32564", + "TenantName": "Tenant-a80abc47" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_256280985", + "DeviceId": "d4493400-ebee-4bcf-94fc-8d7bac7a1567", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_868143994", + "DeviceId": "7396c627-2900-47b3-8239-1e49f927d318", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601111434", + "DeviceId": "05adda3f-0605-44b1-8dd9-eeb65a99b4ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757052537", + "DeviceId": "be9d4146-c3d4-42bd-b0f3-ee9ce65be351", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771477274", + "DeviceId": "c2ef3a61-4a8e-4e1f-86f6-abf528bc641f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_765617652", + "DeviceId": "5b1b2a72-f9b8-4db8-9024-01fad1e91bb2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b0dabda-a668-46a9-b7a3-4051f39b3008", + "TenantName": "Tenant-2b0dabda" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548908694", + "DeviceId": "94a2951a-f1bf-43c2-8b44-0ba77b28ddbd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_832340071", + "DeviceId": "b1964361-c441-40e5-9d99-97397348424b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220193789", + "DeviceId": "88194325-0c88-4826-a79f-2d1fd45b3336", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137865562", + "DeviceId": "f56a24bd-179d-488b-86cc-7e6eecdbdf99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_340458089", + "DeviceId": "37af4ca2-3551-4b1e-b43e-bd428efe9fc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_140036927", + "DeviceId": "64edcc4c-b5ec-4111-a4e5-0fc0352c8147", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3086e7d1-bf33-4197-8161-a6b9d3d84eb9", + "TenantName": "Tenant-3086e7d1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412330098", + "DeviceId": "666b3c01-3193-4fe7-baf2-5e868c617d49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_629247414", + "DeviceId": "316e97e0-a7c1-405a-b84f-13826c0daa49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_834367190", + "DeviceId": "9ced80ce-49c7-4858-9194-4f83aba7c72f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658635986", + "DeviceId": "3b763f24-037f-4323-ab3e-5dcb483dfd2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_229828850", + "DeviceId": "90017e0f-6a2f-4912-b188-352d05fef05a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_800180751", + "DeviceId": "a1aa0311-2b12-41bd-987c-f3abba32dc70", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "69df8f99-d40e-4903-8d83-d460453b8763", + "TenantName": "Tenant-69df8f99" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261309280", + "DeviceId": "47a6b6dc-98cf-4935-a7f3-251719594b2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382075922", + "DeviceId": "f7242784-6297-460e-bf74-db2b9b9a0a9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558720090", + "DeviceId": "15a1c0d2-8af0-4bb7-8aa8-db76959d374f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_448904049", + "DeviceId": "5303db62-7240-4389-9340-74ad3b5b057f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_892250182", + "DeviceId": "f03e9f39-6447-453b-8b0c-50564bdefae6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_857890035", + "DeviceId": "8a5bc126-5b77-4756-98ed-ee5fe3c1371c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "675e6d4a-a954-4016-9f1a-927faed915da", + "TenantName": "Tenant-675e6d4a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_128992882", + "DeviceId": "ac835672-abaf-488f-afda-0ca47a667f20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596757564", + "DeviceId": "b878c676-fc4e-4e6e-94bb-fe6d1807e6a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660495506", + "DeviceId": "ebd1f258-2f53-4ffe-bbb2-5382b3e068e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181746981", + "DeviceId": "4fa8c285-3f7a-48db-8ea7-3c154e30bfd9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333452946", + "DeviceId": "c8e43f80-4754-4196-909b-80765adbb9ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_592899909", + "DeviceId": "0d0195b2-a360-4c91-8dc7-fb88d5f74def", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1b672230-98fc-4fd7-9b92-5987cf502552", + "TenantName": "Tenant-1b672230" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_817986625", + "DeviceId": "faae6450-3bdb-4e0c-a9ed-cc5c9aa1f897", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533678442", + "DeviceId": "8b64ea9c-23ef-45a0-a6bb-3fe81b9b9a34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512858183", + "DeviceId": "d78103dc-a3e0-4191-80fb-2fc61e15d55e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749885449", + "DeviceId": "51af20a7-0567-4016-adee-074671fb8825", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395037428", + "DeviceId": "b01680c5-2d1a-4db3-b88a-730b5009f394", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_726426421", + "DeviceId": "eb320601-d248-498e-aa53-950e86053589", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a3d0ce9e-7518-481e-96a8-25b6b685b93a", + "TenantName": "Tenant-a3d0ce9e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134083208", + "DeviceId": "993d8c0f-f257-4662-93fa-9c9413397f18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786900770", + "DeviceId": "a7c560be-f5e8-40f3-92b4-eb015a7b0f8d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963408995", + "DeviceId": "25645ca8-2c62-44bd-8614-9823ec0b172c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153066465", + "DeviceId": "87038b2f-850a-4fe5-8acf-b8a5f97f8f7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361860892", + "DeviceId": "393f1434-8415-4d1d-9ed9-5fc0e96f1a90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_409060522", + "DeviceId": "4319c232-98e3-4795-9678-1f5068c8c0f7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0e65803-6b3b-44a1-90e7-2699b2d65b2c", + "TenantName": "Tenant-b0e65803" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560479604", + "DeviceId": "ab56d6f3-2d11-4630-bd99-32ef73fc2ea0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582167955", + "DeviceId": "b9ccf198-1a7e-4c85-a351-e8b66d8c1872", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_458284071", + "DeviceId": "48bcc7b2-59c5-4d76-9938-e360f6d6e56d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552948243", + "DeviceId": "70b46a8e-18d0-4f55-b0c7-a965bbc9396f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_537236907", + "DeviceId": "3cd70e95-d455-4a57-8c83-a617b071f777", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_311036678", + "DeviceId": "5c641fbd-7a86-4c7f-93d7-d1299ae97cd1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "329908f7-9b37-4614-8b32-93198b84516a", + "TenantName": "Tenant-329908f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372476768", + "DeviceId": "15c84743-0d71-4cb7-8856-9c8ca18c4d44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896857846", + "DeviceId": "6870f411-58ea-45cc-a96b-d6485fabaf11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_871213634", + "DeviceId": "6eedbe80-c935-431a-9aca-495bf98784c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769760832", + "DeviceId": "59e9a5d1-f729-44e4-9d0c-7a8724717a8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_528210578", + "DeviceId": "620d2283-1a30-47eb-b174-865b957ad89d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_643971817", + "DeviceId": "59b582af-8c0e-4f5b-8918-06faf4383fa6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6f57ccf4-18ad-4afe-af43-3da0ef98b781", + "TenantName": "Tenant-6f57ccf4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484770363", + "DeviceId": "70c7f2f3-1ed7-496d-9920-0e09c8711ab4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841505792", + "DeviceId": "2c9263bb-0b28-45fc-bad9-1c396c7cbf15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282054616", + "DeviceId": "dd1d0444-0500-4e7a-8e03-7f1946e4e519", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501717050", + "DeviceId": "279111d5-5830-4a7f-9327-7dfb2f48190f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730843948", + "DeviceId": "4b1efc36-0e1d-4030-be9f-4167e191b2a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_336381548", + "DeviceId": "fd667b46-089d-4e92-a7b1-49647e5d7ef8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed3c94ea-6e67-45c4-9c85-738894f23981", + "TenantName": "Tenant-ed3c94ea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114531673", + "DeviceId": "713193ee-6cd5-4d79-9189-374c97a55c32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_383885929", + "DeviceId": "c8eef7d4-1f88-4240-8af8-138c67cf47cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857184041", + "DeviceId": "b2b6d444-2e6c-484d-886f-8a00dc0017c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781121133", + "DeviceId": "07efe938-5559-4100-b0da-97b9fce7e5e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_217395671", + "DeviceId": "0dfa3122-5882-44c8-a742-51acd76687c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_609923049", + "DeviceId": "96518403-6198-4b2c-8275-96c77ff61b1d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d84b5190-6eb2-4348-88d4-59955c586c6d", + "TenantName": "Tenant-d84b5190" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804970847", + "DeviceId": "55dba8a7-6eba-439d-99e5-d4be0d0db591", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379749761", + "DeviceId": "7523c063-e68b-47aa-bdc8-d7faa5417d4a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206799731", + "DeviceId": "16311cae-c5e0-4cbb-bb45-6590882dc746", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_692552677", + "DeviceId": "b4042678-7984-4003-a7d6-27481ad1a131", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674430462", + "DeviceId": "dc4c869e-16a5-4244-8690-02ce8d63ee72", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_220063755", + "DeviceId": "e374f88e-a980-4e8e-8a6e-76296416e6ad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "24f29c85-9114-43ca-9e87-3c22661608c9", + "TenantName": "Tenant-24f29c85" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441153208", + "DeviceId": "d9ebb4f4-33c9-46b6-9dc3-4f157ea2fafb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706153328", + "DeviceId": "c2e4363d-1d9c-4714-88f9-7c6bbc8d6dd7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760917735", + "DeviceId": "e7810a69-9f73-40b5-b590-a252aa87d028", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126008154", + "DeviceId": "fb20d2f1-4360-4028-baf8-5995a91613ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601789689", + "DeviceId": "cd4bb505-a4fd-492f-a809-552740584c1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_498270756", + "DeviceId": "fd23a65b-88c6-4fa8-bc08-5b5be600ad38", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ca3aede3-a3df-45d0-ade5-6be68d0dc86d", + "TenantName": "Tenant-ca3aede3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276714502", + "DeviceId": "7b8982b5-5b2a-4165-8418-bb17b0f15174", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738255848", + "DeviceId": "773697a6-9b0c-45d2-adb3-b66e0864f637", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539298128", + "DeviceId": "1342507d-6dd4-4d55-994a-bd5078073612", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_980427652", + "DeviceId": "3abe3736-8297-406d-a2e2-6c5dcd01e77e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907375525", + "DeviceId": "e4810c6c-4399-49eb-8112-4d88daca6678", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_365020406", + "DeviceId": "768cc2e5-5b2a-4381-8eb7-9eada6d3aaaa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "71acaced-91a1-42de-9a11-51298004d18e", + "TenantName": "Tenant-71acaced" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_177662062", + "DeviceId": "10367a6f-b4e0-46a7-b2c2-688148ff6cd3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422357234", + "DeviceId": "488eb8a4-15d8-4c53-9357-9c30cbdac662", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667430215", + "DeviceId": "2e1755d0-cc01-4493-bf3e-417992548263", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102493122", + "DeviceId": "a7a7da00-c76b-43b4-befb-c91aed4aae4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_345412746", + "DeviceId": "d60b01d9-50dc-49e5-8b9b-5ad23a0eecba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_557259265", + "DeviceId": "07be626a-5f06-4c84-a7b7-c94b2df45764", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "49b44708-c5d2-4d5a-80f6-3ca6063402c4", + "TenantName": "Tenant-49b44708" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831260847", + "DeviceId": "da58fa1a-a4e1-4758-afd0-1c03543bb528", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697922736", + "DeviceId": "deed2b81-474b-40ea-b888-11e6dbf97e99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126628153", + "DeviceId": "654ab3b1-780c-4e30-9bc8-0ee91acf6e6c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676585917", + "DeviceId": "42c89399-946f-45bf-9964-044ec3537bb5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_844352655", + "DeviceId": "63c24257-41a9-4b4c-9b73-a6c2d72e51aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_881959457", + "DeviceId": "ec55efbe-537d-41a3-9b43-6951f181aec4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "100bed7f-5d94-44fa-b0b5-670b8039a5dd", + "TenantName": "Tenant-100bed7f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136011202", + "DeviceId": "f75c020c-cec2-40d4-b3e6-71ea24a246d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931966212", + "DeviceId": "6ebc5a65-3ec9-4263-8485-81142d3d3b84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707126891", + "DeviceId": "f872cdd5-7ee9-4f92-8181-3171d4791249", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691277824", + "DeviceId": "04c9542f-9ae4-448e-8818-0f4d04c91edd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742124778", + "DeviceId": "3ef78f42-b53a-4686-ab5a-fc2a8279dcfd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_356893951", + "DeviceId": "756501ab-6e31-412c-a5b6-03d1b8ec5e4d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9848199b-b43f-4945-a411-fdf8ff0f9418", + "TenantName": "Tenant-9848199b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309266350", + "DeviceId": "b0f2a755-de63-49bb-9127-1ed9b79dbfc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430698282", + "DeviceId": "fe4ff3a6-c460-4959-8ac6-74070886774c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348464004", + "DeviceId": "e0e1d9c1-d197-4dd1-ab2e-41d0a060e97e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306612553", + "DeviceId": "3431e4b3-31f2-49a4-a887-c675822343da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_178283493", + "DeviceId": "6024fee0-05d7-4791-b0c8-e4f5edd2d78b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_637095097", + "DeviceId": "09b05a8b-d3b7-4ba3-b34a-60fd7b5f4ef6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97958075-40f6-4a4f-a78b-16ac19948808", + "TenantName": "Tenant-97958075" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646059995", + "DeviceId": "45ce3010-10e2-4c7b-b026-cf907d0bb4d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635803489", + "DeviceId": "60b6b194-f385-4bc2-9816-0df5179d6f8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687501423", + "DeviceId": "4109668f-5fe9-4a3c-bf57-3733d892bc90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_245152181", + "DeviceId": "7d04991c-78e2-48fd-a960-a6f70a873202", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438029426", + "DeviceId": "ab882000-d454-4ee7-afa0-d5087c182a5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_367996440", + "DeviceId": "bebc8aa9-6df5-4fe5-9e8b-1698a46d7be1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a284bb22-1a7d-4d0c-b9d6-d8a3908850d5", + "TenantName": "Tenant-a284bb22" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116147819", + "DeviceId": "04faed29-7378-43fd-8bed-5b1134c25ed5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107363508", + "DeviceId": "5dedf4ee-f68d-4ddd-882d-7ccdc93d9027", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954116555", + "DeviceId": "e14daccc-16ab-477c-aad5-2a81d1560622", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130022842", + "DeviceId": "7cfe56cf-28d2-4ef3-8c21-f09c53cc7bc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688267552", + "DeviceId": "1babac26-7fb8-4cfd-8ecf-0226ff6f0d56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_106193203", + "DeviceId": "eff30eed-9983-4728-ace2-80394578e751", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e26ff44d-a6d6-4e89-ade0-577dc4a93420", + "TenantName": "Tenant-e26ff44d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_385520386", + "DeviceId": "27e152d1-d25b-4130-9b3b-9f1d68ae11e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598308648", + "DeviceId": "3c2022f8-03cd-4948-8c99-e742dba7b665", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886688477", + "DeviceId": "02fd052c-b9a6-49bc-a9ec-5eb8b3f7d1c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411760932", + "DeviceId": "04ceffb3-7535-4a03-96fb-aadc40744598", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114624002", + "DeviceId": "81b79da9-ed68-4aae-aeb9-8d72f17cebfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_424991979", + "DeviceId": "bf349bf1-d824-4b9c-ba14-60da271370d1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e01c8ac-22a6-4b1d-a35a-50f126ec1ed3", + "TenantName": "Tenant-5e01c8ac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546872396", + "DeviceId": "8e0092f0-b824-4a49-af62-2d7950e90dc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741198804", + "DeviceId": "6f619ec5-be84-4385-bb3d-beeb45a05747", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370528990", + "DeviceId": "a35235c7-bb94-4d17-8242-071e5dfb6994", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481459266", + "DeviceId": "b4f05d99-99ee-468a-bc4b-c1503a1365aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_951633878", + "DeviceId": "f8105018-e51e-480c-8135-15fa44556eaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_778914951", + "DeviceId": "d8552641-57fe-487a-87cc-c5b1cbba4985", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "71f99ab5-2fec-4b01-b92e-10099230c4ca", + "TenantName": "Tenant-71f99ab5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303184149", + "DeviceId": "8dbbf9f6-141b-43bb-8918-770fed44abba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561908671", + "DeviceId": "39a3b1cb-76f8-46f4-8604-838694f100fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743097941", + "DeviceId": "a87d058a-9453-4b1c-b030-7af9ee73f798", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491131000", + "DeviceId": "24936d8d-8e46-4136-bedf-b7f0c8c9199e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337506563", + "DeviceId": "81ceeab6-7bf3-4236-a1f3-8718ebacccdf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_804145371", + "DeviceId": "63a3b0bc-e4e0-48c9-8161-7d4e0d9728f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "99f4306e-9a43-4d21-b1cc-4bb3c2b1f171", + "TenantName": "Tenant-99f4306e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928462655", + "DeviceId": "f7745033-5484-422e-8040-c1ab234dd0e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404716462", + "DeviceId": "ef994870-000d-4ddf-8539-bfbc077bef7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392366774", + "DeviceId": "ab1afc38-40a1-4af7-a73b-2a02be996cd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_971913393", + "DeviceId": "a962aea2-29ce-4b74-98b1-3db2d8ff2a4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410614301", + "DeviceId": "db89483f-50dd-40e0-a1d3-9ac5bda055d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_300142549", + "DeviceId": "b7c01a30-c506-40a7-92f3-55cf1055a8e6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "988ec6a9-3369-4f2b-91ee-e0dc1c2859ac", + "TenantName": "Tenant-988ec6a9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718540358", + "DeviceId": "4e199ade-d106-4708-94b5-4ce669857cfd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720812559", + "DeviceId": "e67fbf91-d7b0-4a01-8d0a-18bc7ad2684f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299894872", + "DeviceId": "e84e28bd-039e-4ad8-b29f-4618a4fbda8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182352882", + "DeviceId": "a13bc914-7669-4fae-9d77-b925b8089466", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374378377", + "DeviceId": "e2fd37a1-5523-4887-844c-0dd21e12499b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_989117308", + "DeviceId": "be059068-bdf9-4d13-b2a0-c6940e9db300", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a4b8b3a-19ce-4c66-b773-66b630ba0117", + "TenantName": "Tenant-1a4b8b3a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284138001", + "DeviceId": "e65df34c-b32d-4bd5-80c5-f346f3d001d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_157332943", + "DeviceId": "a2d2173c-2d66-4251-9b4d-a76680f28228", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_217989835", + "DeviceId": "e0ce0232-a7d7-4447-9fd1-9ffe70b11888", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_345554464", + "DeviceId": "d5b1421a-db6c-4737-8a8a-148e682e3562", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_859656527", + "DeviceId": "78ce9ec9-d5b1-423a-a069-589fdd399d58", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_388090693", + "DeviceId": "4c825f27-a2c8-4eab-b3cb-2d8877a30c9e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96455105-7969-414c-b6db-b3bfa3688be9", + "TenantName": "Tenant-96455105" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290035185", + "DeviceId": "04567643-38de-415b-9fc7-807f493b84b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831931311", + "DeviceId": "be13c3e5-8ffd-4dad-ac5c-891421c394e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771658927", + "DeviceId": "27bb56e5-9d29-4033-9391-7331e6d1e6e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472561749", + "DeviceId": "a114f03d-beec-4203-ac11-f5000895b314", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_100660074", + "DeviceId": "ca82a477-4221-49d5-aa7f-c977aac17104", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_266509547", + "DeviceId": "2b0f109b-599d-4265-8ae2-41caaebfb28c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ca3a5ad6-f8d9-4fb0-a1cb-9852418b2c92", + "TenantName": "Tenant-ca3a5ad6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252919414", + "DeviceId": "b46c8846-fd29-46db-b4a6-95b1428876f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_530954278", + "DeviceId": "544bc480-8b69-4014-a5c6-6f58cd20cdd1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196821046", + "DeviceId": "b3cb4a3d-417e-4d09-84c3-9da1db0366e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932699281", + "DeviceId": "7c2b2d2c-46cd-4d94-93c0-1490af7260ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643660733", + "DeviceId": "77f0d23e-2065-47f5-a815-310d97467ae8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_125827928", + "DeviceId": "8ce1fdbc-de91-489a-baca-b7061638f168", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dc5857a7-cdb3-43cc-b669-623e3d975e3a", + "TenantName": "Tenant-dc5857a7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_664492324", + "DeviceId": "b3872c12-725e-416b-ab1f-d9c7af80fcf2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286706416", + "DeviceId": "bcea0db2-06b7-471a-a5e2-1acead176ab2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581995568", + "DeviceId": "6f53b096-2572-456c-83ed-19af57829034", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_497948375", + "DeviceId": "0e93d2f9-c3cf-4e35-b28c-f9bf0777fbbc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881509696", + "DeviceId": "5f0b0b77-f3a9-47b7-9dd9-9ac4ef90b5e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_984199971", + "DeviceId": "56a2246e-e903-4ff4-8657-c0543d66d5ca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab2b405c-b20d-4d88-a12e-366ed429e95f", + "TenantName": "Tenant-ab2b405c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_499731925", + "DeviceId": "a9374440-77f4-45d7-9e1b-0a7b42cf0be5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330305133", + "DeviceId": "22edd898-2b0d-40fc-9508-82f4a174fac7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_745260123", + "DeviceId": "692c9e3b-7afd-4efa-b342-074df9ae09c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380542104", + "DeviceId": "a40b6840-1282-40a9-af4c-30bccd41cff6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_237860536", + "DeviceId": "f4fb5990-46ce-419d-b633-921f3ea0cc7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_595273772", + "DeviceId": "61515b64-fe45-47e1-bfe9-abb274f35601", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a2cceae-5c47-4e89-87dd-587e02a4ef79", + "TenantName": "Tenant-2a2cceae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759421779", + "DeviceId": "5b094470-2f7a-4799-ba8e-f2d966c181c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948388157", + "DeviceId": "d0568e14-3a78-47e9-ab77-0637fe3adbbf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393429019", + "DeviceId": "e0674d87-78f6-4ca4-af27-c663af6308ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862372119", + "DeviceId": "7d1536e2-445b-4ef8-af5d-c4dab4a05d33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952281287", + "DeviceId": "86005154-dd57-43d4-ad60-51235937a9e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_663710208", + "DeviceId": "48d00461-6ca0-4adf-8ba1-e8c029274139", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7c2d545e-44e4-44b5-8c34-ff1c28a1d7b0", + "TenantName": "Tenant-7c2d545e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962506740", + "DeviceId": "29cafd57-b7a0-41f3-81cc-2339ab42d200", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694924068", + "DeviceId": "768393c7-0396-4940-9fae-5b24bb45da9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899437196", + "DeviceId": "2dfbcde5-c8b2-4ebf-a587-5056aac1287f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_706090847", + "DeviceId": "12409117-4435-4c21-8725-fe2507f60e5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609497850", + "DeviceId": "7de5a840-fbb6-4a92-8fc1-7740cc808749", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_619318343", + "DeviceId": "d680d3cc-8fcd-4e44-9592-661fd968e2fe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "678972e5-8835-4d7a-a603-6c2f104e20f3", + "TenantName": "Tenant-678972e5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605431777", + "DeviceId": "c40b0ab8-9ad7-44a1-b166-6baaf3976a7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199001685", + "DeviceId": "ccffc436-7199-4762-954e-72c3cbf3a727", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_586773349", + "DeviceId": "02d483a3-2569-4f0e-a07b-574c1e2d6c32", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517758356", + "DeviceId": "d4c8d72f-7be1-4032-9531-3915ffca6550", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915541819", + "DeviceId": "18f1c370-f5ff-4de6-85ea-11fb4e6457ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_785862967", + "DeviceId": "7f339378-a277-4684-8630-2cc3259cf325", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fe85a9a7-e066-484d-a224-bae98db63143", + "TenantName": "Tenant-fe85a9a7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443572233", + "DeviceId": "2235b13c-bbc6-4400-aaa5-9b114f70c6b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451887058", + "DeviceId": "5c75798b-a2a0-41b2-8a54-b070cb38457b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583560605", + "DeviceId": "f95124e8-d35e-4992-9f16-d58cfcdc3345", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172013471", + "DeviceId": "47ed9954-8622-44c9-8dfb-cc078a036282", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_839720789", + "DeviceId": "78a06dfd-47d2-4011-b6fe-b138e4a016d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_512791924", + "DeviceId": "f6a57432-c04a-43bc-905e-2efaa6c72b57", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6df9be78-f322-4865-a3b9-0f343bee5522", + "TenantName": "Tenant-6df9be78" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_177993792", + "DeviceId": "beb0b16a-7455-41ef-a102-27322e640e1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_208672341", + "DeviceId": "6f5a8408-a53e-4a97-ac95-dec3c12f481e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442973072", + "DeviceId": "a8223d51-10e4-42b1-b13c-161f76b73c5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815832225", + "DeviceId": "d479f6d6-5d56-4623-a0aa-69f0ea8331be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200063553", + "DeviceId": "dad9417d-8f50-4442-9fa2-67f6f7bf0cb0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_669630741", + "DeviceId": "e46f6da4-e303-4eb1-871e-542eb66dc94a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b2ffa58f-c788-43a1-a0f2-0551e88ac7a9", + "TenantName": "Tenant-b2ffa58f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152418449", + "DeviceId": "043cd9d5-1245-4101-bde9-a221b70e082d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784058450", + "DeviceId": "c5452498-ee98-421d-9506-35e51770a788", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879608762", + "DeviceId": "8c55c9d3-b563-4b88-89d7-0f78451d765c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213860654", + "DeviceId": "f96e7784-bf34-4a3c-a17c-43f5332e2a04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_905268336", + "DeviceId": "2fa6673d-e9d7-4b06-9767-9993907535c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_447040559", + "DeviceId": "b5c11517-a3f3-4659-a0bd-a12c375fa81e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0cc5f99b-9cf3-4759-b3b9-08cb5a39413d", + "TenantName": "Tenant-0cc5f99b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126325519", + "DeviceId": "c8a577ec-941f-4bf9-b9f6-c3466b722f1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906849226", + "DeviceId": "7c016c02-1611-423f-a31e-bb2bb593d244", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_811918369", + "DeviceId": "2d7ac043-2d08-4ec9-a30a-fac6d6c8e14f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333820131", + "DeviceId": "c0f196a0-25d5-4367-bd3b-bffd2a56457c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904753389", + "DeviceId": "32888fd5-c11b-4b7b-932b-e2baa2300751", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_750219392", + "DeviceId": "8d17090c-92c7-43b6-8152-fa57212e4ff2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "359dcace-e82b-47a9-9db3-b1675076a6e4", + "TenantName": "Tenant-359dcace" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115235277", + "DeviceId": "db656c51-25f9-46ef-a556-2a31cb12e1e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845975654", + "DeviceId": "33d509c0-3950-421b-8d9e-baffb610800c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422140181", + "DeviceId": "9ce559fb-d8ca-4aad-82bd-ba3505c949ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858702637", + "DeviceId": "21454e95-ecf0-48c2-beb1-9ced49dd0753", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195726310", + "DeviceId": "472cf7e6-21e5-4a87-88cc-b3055e5c9f3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_635522041", + "DeviceId": "93138122-bf78-4dce-968e-c7cccd03222f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "301063f8-eab5-4bc3-a0ac-8dbb6cde1e0b", + "TenantName": "Tenant-301063f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633139761", + "DeviceId": "0590406e-5bb8-44a5-a627-710f99a773a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_854813077", + "DeviceId": "3272eaa1-7727-4c4b-8642-60f671c404df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942226243", + "DeviceId": "2a78b380-938b-4c7c-9dba-6288c5f5d3f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988386838", + "DeviceId": "3e41062c-fdcd-48b5-acee-f164a9276d35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618984568", + "DeviceId": "67249a1d-cfde-4bb9-819a-c8f872fa0b8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_503561771", + "DeviceId": "a8ba01ab-674a-4d5b-ba88-18348e35d7b2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fce292d4-4c87-41a6-a755-7793e47eed78", + "TenantName": "Tenant-fce292d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844629993", + "DeviceId": "f6b7690d-005c-43e4-b877-58cbb10dfc32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192275193", + "DeviceId": "fcdaa883-67d5-416f-b220-246e8949359f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622497249", + "DeviceId": "3249a267-611e-43d1-b46c-73ce82de7608", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_968241343", + "DeviceId": "397c8ba7-aa8f-457e-9dc8-9d8886dc146d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755121199", + "DeviceId": "baffa0f0-05b3-4895-b688-7d6b8efa17b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_578552562", + "DeviceId": "d88ffb16-cad8-400f-9d1e-afcb6d2b4724", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c49bd5ec-c710-46dc-b16e-ad973e2b7946", + "TenantName": "Tenant-c49bd5ec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_133187127", + "DeviceId": "1fc2b353-e799-49d3-94b2-1e083c434727", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_995095944", + "DeviceId": "30cb92d1-57ba-4b11-b18c-83957252706a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_603042241", + "DeviceId": "46fdcbff-0480-46f0-b94a-118542404d7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439871408", + "DeviceId": "26f50557-193e-4bb7-99ad-f05943452883", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299019238", + "DeviceId": "7bfe365f-3712-49e6-be08-865adacb4f67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_889798523", + "DeviceId": "f046020b-f5af-41ff-a9d1-a1622a38f658", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "32509f71-b317-439a-8605-cfb0c59b7b12", + "TenantName": "Tenant-32509f71" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928397598", + "DeviceId": "b724d24c-1a2a-48b6-8af9-18609042e0a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_664631238", + "DeviceId": "09e8e741-635a-408b-9385-6e8a90d945be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_951066828", + "DeviceId": "63aa5353-3802-43c6-a021-ecb817c1e91c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_864441991", + "DeviceId": "c5a9b596-dd36-4591-ae42-a1b4571b8153", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606588388", + "DeviceId": "64554633-ad49-4885-9792-1e67d7f3f274", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_588156256", + "DeviceId": "a6accece-43e6-41ad-85bf-df9ccfbe0ae6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e601e54-17f9-4f89-8567-1f702234e15a", + "TenantName": "Tenant-5e601e54" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713596919", + "DeviceId": "fb8155f0-dcef-452f-ac5f-f3372f39105a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899949750", + "DeviceId": "02c3a17a-3013-4baf-ab5a-1ca9a4e63b35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132361355", + "DeviceId": "215a7d29-0c0c-4fbd-882b-74d36f885858", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885083386", + "DeviceId": "3d1991a7-0bed-40c9-b15f-150ac6997796", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472225235", + "DeviceId": "ab27b58e-ba0b-47ed-b930-6173a023a219", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_200599826", + "DeviceId": "1def2296-c42a-4882-b471-53015d682ab7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1cfb36a8-1d17-4916-9143-7d9fc6a2fe16", + "TenantName": "Tenant-1cfb36a8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_291380204", + "DeviceId": "3480bd31-9d6b-4f96-8f2e-5ea4e30c23d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_150313758", + "DeviceId": "c88bd8c8-ae3c-4eec-a801-606c6d4cfe11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_350256438", + "DeviceId": "7add8d5b-d2ff-436f-9aa3-f9e638cb6c62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838914487", + "DeviceId": "29b4a040-9f1b-4ca6-b32d-0aeac663126e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258355413", + "DeviceId": "e50dad95-3073-4909-8c32-199b251ec166", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_408965650", + "DeviceId": "0f3b44b4-5080-4bd9-9860-184792fddd5d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b383b690-b2d6-4f1a-a194-3d5bbbb0d45e", + "TenantName": "Tenant-b383b690" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_921128393", + "DeviceId": "1306427c-d6b5-4461-8080-9481f6b578b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717938886", + "DeviceId": "66323c87-79c3-4aaa-8453-ba2cef599c1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281752277", + "DeviceId": "c318e836-1257-4a29-93a6-74c191eddf47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512882516", + "DeviceId": "717c317c-957f-4fec-8574-f15857612e92", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657161678", + "DeviceId": "bb7bdd96-636c-4d56-8a95-2a5fead8a4de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_712224875", + "DeviceId": "57f9294e-003b-4dc0-9ed2-451577e532bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ade59501-7011-49cc-be1c-39afd3af0894", + "TenantName": "Tenant-ade59501" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_447145790", + "DeviceId": "8a88095b-3642-4f09-b4a6-cfd7857abd98", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556579600", + "DeviceId": "509a103a-06b4-4c4e-8370-07d30b9958c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323579883", + "DeviceId": "ff613e1d-5817-459e-bcf1-ebf7e522ca02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616828000", + "DeviceId": "9639bd7c-8b32-40d9-abf6-5321a640a7b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_339050800", + "DeviceId": "bf5cc4fa-63dd-461b-af38-8974e98d4a41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120318779", + "DeviceId": "0238f5fc-ed2a-4f1c-89e3-7ff6d835e744", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1bd3a356-3df0-40dd-8d08-204f0fcee0e5", + "TenantName": "Tenant-1bd3a356" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591824013", + "DeviceId": "474456f5-a152-49af-a17a-6fcc3c52c23e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_390600456", + "DeviceId": "b6a6ad59-f874-4e7a-95c0-e55ba3fdd1df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278238331", + "DeviceId": "24f8543a-55f1-445d-a62f-c6b06c35ce8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827808432", + "DeviceId": "e813cbc7-072e-40fb-9a78-5bdaf9accb84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_686841029", + "DeviceId": "54269266-3eca-4c59-a667-b0e7b1f518f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_536404593", + "DeviceId": "1a088d60-9b88-4f90-89ca-552c32e24da2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1264edb3-5f4c-4466-8185-696749f8b3e2", + "TenantName": "Tenant-1264edb3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_815558026", + "DeviceId": "a6fabe60-1c7b-4e68-93c7-1f049d7418e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668359734", + "DeviceId": "561c6991-8913-49c7-a3b7-527772f1d080", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_563363283", + "DeviceId": "f745e929-fbc6-482a-8c80-b51b9e5dc15a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698963276", + "DeviceId": "ede89a87-e02a-4227-aea3-a4c9beea0ea8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_150258127", + "DeviceId": "472a951c-14d4-44b1-b400-1419c00f7ed4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_435383044", + "DeviceId": "0baddaa7-8476-45fe-ac5f-8833740ad4c6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b3d76e17-db31-4114-9ade-c3ecfc8df332", + "TenantName": "Tenant-b3d76e17" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145139836", + "DeviceId": "8b148ce5-72d5-49c3-b7c1-6bcc348dae3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665965895", + "DeviceId": "09ebab5a-c6e4-4219-9543-b6c9cedc1d61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595095777", + "DeviceId": "8130eae4-e5d0-457b-8945-8beaafb7d36a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721392936", + "DeviceId": "1975e515-92d5-457e-9d3f-d53a3d173504", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_704975767", + "DeviceId": "ae38a450-c110-46f4-be95-aa0c54c2fa40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120056163", + "DeviceId": "b189de84-1e62-4e4c-bac9-b9057cd3c7c4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0e609df2-02ca-435e-9e25-44042dd9a23b", + "TenantName": "Tenant-0e609df2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964438998", + "DeviceId": "f7726131-ea37-4406-a134-c80da9d299c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974990786", + "DeviceId": "8fdc74ee-cba9-4618-a253-614ffd88fa2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584483239", + "DeviceId": "76aea2cd-a072-4d0a-99f6-de90953d7a17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_412165137", + "DeviceId": "a724aa93-5cf4-4aea-88ba-a6ced679110c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328269099", + "DeviceId": "9515ba76-42bc-4eaf-90d8-6b19ffd7068f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_238153853", + "DeviceId": "8cac60c4-2f20-43b8-b073-59affb2da35b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "62f16396-e390-4177-a273-ad14428d8ff4", + "TenantName": "Tenant-62f16396" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_383298241", + "DeviceId": "53459c8a-63f5-4bc3-949c-6f022c1cfdef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_308823530", + "DeviceId": "4698b082-6ce9-4fd0-9799-37d50cb21981", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828333652", + "DeviceId": "7467f089-69bc-4ba7-b94b-860cfd809b2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576434938", + "DeviceId": "a2a322ec-c068-4c1c-8534-ef9b955beccf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935675124", + "DeviceId": "fd221721-1338-4656-9d6d-79f7e2dcdc9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_800979682", + "DeviceId": "b75d0da6-d3ed-41ef-8d02-cb4266b8fc47", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4f189b1e-d452-4190-8448-4574209681d9", + "TenantName": "Tenant-4f189b1e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798405012", + "DeviceId": "40234810-db42-4ce6-a551-e5ea5d4df312", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542938927", + "DeviceId": "7faca770-6368-40ce-a0bd-052c0a7f46db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_923044554", + "DeviceId": "d5c9e2f7-ba72-4da6-b79e-0ba2a4df4652", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_125421946", + "DeviceId": "e414da02-8906-4eeb-bdae-98b4a5967551", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288504727", + "DeviceId": "54dd8c26-0069-4f31-ac66-3f2b53731a24", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_642496623", + "DeviceId": "b579551a-39c9-4281-b28d-58a27a4b69ca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "26c6b92f-b7e0-4de1-b28f-5a89763fd641", + "TenantName": "Tenant-26c6b92f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_791027896", + "DeviceId": "543b9113-b170-4116-a06e-7d9b6dea148e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466213089", + "DeviceId": "1ef6f333-db86-4621-a848-422a024b092e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416050063", + "DeviceId": "ea00491c-2fba-4f3a-a7a8-dcbec146943a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735821643", + "DeviceId": "c2693597-9a39-4f17-ac8d-017806eee188", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_586496544", + "DeviceId": "76132801-7103-4f8b-8f8c-397843d86b1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_148720221", + "DeviceId": "436a2a6c-8005-46a4-96ba-5ceecfa05448", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9df031ef-e719-4d90-9fe5-2987f4385598", + "TenantName": "Tenant-9df031ef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_653613665", + "DeviceId": "62a930cb-c236-4618-bfa7-a3485c16a301", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999204300", + "DeviceId": "e3cf9250-003b-46d0-954e-a9ba11891a94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933329341", + "DeviceId": "a7595c26-d857-4e1a-b849-aca1e46612a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395844048", + "DeviceId": "e06191f3-72a6-4f8b-97e1-e460df73c84a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677377487", + "DeviceId": "88a05a0b-447a-4872-9f18-26a6f25551a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_474000733", + "DeviceId": "5527776a-c5c3-4572-8635-d8b6fba5ea4b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3df80e8a-fc26-4f80-8229-0f1d756aa3d3", + "TenantName": "Tenant-3df80e8a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348635771", + "DeviceId": "3e196049-1826-4b50-9211-a9c47dd6137a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598384298", + "DeviceId": "467e8527-0a2a-4771-a727-d3dc625b1139", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220004881", + "DeviceId": "22aa6042-a7c2-4868-ab88-3857627fcd85", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818110919", + "DeviceId": "28fbdc86-9336-4715-9960-f22738a9c44e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225672459", + "DeviceId": "d1291c53-b34d-40e7-be0e-831831b6194b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_358656961", + "DeviceId": "3d7f702e-b467-4edc-a6bb-717bd5bf73aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "076cd661-6582-46cd-a00a-9f2ed03dae93", + "TenantName": "Tenant-076cd661" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644933066", + "DeviceId": "9f922ec2-cce9-40c5-9ebd-dbd98ee4d19c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917214746", + "DeviceId": "574cab37-679f-46cd-9ad6-9e0c92ea61c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837449859", + "DeviceId": "bf62cfbe-f707-4dd2-a6d3-c33854867533", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_489503889", + "DeviceId": "a950941f-b775-425e-becc-3bcc70261126", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_294335638", + "DeviceId": "3e66178e-5f06-4d49-a0c8-669b05005828", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_661037054", + "DeviceId": "d4aa4b47-2282-4be8-8ec5-d36b72b4d873", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7522b8b0-24a9-4928-941d-da5c6022aef8", + "TenantName": "Tenant-7522b8b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102009254", + "DeviceId": "2c49b52c-83ed-4c00-a5f9-e1d65a17f1f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717842817", + "DeviceId": "c1c8bc56-ba1f-4d98-a2c2-a4b7d8ccc2f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767464262", + "DeviceId": "02d18908-9070-4087-bac1-e2c3852c4fff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_641414823", + "DeviceId": "27104f9c-2fa9-4f3e-8ca5-d2291e217a67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_750910898", + "DeviceId": "25ff20c7-fb1d-44c6-b785-8ffc40a37899", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_597210082", + "DeviceId": "70d54eef-4970-417f-baa8-553d8f372628", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d3982cb2-6d58-42a8-913e-1f8f78c333b7", + "TenantName": "Tenant-d3982cb2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561351866", + "DeviceId": "0718340f-3d3e-4814-9fbf-7db65caee687", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948448907", + "DeviceId": "54de816a-6130-4714-9b04-3fb8158a7f11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390394645", + "DeviceId": "58bbeb75-75e3-4e52-9db6-e9d544481e05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232523656", + "DeviceId": "b62b3db8-3573-4fdb-9a18-60151bd73488", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777588322", + "DeviceId": "98bf8af5-4d72-4afc-9ea9-7b52f9d70f65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_552252264", + "DeviceId": "2f416295-34ce-4895-9e6e-833c4de37642", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9ca073eb-9aef-4579-87db-c9bbd288228d", + "TenantName": "Tenant-9ca073eb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518756554", + "DeviceId": "28d02eed-e8fa-421a-ad0c-aba5163c920b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666414382", + "DeviceId": "c40c99e4-75f6-4e66-82f7-9a4e7d03639f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539154301", + "DeviceId": "7fe4fbce-b7a0-4084-9aaa-6b67e513fcc9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376427180", + "DeviceId": "e07fa22d-a376-41b7-bc4b-bbd12d058fc9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741297714", + "DeviceId": "f69d339e-f624-40f4-9474-8999a5202478", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_318711653", + "DeviceId": "474d0ad2-1d6f-4eaa-814a-707ac30034c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "090fee47-d354-47fa-83ff-f1b889b6bd14", + "TenantName": "Tenant-090fee47" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963716064", + "DeviceId": "5a2a8344-2313-49a3-b4f0-2d25ede3233a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_375173548", + "DeviceId": "f244649d-184c-4311-b51b-92d1b1a7b1cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479693501", + "DeviceId": "de4edc87-129f-4491-82a4-f290678402df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451935265", + "DeviceId": "576e3cdf-944a-4fec-8158-54088ee9043b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997420389", + "DeviceId": "e673fbfd-d14c-4347-b9b5-16c78324ec9d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_714328044", + "DeviceId": "fb5a433e-2f5c-4890-928d-145cee00a410", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab1e654a-3eb9-4bd4-a5b0-7608a1f49098", + "TenantName": "Tenant-ab1e654a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_907839352", + "DeviceId": "a860b033-216e-4576-91b7-d086dd4ef9a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646813136", + "DeviceId": "0cfbc536-13ae-4358-a3fd-4a481c7165e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495458338", + "DeviceId": "6d62c8f2-da4f-4355-bca3-dabcc6ef7bc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599483284", + "DeviceId": "e3e07531-c9cf-44f4-96bc-92d4a54c3210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310432201", + "DeviceId": "9c0aab3f-3286-4f22-b8e9-8d48f595c455", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_690955519", + "DeviceId": "805aa75f-1f81-4f5e-8a62-5c06dc605ea7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a52f1add-0533-458b-8b8b-117da2f762e1", + "TenantName": "Tenant-a52f1add" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120309140", + "DeviceId": "100c47c5-2347-4cbe-bdd2-bef2c6538dd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621847231", + "DeviceId": "fcab3f8a-25a8-40b3-903f-9358a93b3761", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190497806", + "DeviceId": "606e4336-4830-47e6-af62-6a2b17616ce1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_217171367", + "DeviceId": "635003ae-1cd4-4e15-84b5-84b340010cff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625314718", + "DeviceId": "5f35b3ee-2a5a-4ff8-8cd4-af35ee84b104", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_460898540", + "DeviceId": "1815d645-3a1d-4b02-898d-390cd352eec2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0964616-c858-4593-8d17-fdf563fe39a6", + "TenantName": "Tenant-b0964616" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687806320", + "DeviceId": "67f45995-83e7-4368-b940-4be8c77255d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_499887779", + "DeviceId": "8e314f03-8e76-438e-af25-97cfc7c8d1fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670540601", + "DeviceId": "63901881-a6b6-4d65-aba0-1b15c8a832b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_639408935", + "DeviceId": "79839cf2-2150-49f7-9585-604bd775532d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231580032", + "DeviceId": "188d5bf5-a68b-4b41-a122-0eb8ec2143cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_312145040", + "DeviceId": "e512d64b-e1ef-4339-8a9f-41994fc259ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7a65faab-889c-4e02-885d-bb1209d6a240", + "TenantName": "Tenant-7a65faab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309210707", + "DeviceId": "bb112588-41b0-4f5e-807d-454c59fb658f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399344898", + "DeviceId": "52b1993d-7dba-47a8-9cda-600a29632fd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290884132", + "DeviceId": "cca6cd53-9ec8-4310-8371-77bedc534746", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_884843568", + "DeviceId": "dc89dec6-7c50-4359-ad1a-88a6cbf51a7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_104992076", + "DeviceId": "d0ab6934-c411-4727-be6d-28ad99eee6f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_863649281", + "DeviceId": "a52d9d81-f648-4937-a83e-a76aeea25934", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed035e91-5550-4131-acd8-cbc624cdc097", + "TenantName": "Tenant-ed035e91" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703968219", + "DeviceId": "8da63a92-e0f6-4de0-9c0e-3d261a97e8e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591194405", + "DeviceId": "606ad77a-e28b-4739-9f1f-9a009ea5d47c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454102076", + "DeviceId": "14179252-0943-4d95-b48a-cf0ad76c8adf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189461230", + "DeviceId": "1e544672-d2c5-4be9-930e-b4e112fd69fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_371377819", + "DeviceId": "fc54c016-40dc-4ccf-adec-c0b9a044b33b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_737996511", + "DeviceId": "c139802f-7e7d-4f23-8b5f-9f5b6a657270", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "10e1d7b5-d906-4820-bf5c-c6810fa981e5", + "TenantName": "Tenant-10e1d7b5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231547847", + "DeviceId": "a936632e-2ef5-49f7-b089-f7d6bf471771", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545845190", + "DeviceId": "7a4027fe-5e69-410e-ba70-6286acd7ba64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_671809769", + "DeviceId": "ec7fa696-9be3-4a32-9a0d-56f2cdc62a00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_483951406", + "DeviceId": "756ba966-3408-4764-9cbf-36dc783c3079", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165696406", + "DeviceId": "8e5b2f69-73fe-4665-8d6d-73dae9eb81bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_140657500", + "DeviceId": "3564a402-586e-42c5-aac7-bb07352f1aa2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e3376a57-8be4-418c-a41c-7e556f268464", + "TenantName": "Tenant-e3376a57" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962563065", + "DeviceId": "c405280b-169e-4418-8422-e8bb82f6995e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161271925", + "DeviceId": "31144da8-d747-4316-806b-28ad7422db54", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_516242365", + "DeviceId": "74bab2c8-38b0-433a-b923-3a5927642da7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242282136", + "DeviceId": "9fd61757-9196-4396-9868-5c1ca6f76859", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_732951533", + "DeviceId": "c3d2e014-daa9-46f2-8cec-ab4982071421", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_491456312", + "DeviceId": "6de9d5bc-6b59-43c9-b76f-4166b976a0e9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4d31611e-b97a-4c04-b39e-e633c176f572", + "TenantName": "Tenant-4d31611e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476740247", + "DeviceId": "163a40a1-f019-44e1-ab1b-90229083d1ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_890714118", + "DeviceId": "42a4f363-0696-4bad-bbbd-a07b6adcd27c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_218405400", + "DeviceId": "0064e020-7fc9-4a23-9841-dc220e23a817", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495225672", + "DeviceId": "86e69b52-1995-43b3-9f1c-cec27f0db738", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_829903972", + "DeviceId": "883a3a98-a706-4af1-a25b-42a95728e7dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_270970425", + "DeviceId": "0d616bfa-5ecf-413e-a94f-2d089a0efec0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "16da70ff-bccc-499f-91e7-bb399745ac4e", + "TenantName": "Tenant-16da70ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636177106", + "DeviceId": "882bfe5f-b860-4627-8354-0a5fa84028ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101769823", + "DeviceId": "1123e586-05ac-4248-86c6-4fce081250f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_839618747", + "DeviceId": "c59f9d27-961b-4a8f-a49a-57f905d58463", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771639106", + "DeviceId": "eef9cfb7-92f8-4e77-a673-64f4ffc6ecb7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288490942", + "DeviceId": "6df085c7-3edb-49e5-9ed6-ddead3ab73c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_556992207", + "DeviceId": "b528fdc2-ebfb-4b4e-b749-0efcf6798d03", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "de104fa0-29e5-452f-a280-44b68fea6bfb", + "TenantName": "Tenant-de104fa0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431276262", + "DeviceId": "907563fb-86e9-4c83-bf35-0fd8af75dc59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261895481", + "DeviceId": "68cff728-aae9-4289-9d8f-687e848c8196", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626604757", + "DeviceId": "21f686d4-e045-47db-af0f-69540f8c86d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896386824", + "DeviceId": "01b673af-a3c7-4bb4-a36b-1dd7940bd243", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_901498366", + "DeviceId": "92871d8a-7b94-46fb-afc1-eec5503dfcee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_802162207", + "DeviceId": "84acc4ed-c32e-45e3-9808-985cf308aa18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "85f8b5ea-e4e1-4adf-bd8c-3308f01a870d", + "TenantName": "Tenant-85f8b5ea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975458868", + "DeviceId": "e3a6c07e-7c91-443c-92d2-4260c9ca5b02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339368521", + "DeviceId": "7fe6a561-802b-4d6e-b168-eb29e0ab3afd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130518511", + "DeviceId": "5b8f9d2d-bfb6-4869-b5c1-b45f8c34f366", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_856555582", + "DeviceId": "c78de970-8ccf-49a5-9442-89b701c36589", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889567732", + "DeviceId": "c5899736-a716-45b7-85c6-1eb31bd69eb9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_972451252", + "DeviceId": "b5d224af-ef5a-4510-a450-1db5ccab8133", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05284dd7-9332-4282-9f8a-0cc77ec3e9a8", + "TenantName": "Tenant-05284dd7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_583686372", + "DeviceId": "c4db9fa9-b387-4616-85f1-6de24d70bb4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761763336", + "DeviceId": "549c01ed-a8e9-4237-ace8-37afaf78d772", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300001360", + "DeviceId": "1d0a5538-2bb4-4b09-8b5c-321f8d037f45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278131701", + "DeviceId": "a9315d7d-d615-4407-a7b2-61ab9d873e71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_661508921", + "DeviceId": "e29e8491-36ee-47b1-b82b-5e2a3ca4c0a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_487440403", + "DeviceId": "a72c7cc3-45fa-4793-9a7f-fa75cf64bcf4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "530791fa-ff18-4bfb-9e9c-bb20b60a851f", + "TenantName": "Tenant-530791fa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_915755257", + "DeviceId": "b56460fe-5e12-4828-87e4-67b9428bab57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_426848869", + "DeviceId": "e57c9f93-39f0-43b2-9793-d6d5cbcbe692", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416363675", + "DeviceId": "dea5dac2-462e-4258-8d2d-b1934b099be6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843510159", + "DeviceId": "1326f868-523d-4400-8c0e-8893f83b5eb7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_715173435", + "DeviceId": "40c1d1ba-1d40-4dfe-af35-938e4885070e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_121947157", + "DeviceId": "2768487b-d39b-470b-80d5-5b52cd9f9577", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5c338590-84ad-4b4f-906d-54f54b3b085a", + "TenantName": "Tenant-5c338590" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371946996", + "DeviceId": "3fd994c9-13c0-4598-8250-a49ed5ab3e03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836208368", + "DeviceId": "e0c017e8-eee2-498e-8b3b-79eb166dd958", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369747628", + "DeviceId": "26b85170-7005-4f10-9872-6230b397c27f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189279085", + "DeviceId": "9f9e3c91-aba1-4795-9520-a444f5324bb0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414732733", + "DeviceId": "14cf51b1-6563-4361-be6c-66d96527a640", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_886380831", + "DeviceId": "206c37ad-7891-40c9-ad4c-403da547558f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "40d5d172-e54f-46b4-b413-04505c452cb1", + "TenantName": "Tenant-40d5d172" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171520402", + "DeviceId": "1e8bb1bb-3f1d-461f-ad18-2b39ff1b6de0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239469303", + "DeviceId": "84eb8032-cb94-4b42-ae25-c006f4be26b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994322376", + "DeviceId": "92c88d7e-4f79-4b76-abed-8df96a5067c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_352441026", + "DeviceId": "876da574-918e-4e15-8f03-5638e1e21d37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_503706922", + "DeviceId": "deb361ba-3ae3-4771-bd24-4b197c8c1570", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_237954008", + "DeviceId": "78ea2044-75f4-4093-89e0-6ee53040a806", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "53a1d060-0c2f-4e9f-9c22-1bce47f7e364", + "TenantName": "Tenant-53a1d060" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_530914308", + "DeviceId": "e43d0790-0dca-4614-907f-69834c09566e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858846281", + "DeviceId": "00a8dbbb-9b15-453a-b61d-4de955a7f4ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553706309", + "DeviceId": "0a2dbbae-85a3-46f0-bab3-43d0d24b73b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382224501", + "DeviceId": "e4f9b882-b253-429d-a779-2be7bfca9d4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189948657", + "DeviceId": "99922f11-4d5a-40c1-9b03-9d2ff5bbd264", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_522737582", + "DeviceId": "103960ac-6360-47f3-b5b9-6ae63b4c1435", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f7ac4ebf-544b-4cfc-9c8b-68a8dcd026ad", + "TenantName": "Tenant-f7ac4ebf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773321759", + "DeviceId": "730f3e4c-37ab-4c10-b775-cfba9feea6b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652771373", + "DeviceId": "acf5162c-2a58-49ef-90be-d776f64680aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885784710", + "DeviceId": "d28bc0d9-4ce5-442c-a6f9-2996eb15ae72", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549400711", + "DeviceId": "d414fc55-caba-429c-a37b-65f880de71a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523744302", + "DeviceId": "dc40b31c-7578-49d8-ad50-249398989cff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_622298101", + "DeviceId": "381dbc3a-c181-43f9-8d9c-f9ed8b99f906", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "136861b3-23cd-4ca9-a0f8-e250cb57c69f", + "TenantName": "Tenant-136861b3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743365888", + "DeviceId": "7e247d25-acc4-4dd5-9b14-b66271c8808f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206337884", + "DeviceId": "bb40d3d7-7786-40a4-9782-e750cbc4b18d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_403498488", + "DeviceId": "fd37bd23-c25a-4983-a091-4b57e7c4c031", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862919288", + "DeviceId": "ce209821-fd9a-4f61-a580-1af3f6abeaee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_478005585", + "DeviceId": "0244a474-1740-4af2-8781-fe86e2a28746", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_532286071", + "DeviceId": "7ab27952-0f97-4d67-8835-12e974983323", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aee922d1-85d6-45a6-b13f-d86d2841b11c", + "TenantName": "Tenant-aee922d1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661546328", + "DeviceId": "41c0b887-b8c3-4485-98ed-3c8953a1596a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468454230", + "DeviceId": "48e3e85e-7f03-441b-bb01-dbbb1136e895", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287042765", + "DeviceId": "7ab5b3fd-6792-472b-b35b-4ab5ee19dbb6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_909640895", + "DeviceId": "0caf5516-a8e8-4aee-b6a7-b891e4bd95df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725525480", + "DeviceId": "8064d76d-7973-4917-8de9-3b351b583cba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_311526003", + "DeviceId": "f5904f11-c2ff-4a88-96f6-8430256e4233", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "827dac05-1cb5-4054-92ed-eb7b027d4a1b", + "TenantName": "Tenant-827dac05" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430413895", + "DeviceId": "ac782e63-2ed9-4fe0-a7dc-210ab628383e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666073713", + "DeviceId": "9fc6ba22-0075-43a1-a310-0e9150998094", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_992355974", + "DeviceId": "14bbe809-d22b-44e4-9b36-02df8524622b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_572117818", + "DeviceId": "76228ee9-7f9a-4105-aad6-3a9b7fddde2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940117483", + "DeviceId": "7c4566b5-74b7-49ed-9cfd-7fae6fd680a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_428147318", + "DeviceId": "48c6519c-aea5-4320-b3a0-e5df79422e38", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3d3e671e-7b32-4714-bfe3-db056b6862ea", + "TenantName": "Tenant-3d3e671e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140010695", + "DeviceId": "6996b24b-be6d-4b43-a7fa-5bf06b61271c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781126356", + "DeviceId": "0f540e99-d9be-4fb5-a341-3a313db01bef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_518566099", + "DeviceId": "6f8dc753-5d7b-4e1e-8a6d-3cab405a0714", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697649665", + "DeviceId": "8e469faa-dd1a-4114-8d30-9c669f6ca2e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695858692", + "DeviceId": "3b0a8942-2121-4245-afb5-95769e7b003d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_865030742", + "DeviceId": "10062419-813d-406f-88d6-f34e3d702ffb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aa0ffc1e-2efe-4bfd-9876-c554b1b5f614", + "TenantName": "Tenant-aa0ffc1e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200683259", + "DeviceId": "384997dc-c5e9-4fca-bc7c-9f5414360b1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176997241", + "DeviceId": "97dea448-cf5b-4bd8-ba6a-a56b10feed73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_685830308", + "DeviceId": "a9d1cbce-6ae7-43db-89eb-b2b09d4b86e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238440815", + "DeviceId": "32cabf89-7478-4bdb-996e-170c3673d713", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102816402", + "DeviceId": "af482b40-bc05-4702-a3fe-0959c89a67f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_410082753", + "DeviceId": "d2d0d7f3-484c-4400-baef-6fcf997aecca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "180825be-b8c6-4be2-a7f9-aaa87b743ce5", + "TenantName": "Tenant-180825be" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728977601", + "DeviceId": "b29e83b2-0175-4661-b16c-ab2ecfe5a2c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428232543", + "DeviceId": "29ca92a1-f06c-4f62-910e-d405d7f76e10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843697279", + "DeviceId": "ac02d601-5ebc-459d-a0f1-2ce4364dcce6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_927139264", + "DeviceId": "3c102566-649a-4c08-ba87-83ed85475d4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581830712", + "DeviceId": "521f2e5d-3525-4dcf-91d6-8a4a722009c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_772257489", + "DeviceId": "72a2b904-8898-46f2-b3bd-e854dd02d0aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f592d186-42d6-496c-875d-115634a6ff4b", + "TenantName": "Tenant-f592d186" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227090576", + "DeviceId": "f6fb638e-9aef-45bf-b4de-10adb06f24df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906555316", + "DeviceId": "cf11c8b7-c4a8-484b-8fb3-9fd145674915", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255442726", + "DeviceId": "50f8c994-61e0-4247-8c5b-ec37f76b7293", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263887922", + "DeviceId": "d498834d-6f47-4158-850c-5cb11cbb2467", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306949014", + "DeviceId": "21d47068-c589-4f84-8cc8-72a0eb1d5226", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_280679961", + "DeviceId": "92b7b919-dd40-4f73-b8c9-c24052b193f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "13d58f96-6b14-4e87-9e83-9d2cee7f353e", + "TenantName": "Tenant-13d58f96" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560923228", + "DeviceId": "cf40cd04-e2f4-48c8-8ae0-043711ef8336", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149560738", + "DeviceId": "e8fa325b-a08c-4b4e-9930-e80fd252687d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137256528", + "DeviceId": "5c8cd55a-a283-40e7-ae03-0df4d416801f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_203967201", + "DeviceId": "bb1d8f3a-6f55-4de0-b639-df84e3f7e96b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_366435755", + "DeviceId": "09c88b9c-c72d-4819-ad34-9df6d65b2971", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_906482677", + "DeviceId": "61d30762-9436-47e6-902f-ef20df983eb8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "65c4ff81-10f1-4d85-ab3d-d2f9a6f9ff1e", + "TenantName": "Tenant-65c4ff81" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_216688327", + "DeviceId": "affa45a6-42aa-4511-8c1e-2947aacd8fe7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999386173", + "DeviceId": "8ce7b0a2-7369-482f-9736-b8ca8dd91399", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_880848123", + "DeviceId": "5b99d582-5580-489c-971f-01191b8ab085", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_459446662", + "DeviceId": "e3108833-64fc-45a5-b431-18c16a6e9f09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702411451", + "DeviceId": "42eb24af-840c-4bc3-92b4-57a028631ba3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_557023501", + "DeviceId": "c14c9806-a1d3-4948-ae5b-eb11c9e6df7e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e3b80d98-1b9e-41b9-82c7-f3e77383e62b", + "TenantName": "Tenant-e3b80d98" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974085148", + "DeviceId": "503d591c-57ce-458d-b67e-dfc8ca3adf5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347702128", + "DeviceId": "11012c78-5a7a-4e50-837a-130f789349a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_738954183", + "DeviceId": "9ad8eb1a-3856-4bb9-a2e3-fc06a96208f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907378363", + "DeviceId": "51b35478-f2b7-4e00-b10e-56c80021fb7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_239350267", + "DeviceId": "9a26dfb0-cac4-46a7-8e2d-02b8a5915aa1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_685227540", + "DeviceId": "2bd47a62-4386-4f8d-8bc4-f2e53df2ac94", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80e2fd7a-ec70-47ca-866d-50e9fa24dd70", + "TenantName": "Tenant-80e2fd7a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850539907", + "DeviceId": "30ab3405-bd68-41b0-91ea-05a2fbcf5616", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893297707", + "DeviceId": "1c79a5f7-024b-4f26-ade9-4812c7ff71d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356854658", + "DeviceId": "4f03c30c-5fa3-4272-86c4-b8ff4bdb1f33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321295951", + "DeviceId": "9b867070-d1d3-411f-a3ba-0ddc3bc25a0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433834687", + "DeviceId": "ed7870a2-ebb8-4c30-8869-e53a6f52083f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_509457150", + "DeviceId": "1dac8b94-5102-4905-aa19-a8f8bb5c0786", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "99d7cce7-2f34-44f8-9485-e0494901ea9c", + "TenantName": "Tenant-99d7cce7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422881998", + "DeviceId": "111121a8-b203-486b-b6d7-c1bd5ed2955b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793260812", + "DeviceId": "25e2c6e4-7ebe-4c92-b130-a5382202edfb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_551825016", + "DeviceId": "dd55b13e-9ef1-4313-8801-03e52d2dd830", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757834630", + "DeviceId": "a7aa93fc-aba9-479b-befa-2943155c97ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752824490", + "DeviceId": "5838cbc6-beab-43b5-ab82-a97335129d6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_201311367", + "DeviceId": "40eebe8f-43cc-4295-ad49-6cbdec8ccebb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c38b40a5-1c51-4ce8-bfec-b1d5980e71e9", + "TenantName": "Tenant-c38b40a5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_707348051", + "DeviceId": "fab6ff47-63ea-4bb9-83c0-85d1423eeea3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230873286", + "DeviceId": "72053222-ee2e-4785-b217-bf126f164e2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599443581", + "DeviceId": "778413d9-a53b-4633-9966-729f71e763f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_579137052", + "DeviceId": "b131fe84-6242-471e-9b34-1282409108a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_639168627", + "DeviceId": "acded664-41fb-4fe3-9c4f-c9358b398d4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_158941663", + "DeviceId": "3fbff541-19e2-44b4-bfd1-42448ac31a7c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cfac590f-8408-442d-9f5d-32b140bf52d2", + "TenantName": "Tenant-cfac590f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122565482", + "DeviceId": "2bd6a950-c141-4937-91c4-d0de9270087b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997412277", + "DeviceId": "2d9e8eec-acd2-49d3-9d09-6f3d4e1da10f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_578521529", + "DeviceId": "64a69962-5240-43cf-811b-5c43f7f3ab34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_579859752", + "DeviceId": "7ff2de88-2f1d-45b6-ab02-9196e10d8ad3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597204676", + "DeviceId": "980f0667-8262-4741-9294-4f5da4b3d918", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_359455557", + "DeviceId": "f2b20e57-7465-4ffc-803e-8e6d853116b4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4923d6e4-2e4d-48d2-aa49-021068a1b4c0", + "TenantName": "Tenant-4923d6e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564913387", + "DeviceId": "8dfbe8d9-fbd3-4aa6-86cb-bfd002dcb37e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518664099", + "DeviceId": "bbef8625-e815-4a8b-84a1-124907e36184", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105643276", + "DeviceId": "5bbb68b9-8498-4d3b-aab4-c119ee4d2692", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_661785095", + "DeviceId": "52fa93ea-b560-4cca-b40f-701cdfd95449", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110527961", + "DeviceId": "8d09c549-992a-4e0a-aad0-c1bea97c991e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_876905650", + "DeviceId": "ec7a8a71-f95f-4c72-b512-d6ce92c37c30", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "867dd221-27cb-423c-809b-41a24340f0c4", + "TenantName": "Tenant-867dd221" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229174963", + "DeviceId": "b246f48e-4dab-44a5-a994-e0780948b783", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736008834", + "DeviceId": "0c28b255-e000-4c9b-9f60-69e39ef666cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_243838146", + "DeviceId": "55f1e248-641a-403c-a569-f417aa5f8a07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494418082", + "DeviceId": "f88af1fe-d3eb-480a-b28c-4981dd6aae27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969649199", + "DeviceId": "ce49aa03-d277-4f47-ad82-8935a9bc4b17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_619652806", + "DeviceId": "dd111b34-b96b-4953-a9ea-97ccd3890c3d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "039afb71-9a91-4f9d-85ff-bed905f7e1fa", + "TenantName": "Tenant-039afb71" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771057412", + "DeviceId": "ca960cf5-d7e3-489b-b77c-ef4c1f12e8cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_941260482", + "DeviceId": "a89aae47-4c7e-4aed-a747-05bc8fe6ab0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_792438956", + "DeviceId": "c0b513b7-27ac-44eb-ae6a-e1d468a4923f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515503498", + "DeviceId": "6489c896-6d5d-4b9c-8ea0-8d6620a42191", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_990178343", + "DeviceId": "2af7079f-3c73-470b-b26f-7e5eb5913f7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_354561780", + "DeviceId": "55fe2e08-49c7-43e5-a0c0-cdc091529782", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "358bd889-5898-4831-a81a-a359719ec9b2", + "TenantName": "Tenant-358bd889" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144726962", + "DeviceId": "67468dbc-115a-423f-a75a-fd4c206b4bd2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_502843057", + "DeviceId": "424f1b78-c493-454b-88e5-3dc43db4abde", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_871651182", + "DeviceId": "fe29b05c-fbe3-474c-8436-5504c8097844", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612550341", + "DeviceId": "479eac41-082e-483d-a386-f9e21f739cd2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977099766", + "DeviceId": "341f6270-76df-4ba2-9977-4b8540b097ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_907660443", + "DeviceId": "ac4fcfee-e352-4942-877b-45d9b1bea50b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a681e217-149a-4b06-9b8d-a048bd7fe753", + "TenantName": "Tenant-a681e217" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184386420", + "DeviceId": "5e28eb5c-a5c6-44d6-bdb7-b52b0ab1e472", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360744630", + "DeviceId": "449d85dc-e4ec-40f2-a202-01c57bf5c708", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_537313493", + "DeviceId": "fe54e778-3452-4c1b-8499-e816594c291d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_101081294", + "DeviceId": "95a943d6-61a2-41d0-a49d-273f4e29d387", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681042563", + "DeviceId": "7d19c954-e14d-4b5a-b260-0d60ad28a394", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_173495088", + "DeviceId": "ca5fec1e-0f35-476f-baee-717de6dd812a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3a398ac2-b53f-4c26-a93b-0b0ee5e81f41", + "TenantName": "Tenant-3a398ac2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_385396544", + "DeviceId": "10295e48-7ac4-4eab-8422-0aaefaa66f30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176355280", + "DeviceId": "18293ebb-fd7b-498a-88f6-0ea566a16c63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_377755927", + "DeviceId": "107594cd-2086-485b-8082-01730da04630", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701360096", + "DeviceId": "1314fb46-73a0-47a5-81ef-2d647d34d0a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553436324", + "DeviceId": "18d2a450-5909-4170-a425-cbb0a22b7add", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_645371173", + "DeviceId": "937da274-73ae-455e-880b-b2e7cdf80e01", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d2fc3ea-5b16-4f67-94e7-74fe7d900232", + "TenantName": "Tenant-2d2fc3ea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_829809615", + "DeviceId": "66e910d4-b4c7-44c3-8fdb-7ba4808e05ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768802081", + "DeviceId": "1d89eb8b-4b32-4dea-aa4c-1d1ea356628c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242020815", + "DeviceId": "0cdf3379-b271-4840-873c-8cc6618d44c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644565548", + "DeviceId": "047c32d6-dac0-47fb-be6b-a8742a203180", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693958790", + "DeviceId": "a3aec092-bde8-4e95-b2ab-5cdb06709a9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_161965842", + "DeviceId": "28a9a4d8-c04d-4981-ae2f-3f5de156e7c9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0f206357-5821-43f9-9d3c-aeeff9cabb4b", + "TenantName": "Tenant-0f206357" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382541884", + "DeviceId": "8ce4079f-4f07-4dce-bb39-3f3c776a77f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200615320", + "DeviceId": "58c7dd4c-b258-4e9f-8fdb-fcb5d54c1bca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257812822", + "DeviceId": "7741a273-e60d-48b0-8708-facdd36e5e7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_849607154", + "DeviceId": "87a77cda-5a51-423b-85d2-e302d57bfba6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_285968966", + "DeviceId": "dc3f756a-02da-44b5-a043-0295b5beca55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_289017373", + "DeviceId": "efc5166d-e79f-4fe6-956d-efe638cb0264", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7f791a9e-ebdf-4026-ab60-9899c85b6761", + "TenantName": "Tenant-7f791a9e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765984206", + "DeviceId": "49d10a01-bcd1-423e-b551-cb80d59a180d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730009406", + "DeviceId": "38a2b7bb-2deb-4d13-a6c1-eabc0475268c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896669270", + "DeviceId": "95bfcf6b-7a2b-4404-93c1-793489b13bd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_891940379", + "DeviceId": "533d16af-f5fb-47f7-8160-7aebe8fd96db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_587596681", + "DeviceId": "b6caba11-90ff-4cd1-80f4-743a60e65ef0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_649386065", + "DeviceId": "c4ed4721-1de4-4b7d-a621-eef0aaf0454f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9706bc84-6840-44b8-a564-83f463cdd7c0", + "TenantName": "Tenant-9706bc84" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410649511", + "DeviceId": "b75d1df4-958c-425e-b822-0ba4a064c93d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862986505", + "DeviceId": "39a9e428-665b-459b-9c6b-57dd05161ce1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_346464967", + "DeviceId": "058e71ec-3f51-47fc-8651-8e1f1e9393a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370243289", + "DeviceId": "8666cdbe-2421-4ebf-b952-cd36801fb506", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808600468", + "DeviceId": "bfee6c33-d647-4d76-9426-0e3368505fc9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_256792330", + "DeviceId": "12ad373a-ac90-41d7-8555-ff5b06352fa0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9fe16918-12d1-41e8-afd7-fcf091d17bf2", + "TenantName": "Tenant-9fe16918" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_240849499", + "DeviceId": "964d4eda-0c79-404c-bdce-1a116d39207f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681706005", + "DeviceId": "2bd42a3f-33ec-4ff5-8753-7ce9e3da17b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188356090", + "DeviceId": "d35bca82-86cb-43ee-a423-adf4a5c2404d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467753262", + "DeviceId": "8540deb9-425a-464f-8c88-6490dc7af0af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_441432238", + "DeviceId": "f769420c-1bd4-4689-a045-54017cea6044", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_281787483", + "DeviceId": "d1fdcfb2-1de8-4099-944f-f1da6b832ee3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7d7a3dd-3c14-4a0c-8ced-ec5de6642ee0", + "TenantName": "Tenant-b7d7a3dd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813569214", + "DeviceId": "7e64ad19-a1e9-44f0-b269-d0af257e6f97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556512627", + "DeviceId": "99f57c53-bdda-48a6-90d4-69b340d9de4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966100329", + "DeviceId": "8ce4d177-2004-4aab-b730-e926cda5d254", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596394670", + "DeviceId": "3017b0dd-bee7-4703-8ce7-133703f827aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_605669013", + "DeviceId": "b28c425f-d295-495f-8e7f-5055f8a64fde", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_187723951", + "DeviceId": "6282c1aa-ed75-49d7-a85c-92677f93a20d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab182f85-8220-49ed-84bc-35db39c64e69", + "TenantName": "Tenant-ab182f85" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906614216", + "DeviceId": "c220e819-c108-4fa0-8de5-35d175c25dc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891095871", + "DeviceId": "b6989406-7e63-4079-a58d-e5007f04c65e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110549729", + "DeviceId": "8a9f4d4d-be49-45b8-b8b8-a39cca0f3b75", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250401154", + "DeviceId": "5572566f-b379-46e7-a1b3-0f1f4aa87606", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321603918", + "DeviceId": "daaebf38-44b0-40c9-b67d-d50ec177509d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_141976813", + "DeviceId": "1fccbbeb-1c6d-4ef0-b877-b520088af577", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7ee77125-52a3-4873-9b0c-c813b830abf9", + "TenantName": "Tenant-7ee77125" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242881739", + "DeviceId": "5b36db7c-70c8-48d1-aded-058f824514ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272604961", + "DeviceId": "35c806e0-a3e9-4de1-af00-4536ea17961a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_716464712", + "DeviceId": "0b7122aa-4f76-4974-98f3-f3c82b7d269b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553479137", + "DeviceId": "da5ae65c-493a-4b79-9fa3-df006941ec0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324855599", + "DeviceId": "83b1301c-da4c-4461-8697-c10b247707ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_989219728", + "DeviceId": "d1081e2a-7dbf-4111-ba4b-57962b310c82", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "18e72a0c-ba11-4c73-8cf1-af01dc3d9915", + "TenantName": "Tenant-18e72a0c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278479502", + "DeviceId": "fc8a78f3-d584-4c13-bf6b-51e5edd6aa98", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808712855", + "DeviceId": "1c6b34fb-4d23-4d51-b2f3-324d5c14ad34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547912322", + "DeviceId": "b9af6843-07d0-4cd1-9447-02587ad18a0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781906366", + "DeviceId": "d2c3c791-f8d4-49f4-bc60-2485e680609e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_980358669", + "DeviceId": "c22e619e-9a09-4d06-8a45-3ea2f97ee004", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_712890518", + "DeviceId": "b98a5bc0-37f3-4eef-99d6-e0979ba3e15c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4144bce5-0759-4647-a0fc-dd34d0bdb1a2", + "TenantName": "Tenant-4144bce5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400954479", + "DeviceId": "a3115a6a-717e-4ee7-8217-3d6b77e9ec1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120192274", + "DeviceId": "3de454fe-28e0-4ad5-851a-a5c022b89b4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_871592602", + "DeviceId": "699bdfd6-25ac-45a0-9b5e-98cf178e8cee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_560740047", + "DeviceId": "01a73078-4aff-4e63-95b1-e2c0f214af53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173686051", + "DeviceId": "c1708cb6-df84-4cfa-aef2-43fa308984cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_387909544", + "DeviceId": "adb752d3-c320-4efc-9554-76f2fbb62be3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a71e3b0-98e3-4e38-8807-c99882b19525", + "TenantName": "Tenant-2a71e3b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_607836314", + "DeviceId": "b8151280-fdbc-4d70-96da-de5c5aff31be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102995053", + "DeviceId": "e50571dd-c739-46e4-a02b-1b63840738eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993851258", + "DeviceId": "d70e59d2-3bcb-4d50-a46b-8f62759f96f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_162845470", + "DeviceId": "379449f3-9715-44bf-adbb-562a8e59af68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488315460", + "DeviceId": "cb39a9cb-915e-4ff0-8616-7c8dbebb0417", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_237260392", + "DeviceId": "6fa80018-e4bb-4015-bddf-e62fed23e1be", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e72a5b7d-dcc9-42f3-84dd-cb1a813b661b", + "TenantName": "Tenant-e72a5b7d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819119987", + "DeviceId": "abbf194c-a0e4-4e4b-97b1-d6670022f02b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914574897", + "DeviceId": "587007f7-e5a9-44af-8021-e5989b1b4a0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854122867", + "DeviceId": "c3ec8435-de2a-419e-a56d-d80a1f3fcedb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425418235", + "DeviceId": "be86e545-495e-4939-9b8f-40d9f6a09602", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_460920325", + "DeviceId": "37c0c54c-8b04-4220-9693-12a115123d2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_851381853", + "DeviceId": "b154fde9-32c2-48d3-9a9c-bf650b0ab7a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "004f59bd-64c7-4189-a98c-d17a6800b466", + "TenantName": "Tenant-004f59bd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333709041", + "DeviceId": "4f04d8df-8a10-43e4-b492-d43393804689", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724299402", + "DeviceId": "156b76ca-6d26-4314-bee0-0c528ce1cb3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_318746765", + "DeviceId": "99dd99a0-b9ac-44ae-8346-59abe54a1bac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570089706", + "DeviceId": "e850f26c-ff76-4d70-9720-5223c8336a3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414997202", + "DeviceId": "b1fe7388-b1ae-43eb-9d99-c8a2efcaa3cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_563499137", + "DeviceId": "b1b382e0-5cb5-44f6-8930-cdb3d33d3c72", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf768ba9-c422-406c-ae35-2bb887b486e6", + "TenantName": "Tenant-bf768ba9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_170956720", + "DeviceId": "673dae15-e806-4adf-a121-1616fcb5436b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403365821", + "DeviceId": "e9c80cae-2655-4a2d-b012-080d66e2bd68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_355936708", + "DeviceId": "18d3c4c1-b5e3-4b8f-a0fa-aee092d22540", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727912046", + "DeviceId": "680f6cce-a5d0-4c7a-b43c-cb031d213b36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247861912", + "DeviceId": "cd496545-19cc-4aef-83de-338fed521140", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_963622095", + "DeviceId": "f7c40e2a-4b59-40a5-a740-7bc1aad5989f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8f9a3c39-f693-4424-a0b9-1b41903779ab", + "TenantName": "Tenant-8f9a3c39" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374353619", + "DeviceId": "542a4e7b-9613-4674-be1e-5e62142b7900", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_792032144", + "DeviceId": "a719b0f5-1a83-4bd6-bade-f97ffbef152b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_635750844", + "DeviceId": "792e9dd1-67dc-451e-b7ee-dc6db7a0dbb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907619714", + "DeviceId": "ffe7a123-eaa0-400d-b1af-ea58fbc64106", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_835238775", + "DeviceId": "c643aad3-18cb-4eb6-aa1e-32ec0ae08863", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_583298093", + "DeviceId": "b0832af2-3a2a-414a-9ddf-4281ce1c4ff3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b15198e6-dce2-4ae6-89f5-da75558a769a", + "TenantName": "Tenant-b15198e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_321153526", + "DeviceId": "0aa2961d-c7a2-4058-bce7-47188930b7d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_512012569", + "DeviceId": "9ad0bf84-2b0a-4d43-9a9f-d1ce58055e8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110402718", + "DeviceId": "0e32db51-2c69-4cc5-b230-81ce9820b83f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_466742931", + "DeviceId": "a264d1f4-49ba-4efe-ba26-b21cde4c61c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136880225", + "DeviceId": "d68368ba-a022-4d09-977e-6185e4027438", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_490555901", + "DeviceId": "5f7b4ff2-e0e0-439f-be24-860dec4862ad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "651a9b33-600f-44bb-b03d-1419742a9f99", + "TenantName": "Tenant-651a9b33" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345624384", + "DeviceId": "6ce36f8f-d23f-44ba-8968-0b8fac0d400b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301038172", + "DeviceId": "7dd87afe-ede0-4d1e-ba08-b32bf41165d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730795031", + "DeviceId": "43d2a7d5-aa42-44c1-b9f3-400358361120", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995299374", + "DeviceId": "dff11219-2e39-4155-acc4-913abe7e28fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_115347709", + "DeviceId": "018fbad1-c58e-4621-b1fa-bcdfba2fc423", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_448930556", + "DeviceId": "d13e96e2-b1aa-409c-9a89-eab3553dfda3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "57592569-e298-44cc-9991-cc777aa06dfa", + "TenantName": "Tenant-57592569" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255767571", + "DeviceId": "8969e443-62d9-4973-be9d-a78e92eaf1e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371308486", + "DeviceId": "37d26951-cc2c-4540-9fad-8b84f78a60e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574855120", + "DeviceId": "0c8feda3-1df3-4ee0-b55c-b786c42f7f6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608293284", + "DeviceId": "9365e670-5ebd-4163-88e3-23105bcb48ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234207411", + "DeviceId": "63db1381-c7ea-4afb-a6cc-02964bdf77d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_219604405", + "DeviceId": "36d686a2-784a-46cb-b971-ec779353b9fe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e8c47aa7-74da-410f-946b-0cf43b8fcb73", + "TenantName": "Tenant-e8c47aa7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_749475616", + "DeviceId": "9ada1ec5-701c-41bb-9c0e-caf687e5aaf3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248317135", + "DeviceId": "4b1f1cb1-ef4c-4ece-8f84-e4a1587722b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157606101", + "DeviceId": "860984a6-cadb-43bb-836a-5fd17bbef9e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782898911", + "DeviceId": "428b3419-fdbe-4ce7-9178-604df5719101", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868844273", + "DeviceId": "d2f7e34c-16e7-46fc-a6bd-a74ff5fce7ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_142843223", + "DeviceId": "08e59090-0a75-48f6-ac30-15c86b874489", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "771a9ef4-b8ea-4eb6-82e8-0e6a1c669cf3", + "TenantName": "Tenant-771a9ef4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237895499", + "DeviceId": "60e1e98c-1186-48e8-8d1c-ba091e24a65d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_884894594", + "DeviceId": "45e8394e-21f1-41f0-a9a1-5f5235a83d70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206823097", + "DeviceId": "c876837c-606e-45c7-afa6-2c248be1f04e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187347642", + "DeviceId": "eb5effb9-6d5a-4315-bf56-2666aa56da5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961883745", + "DeviceId": "4060edf9-c210-426c-99f7-3b621dd7deed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_785689654", + "DeviceId": "88bd7832-4eca-4789-a428-a404fc93f4c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "21411340-8ed6-446d-8260-51a7ca78f35c", + "TenantName": "Tenant-21411340" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136787545", + "DeviceId": "44347cc6-1093-493b-ba0c-27bd6e3dcbdf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431742418", + "DeviceId": "96c3196b-e12b-45f3-9b36-f0911031849e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965138568", + "DeviceId": "02b5969b-d2b1-4103-ad70-2a2e9bc5dcd8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198758338", + "DeviceId": "0d2d911d-39d3-466c-ae4f-33612b689b51", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656756917", + "DeviceId": "ffda6d23-02b9-4fd0-85d4-e5941bb1ae19", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_642622518", + "DeviceId": "fd1d49b2-1d95-4d11-82cf-4edfc5babfa5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f6d7a6ba-7b8b-4460-bf7a-c941b86e7c98", + "TenantName": "Tenant-f6d7a6ba" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_256106733", + "DeviceId": "151715ba-a0dd-4f26-aac9-e1956f22f68a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851855291", + "DeviceId": "0bc3c209-e5ae-441b-a82b-58a7cf1fb11e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654795767", + "DeviceId": "45cf75e1-3691-4586-b159-0276e1609852", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_823564577", + "DeviceId": "a606dfab-f42f-48e0-b980-02e4b72583c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232524055", + "DeviceId": "37368210-9f56-42a0-8889-0de81224ec1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_624634658", + "DeviceId": "67477e17-149c-4cc2-8a6e-98c263f6e49a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "23011bdc-db85-4f0e-a5c2-d0957446e154", + "TenantName": "Tenant-23011bdc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901495465", + "DeviceId": "df062c99-9ea2-4895-9e93-de403b660839", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317310566", + "DeviceId": "febc82c7-d365-42fe-9ea1-8cea4ee24299", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616809732", + "DeviceId": "b2fd269b-a788-47c2-ac6c-8892e0c82b46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378798696", + "DeviceId": "3ae2af6a-0f40-4afa-bfab-3dec1732fdfb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724472793", + "DeviceId": "d09c1457-a68b-4395-8c1f-7cf4e4090640", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_910693355", + "DeviceId": "391d6648-d275-4440-9fc2-c66fa21bbfbe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ef80a5f9-5a2a-4f9e-ab5b-71689deacc71", + "TenantName": "Tenant-ef80a5f9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888769500", + "DeviceId": "b4a8fb38-fb7e-402b-82f9-fabd9bda85c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661082139", + "DeviceId": "5e8ff69e-a0f2-4532-8e3d-6c14cf99d835", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757597237", + "DeviceId": "c7fab288-96b0-4abc-8de3-a8cfb554792f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210189263", + "DeviceId": "5e9b7027-71aa-42a1-84ba-2f3742f8ebf3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_296565379", + "DeviceId": "197b964b-f7c7-4c68-a996-6a0521cb87cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_503701943", + "DeviceId": "19f3bf8b-2c06-4b92-a7f0-62915f569b18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ab60c40-57b5-4825-9616-055a6e9cf72b", + "TenantName": "Tenant-2ab60c40" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_552816631", + "DeviceId": "4b642727-0380-4b9b-a0fe-5dae1f709c02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786636804", + "DeviceId": "4b452cab-602d-4487-8e37-862ab62779ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714611458", + "DeviceId": "210e6e89-61c1-4239-9251-dc2d94a1d399", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_589123202", + "DeviceId": "90738dcf-1698-4abc-bee1-b5856f82328a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_864031218", + "DeviceId": "74847a19-6229-4e49-9881-5610dd0b2647", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_589226002", + "DeviceId": "1959e338-e139-42da-810f-64d7cee3ec41", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a32fd3c7-7718-41f4-b2b4-649d22f657ce", + "TenantName": "Tenant-a32fd3c7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682392389", + "DeviceId": "8fafa2a7-c507-40bc-9fbc-528b61652067", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_988415683", + "DeviceId": "26b938b1-fabd-4863-8cc9-695ebf2ceed0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896592609", + "DeviceId": "e70a86c6-c206-451c-94b3-c162d24a9cc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148918078", + "DeviceId": "01187ee2-7d51-40b0-9e62-bfa0b07e6298", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454106675", + "DeviceId": "9f7cf139-cbf3-4da8-b8ae-b017d9eec20f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_648299719", + "DeviceId": "85b5905b-1547-4346-b469-40f8ce663473", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b64bf8fb-836c-47de-8f6c-83465aebb78c", + "TenantName": "Tenant-b64bf8fb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345620110", + "DeviceId": "d2963faf-1696-469e-b236-95665940a426", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534171318", + "DeviceId": "5949ea51-2aef-4068-9168-fdad4d37b1a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_783734210", + "DeviceId": "65a40020-5fb2-4a1f-8c4a-4f2d0bd45ba0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659928082", + "DeviceId": "48461fd8-2c7c-4bc2-9656-5e4b64a00196", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_417230042", + "DeviceId": "f3bad1fe-3658-45d9-8a9c-cb595d87d486", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_965250933", + "DeviceId": "b4418622-56ca-4bf8-aec6-81152a987c32", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d74ba9df-3e46-4586-ab71-0963864da600", + "TenantName": "Tenant-d74ba9df" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755263531", + "DeviceId": "da35545b-ddf4-4221-a4d5-1b32d908a449", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697577678", + "DeviceId": "c4ec4959-f32f-405d-98a1-073999c40d68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_404008341", + "DeviceId": "1505abd6-50f6-4e44-a34a-e88bbdaa4296", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694578173", + "DeviceId": "6a1fd623-aa74-499c-ace5-c82c2e1bc302", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956730590", + "DeviceId": "d8205c3b-ccfa-4c47-ab20-57503cdacae8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_202580333", + "DeviceId": "7410718b-9c25-450f-854d-c53b48192dbf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dcc00812-99c1-4ee7-90be-eb770c9d9254", + "TenantName": "Tenant-dcc00812" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_478316381", + "DeviceId": "c388e1ac-fcc2-4db5-af92-28884d1acd94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_995152192", + "DeviceId": "6e9fdb17-d7b3-441e-ae09-95db41ce76ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375397947", + "DeviceId": "c928a541-5812-4de4-84c4-ce9a8ae8ba67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868874349", + "DeviceId": "aa57a143-bae2-45dd-ad13-acde0a24f205", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866523832", + "DeviceId": "8bc3ff97-29c2-4bcf-bba2-57a30e7865a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_154608356", + "DeviceId": "f49a6d84-e640-406d-830a-15468e8aa13c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "46de817a-c089-444a-8078-d36af05cbe3d", + "TenantName": "Tenant-46de817a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487949242", + "DeviceId": "7e69caaf-11f8-4dee-ba93-aba32640edb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212210987", + "DeviceId": "5535354e-eaf9-457a-adb4-229e344975d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299332283", + "DeviceId": "872f60c3-00b2-4330-9b81-e0b1d499d756", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726200631", + "DeviceId": "b3ee3949-870b-43dc-a614-8b65850bc7bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114223191", + "DeviceId": "9c50e19e-95e5-485e-9b22-d5e5a73254a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_803276438", + "DeviceId": "38688621-abab-47f7-b97e-b41571023e68", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f3b536b0-0b4b-41bd-836d-fdf9a87b242c", + "TenantName": "Tenant-f3b536b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646160867", + "DeviceId": "6c7ced75-a964-4dba-bf3d-a7548fba4ef7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443514819", + "DeviceId": "80cde242-aa8c-4b57-80dc-014118ed1587", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_754616721", + "DeviceId": "2f73b5c9-3054-4e65-a75b-eb95956dc61e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_992241891", + "DeviceId": "83fadec7-4507-4ae8-8425-0061b11d5d80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_367454267", + "DeviceId": "2ad2164c-4216-4079-8c87-45d8c42d0a15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_685171004", + "DeviceId": "cd1281bd-a005-4966-8170-2e38cf95a010", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2e53ffce-d215-4812-8f73-2ad80d41e6c3", + "TenantName": "Tenant-2e53ffce" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813035523", + "DeviceId": "84628ee7-5b3c-4026-bb4d-50ddaddfe9d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873513681", + "DeviceId": "7eb187fa-701e-4cea-a447-75f9324742bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534566998", + "DeviceId": "98730748-c5be-496d-bb8b-72303ba808ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947894028", + "DeviceId": "9c5c4998-1820-4933-83d7-ceb3a0d0e99e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674775977", + "DeviceId": "49714ed3-6c40-4eb5-85d7-4ff2adb1c366", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_705712488", + "DeviceId": "58b31bbe-be02-46d9-abe6-79f24253285f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c133acf0-4e45-414f-8c4d-17e70816b6e1", + "TenantName": "Tenant-c133acf0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781297957", + "DeviceId": "159911c6-28ee-4a08-b0bd-3d6da978ac24", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548707701", + "DeviceId": "7b66b423-ced6-4c36-bdfb-b79196890c68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_876898124", + "DeviceId": "39af7a41-a205-4bc8-bb3d-4e9813c6dc63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522305959", + "DeviceId": "adf95e09-9230-4380-bee3-5329f1786869", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897403364", + "DeviceId": "51363bee-0dfc-4a69-aefc-1b799e3100d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_625728879", + "DeviceId": "12157f27-fbca-4bd8-9ab9-7b2acc7fe584", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4a63a672-580c-407b-8609-5f5799151249", + "TenantName": "Tenant-4a63a672" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521465071", + "DeviceId": "3d51829f-f35d-42ff-a7c5-9b68ecb645b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_828516579", + "DeviceId": "cfe2ce6b-d6a6-4041-a75e-94fe62df3a4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456213813", + "DeviceId": "e50ca17c-725c-4b15-8274-c16d88e6a171", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109536933", + "DeviceId": "64fc1548-10bf-4b0a-8e8a-c94c8c70adf3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_336584559", + "DeviceId": "61906a0b-f440-44ae-9665-633cb0753fd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160567604", + "DeviceId": "d6590ba3-ec7c-4d27-865b-95dd3360e4b2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "770b0059-4d3c-462b-82ea-8f780660ccf8", + "TenantName": "Tenant-770b0059" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_960413139", + "DeviceId": "79d07fa2-8e7f-42cf-9b31-0352717df8ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477372247", + "DeviceId": "59558e5a-f42b-41cc-b77f-b5c0f146c45b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915105268", + "DeviceId": "2215bf8d-e835-4826-a004-dd89810b8f05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109310696", + "DeviceId": "10fe8187-4026-4c79-8b86-848f4f101663", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284841369", + "DeviceId": "f2469d27-a114-4462-9492-57e171d01610", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_372310129", + "DeviceId": "31831dae-464e-4032-8072-bbee865cd0a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "73228c7c-e27d-4856-b2f1-144607ce5692", + "TenantName": "Tenant-73228c7c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652897999", + "DeviceId": "1a39f116-a664-4859-8692-95c94cce30c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610311098", + "DeviceId": "f8dc4490-7a02-45a0-8e9e-f993fda1ac68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_236136264", + "DeviceId": "4a55533d-5e46-4043-aa3a-3acc9e309b49", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673924185", + "DeviceId": "f9d9b37f-cd88-487a-9a5d-92f6cf297efa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_478206869", + "DeviceId": "10ba3cc2-dd7b-4ccc-a218-d2019ff9c940", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_207742869", + "DeviceId": "a53fdae9-7601-40b0-9dbf-0ecd5a9cb555", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "31afe12c-93c6-45ad-8e20-83ce2b40d8a7", + "TenantName": "Tenant-31afe12c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944644705", + "DeviceId": "1ffa3d20-dad1-45ab-9a49-52d3444b3e72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229923779", + "DeviceId": "7c6a369a-f3ed-4de4-9808-f63eba1b83d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364681235", + "DeviceId": "d9d70603-891a-41b2-b7de-92ffd55e5acd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_205505155", + "DeviceId": "446c451d-613b-45d0-9b55-f9ffbe85310b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_811546104", + "DeviceId": "9ce9beb2-00c3-40c8-b01b-96898b6f470a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_638774875", + "DeviceId": "5c7551ee-ed15-411e-a1f7-3c75146a3014", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a0c64cc3-bcaf-484f-b258-90d9a2df7b92", + "TenantName": "Tenant-a0c64cc3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_191020633", + "DeviceId": "e2983bb3-3d44-4f5b-ac9a-635c0da8dc4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644070332", + "DeviceId": "d1d599c4-d3b5-4371-b3c4-1eaefc2873e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647868686", + "DeviceId": "4b948c79-855b-4f8a-81cd-aa02404d6751", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_144320312", + "DeviceId": "44d09c7c-6e04-43bd-b471-536cf56a6ea7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_946559678", + "DeviceId": "97032f4b-cd01-41dc-a257-682e0170572a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_773480802", + "DeviceId": "4045c65e-c71f-4abb-b05b-4d3bbe8b3c1a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2f889c2c-22fe-411c-9bb1-503f3206e8a2", + "TenantName": "Tenant-2f889c2c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718026167", + "DeviceId": "15381ca1-212d-4c7a-8eec-eb1ff1191228", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354091735", + "DeviceId": "f076f3f2-49f8-4c2e-83e9-6cf01835804b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700301770", + "DeviceId": "9741720a-3ae9-46f1-960d-9fa4afc4b0ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962748416", + "DeviceId": "3e2a1132-f998-4821-ac7c-cb45245fd2ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_623677701", + "DeviceId": "641f3f2e-c8c7-45b0-a3fc-ecfd467626ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_920747823", + "DeviceId": "e1326d0d-077f-4353-8429-b09c907977f3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0a174f87-3fd3-4b68-b3df-a672d476cf8c", + "TenantName": "Tenant-0a174f87" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580194641", + "DeviceId": "f7b7f95b-858c-4d36-b175-f69e9c334522", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134173937", + "DeviceId": "0d150350-a6ed-47f0-b017-b6d31740d98d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177950795", + "DeviceId": "358c57a5-2ade-422a-b0d4-312244e905fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658695409", + "DeviceId": "f476f3df-9fdc-4eba-9ce8-928844d86255", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674640558", + "DeviceId": "63c52cab-38ce-4106-857f-c41595ed76a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_284799137", + "DeviceId": "b07347a6-bd0f-45f5-8f5f-9eafb2cb451d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0d63979-4249-4fcf-9c96-d2e07b72ec14", + "TenantName": "Tenant-b0d63979" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288027547", + "DeviceId": "64f086f0-c483-49e1-b5e1-5689be88200e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905896820", + "DeviceId": "8ccba0aa-85bb-4821-bd16-75f81497bdc4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552608879", + "DeviceId": "e1bd5d43-b415-4012-bcaf-cc5fc1cbf9aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608308398", + "DeviceId": "6561261f-f174-4c2a-b4bb-1d05f1e21079", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_402527863", + "DeviceId": "eafab4be-4012-4192-9ce4-41f87334a988", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_522106949", + "DeviceId": "77f92998-07a2-4b1a-9c7a-9ba937e83abd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "41df3be6-e731-410b-a916-11084288a8cb", + "TenantName": "Tenant-41df3be6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872582883", + "DeviceId": "10538a43-84b4-4daa-a0c7-0951bac9e2e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484557380", + "DeviceId": "1b604c57-e721-4785-b8e1-38b7a9061138", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_372340679", + "DeviceId": "383e7c0b-4159-4778-a3c3-4c0b7e3c93c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_967326700", + "DeviceId": "d1a86c4f-cda3-4477-9736-bb544b5e007b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_237356788", + "DeviceId": "bba68055-8d3f-4099-9e4f-da7947dfd8e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_706709521", + "DeviceId": "b297fef1-5ebe-4f0c-9fc5-d48ce6e89a8c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d3bcabad-fe20-4a0d-8652-4b4e91761e5b", + "TenantName": "Tenant-d3bcabad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_222842778", + "DeviceId": "ac17c79a-381e-4247-9805-97da9aceb357", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329759904", + "DeviceId": "0beaf737-15ff-4af4-a761-835986f5527a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173860345", + "DeviceId": "ae74c7a2-f154-4697-962c-e5be1a8bffbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554545859", + "DeviceId": "83a16e55-c420-4425-b1b7-792e85616323", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993084148", + "DeviceId": "f54ff734-ea01-48cd-92cb-322d1f255073", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_488254391", + "DeviceId": "c61581d1-308b-4a7c-9775-31f6141d066a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "12961d3a-42af-4ec9-a950-d1ede4084f41", + "TenantName": "Tenant-12961d3a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_174597985", + "DeviceId": "ade38626-4777-4b42-ae5d-7b4e6172a330", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_725205293", + "DeviceId": "4f8d2840-7296-4a21-ab65-91d88914d5c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860520973", + "DeviceId": "c40211df-4a69-4f45-9852-48ce17badd77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222802516", + "DeviceId": "cbe385e4-aad0-410e-a3e3-1a8eb09af127", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_134202636", + "DeviceId": "b499da69-41a8-4767-b902-e75ae838c9d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_749230158", + "DeviceId": "40816b9f-0d82-4642-bf89-6849c3d19485", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a57573b4-469f-4612-b601-b57d265b077b", + "TenantName": "Tenant-a57573b4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567770060", + "DeviceId": "8097f08c-65fd-4b4c-b09f-c5295806112c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314483376", + "DeviceId": "50298bbb-9e31-48fd-9734-eb9385345f04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808350172", + "DeviceId": "4a4ecca0-3ef0-4ead-8481-862f6f23d987", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501242432", + "DeviceId": "fba09e3c-a9ed-4058-9944-d1fc97e2e6dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553962197", + "DeviceId": "15f84628-342a-4b2e-a6e9-49efee0a02c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_411975121", + "DeviceId": "665e3dd8-d291-4c95-b479-584c726d610c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b9035ea7-2a2b-4ea5-a9c8-ff87d7270564", + "TenantName": "Tenant-b9035ea7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518427481", + "DeviceId": "fa1a9a5c-855f-43a5-bbd5-a52292b0d9f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839155175", + "DeviceId": "7df0534c-dee4-432f-a0fd-1e5fe1bfb08e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234284761", + "DeviceId": "353b59e9-327c-4d8b-91dc-a12bdb36740a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400187029", + "DeviceId": "43e27963-82ae-48db-9628-8d08deded724", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_481946973", + "DeviceId": "e0381ce9-49f8-4fc8-9b41-b5bec83061ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_469561882", + "DeviceId": "ee8899d4-b841-4484-a92c-c756b2782180", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1ea6f80c-0e9a-4247-aef1-6b1f022fd960", + "TenantName": "Tenant-1ea6f80c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391276350", + "DeviceId": "a6840eb7-4896-4cb1-9cd6-50bfd533e40a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281235561", + "DeviceId": "e82996ba-0f11-4e61-b479-83419b2cc41b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_245114011", + "DeviceId": "6dd506ea-1d32-4eff-8c06-f0e25c407220", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952216250", + "DeviceId": "73000836-ca40-4ff6-ad01-3c8826818a67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429062866", + "DeviceId": "0d1da26a-423d-48cd-85aa-f66a2c6949c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_236290647", + "DeviceId": "2fc69f49-c6dd-4b4e-9c05-11b3b828aebc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f617cef3-6aa4-4ebe-9df4-fb33da132649", + "TenantName": "Tenant-f617cef3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_297462164", + "DeviceId": "94ff6eb6-5506-4099-8f30-998f3341633f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_852663588", + "DeviceId": "41334184-35a0-45e7-a1df-c87c4dfa5faa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323381654", + "DeviceId": "aa7949d5-1df6-402a-9efe-d2f7a9b86625", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527930310", + "DeviceId": "c272a350-194e-454e-ad99-f8c07df43a05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_922854191", + "DeviceId": "e0292c63-5d1d-445d-af0b-744b8c74a213", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_681231700", + "DeviceId": "f36d681d-2127-4e2c-992f-b97a1d5b6e2c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "13784781-d9ec-42e3-9a6c-491056401638", + "TenantName": "Tenant-13784781" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_464504252", + "DeviceId": "3af308fc-0014-4357-a1f8-03960bd2be25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553638349", + "DeviceId": "40fea2a9-4b7f-4d54-b336-fbb42b0b8bea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173933875", + "DeviceId": "42e770bf-6b71-4633-b225-7a6f5a63958f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357482010", + "DeviceId": "2e3ea856-a989-4259-a833-93021e01f2d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_494026021", + "DeviceId": "a4e27498-d28f-42fb-86db-d6e0eb74dca1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_906587512", + "DeviceId": "e98f8501-14d1-492b-a405-1d4d392b174a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "35e2a1c8-f555-4474-8d9b-b675ae421cf6", + "TenantName": "Tenant-35e2a1c8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788993963", + "DeviceId": "a5e9cfbc-c773-4e86-881b-728d305bfe2b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136795561", + "DeviceId": "8678e8d0-6044-497a-9110-832a85bc5759", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933766460", + "DeviceId": "7b7cded0-be58-4113-be77-d79149a84af6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_151097405", + "DeviceId": "caefe3f3-7fe9-45bb-b0e5-e2ff6aafe7dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911960768", + "DeviceId": "960c2940-172e-44d1-a7f3-4646a3e03cd7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_347691887", + "DeviceId": "25916fbc-8b5c-49dd-94cd-85f8e085f087", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6d5280c2-e21b-47d8-9f11-d2b37c71b35d", + "TenantName": "Tenant-6d5280c2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126741262", + "DeviceId": "98c09651-a597-47d2-9635-75c1dbd6640b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354821134", + "DeviceId": "711e5695-91da-4c53-ab5a-0648735b87b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_156058444", + "DeviceId": "84784d64-b680-4726-92ce-c109fd50b4f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128017339", + "DeviceId": "8e179b37-5df7-4f93-a646-6c5949cf8dc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619024734", + "DeviceId": "3a0cef7a-5f62-4e79-99da-d51e6fc28305", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_242171391", + "DeviceId": "520a1a77-64f2-4d58-b1d7-fd605a418d82", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a5b71e47-9568-4efd-a53d-d4b6e34216f2", + "TenantName": "Tenant-a5b71e47" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374621588", + "DeviceId": "14ad4e0a-2100-4152-8aa2-69c40fde72bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925175650", + "DeviceId": "bc0d16bd-ff2e-4506-809b-209da575ba3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172934912", + "DeviceId": "d13f39fa-8b0e-40b2-a57f-7fe176cbe430", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_449337713", + "DeviceId": "3affa908-b0e2-4496-9858-b569e0b30bcc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155881520", + "DeviceId": "449c37bc-bc95-4b4d-adb8-422825a700bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_622812015", + "DeviceId": "522089b3-d78c-463f-997e-815d56777fd9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4c4800bb-3721-4915-8bc7-4938d9d9383d", + "TenantName": "Tenant-4c4800bb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900785255", + "DeviceId": "d6d3c641-1c28-42f4-a46b-543181a7ed03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316549185", + "DeviceId": "dd199718-8332-4a5d-9f4a-03a7452ee371", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559348501", + "DeviceId": "94055f8c-24d7-467c-821b-779835193544", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826950483", + "DeviceId": "eaf36924-9699-4d38-b319-ce04eb803789", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727991148", + "DeviceId": "1b6768c0-b6bb-4854-8ed7-6c0075063fc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_780747917", + "DeviceId": "f65d16a9-b743-414d-b9d7-eeceef93e19f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0f849f81-f32a-43af-9b76-c285cd057612", + "TenantName": "Tenant-0f849f81" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_555101673", + "DeviceId": "e9b0e0ca-ce44-462e-b345-2f8c4db52382", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_337076733", + "DeviceId": "6c65bd27-ca2a-448a-8d88-94b00815b924", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469202151", + "DeviceId": "0fb7a7df-2001-464d-80f6-62a1670750c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164706735", + "DeviceId": "5dde0a2e-1536-450e-9419-da1e10f3e8fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_610546116", + "DeviceId": "39b7adfe-38dc-4b54-af9f-914980aae0b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_819345787", + "DeviceId": "ccb95b67-d15d-4a00-bba9-c2c6a8987212", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "51afb005-caab-4894-b413-b3d4174c1e20", + "TenantName": "Tenant-51afb005" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545862172", + "DeviceId": "b2869d7d-9330-4a64-a6af-0db49f63fd78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151150191", + "DeviceId": "334d4626-aa9b-4ac4-a42b-aa8b4aa47735", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_221198776", + "DeviceId": "bb14d39b-e236-4747-98e9-935f862e567b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933334713", + "DeviceId": "ee6134e3-dbf1-49d3-8a7f-aa5bb048f42d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109781861", + "DeviceId": "7d6700aa-9333-4bc1-bd68-dfcb0999b900", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_344598338", + "DeviceId": "fd1ece8a-7f7e-4b72-af3a-f849d2472aad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7ddd288d-0bee-4b75-84e5-57d46cb0bff4", + "TenantName": "Tenant-7ddd288d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993194834", + "DeviceId": "73549afd-c7ea-4dca-bec4-6f7a0955ee3a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757567784", + "DeviceId": "523e2bd9-1fcf-4c58-b165-e77774a39dbf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_758342420", + "DeviceId": "5ee0c36e-aae0-4b6b-87eb-032308f76c8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841012485", + "DeviceId": "b4b6b28f-9f6d-4b98-9e2e-fd589aee7912", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462156480", + "DeviceId": "95d697fb-af28-4b57-b226-836587acd76b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_540175663", + "DeviceId": "6c6b0071-9fff-43a9-b3df-3bb416ddcada", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9a35a6b2-c186-4dd3-b37b-8050b3fb056c", + "TenantName": "Tenant-9a35a6b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491140290", + "DeviceId": "f3fb6d63-d9f3-4a60-9a19-5b57a238456c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397051196", + "DeviceId": "e0cb362e-cb0f-45d1-80cb-a015b664ef52", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726707273", + "DeviceId": "aff6ead2-06ed-4f7a-b647-d3562462bfc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405094762", + "DeviceId": "2c0dac80-83e7-464e-bb48-67167820dcc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609786853", + "DeviceId": "a39ab265-2a9f-4076-a1a3-dca4369e3eb0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_628043862", + "DeviceId": "2903f44f-c479-4f6c-8f22-330e4fed7286", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9823017e-71ac-4870-a170-171f9f63a441", + "TenantName": "Tenant-9823017e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774529014", + "DeviceId": "f7719f8c-d225-4eba-ad87-ea38019fb528", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_156892355", + "DeviceId": "e3ab88ec-01bd-45be-b71d-9e4d08d6a331", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_513395524", + "DeviceId": "b9979f1f-4cce-4d80-9290-78c960b9a071", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_774456356", + "DeviceId": "7bb9e534-4282-4d72-917e-7ae6a2aabc88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223244306", + "DeviceId": "83d7b6e9-84c6-4dad-bfc7-64fcff94caab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_916408317", + "DeviceId": "fa97d258-02f3-42f1-98f8-0a98e4bc17e4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b76946af-929e-4685-97b8-5af6e8f245ea", + "TenantName": "Tenant-b76946af" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881860482", + "DeviceId": "cd7d9f54-6ea8-46ae-9839-f4a18efb5a5a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980429149", + "DeviceId": "4997d784-7bb3-4728-b043-e5c54a4c541f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414914584", + "DeviceId": "aab76852-7870-4f22-a303-f61518232d5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_958761112", + "DeviceId": "dc7f1dd6-455f-4bd5-adab-4ca36ab6bb02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_789002026", + "DeviceId": "b20cdf10-2a3d-41bf-b8c6-3a6f32218cd3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_335050182", + "DeviceId": "f790f951-5a46-4e2f-9f80-aca94736d1cd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e47e0df6-21df-442e-b138-9b5e1330ab32", + "TenantName": "Tenant-e47e0df6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_497789170", + "DeviceId": "3db6ea47-c670-4357-bb6a-c278df2ed1f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521488148", + "DeviceId": "f0def8fe-aa6a-4523-a3e5-fe9383e476ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787243699", + "DeviceId": "69273f66-d14b-485f-9373-613809eb6b44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227623016", + "DeviceId": "b5a5cc44-f160-42c8-b8bf-40ffa6aaa37c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878856917", + "DeviceId": "00a3a4dd-9338-49c6-bfc2-b0f0424cb7e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_747441925", + "DeviceId": "d8fc5e57-0d29-438c-a44a-fda82063f25d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "528de142-d4de-4e8a-a7e7-f621e2a15eca", + "TenantName": "Tenant-528de142" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428194741", + "DeviceId": "fa040167-47f8-4628-bb8a-680223b898a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424494002", + "DeviceId": "6f580514-24fb-43e9-b01e-f6e4233ca779", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429603226", + "DeviceId": "19aa3ee4-816f-4aff-a62a-f667e484ad2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107547607", + "DeviceId": "48ce683a-2974-4baa-a2d3-4f2ac41520d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399285682", + "DeviceId": "733134bf-735d-4554-ae9d-36a0e811b55d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_513354273", + "DeviceId": "8d8883a4-8f29-4f53-92d1-063fbd0e4b9b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "163dc2e4-2af6-42bb-9c33-9ead88f7c96e", + "TenantName": "Tenant-163dc2e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_782130286", + "DeviceId": "f207cb2c-2439-4f32-b6d0-1f8bde46e1ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457516845", + "DeviceId": "58d9aa7b-eae3-4284-bc5a-ac077370f8fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146404445", + "DeviceId": "41751ebb-bf52-4c97-ae2b-bb7f47189675", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220664996", + "DeviceId": "3288848c-e1b1-4be7-9eff-cea935458f81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233979761", + "DeviceId": "cbd6b1a8-1e46-47ae-a327-950b657bfa09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_801305664", + "DeviceId": "38c3d22e-4ffd-4578-b4ab-f1273fafe4a4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a958031d-ce58-4790-8407-a35d7219f4e7", + "TenantName": "Tenant-a958031d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184609971", + "DeviceId": "32836a4e-571b-40cd-a8e8-30db3eb49e9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417036048", + "DeviceId": "d31ddc96-828c-4144-9525-cc51a10db8c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_367732355", + "DeviceId": "87c0c15d-4975-4dfe-9ed8-9f2a263e91dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831820674", + "DeviceId": "7faba03c-6b81-4b97-add4-98334688f7be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694165023", + "DeviceId": "7ea16439-07ab-48d7-923e-bae224b70c20", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_966642345", + "DeviceId": "2a6f356e-d62a-4803-a6f5-b04e1d5b8562", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7c49e590-80e8-41ed-860d-754134b1a471", + "TenantName": "Tenant-7c49e590" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682775342", + "DeviceId": "d69e1684-2839-4423-a53a-3f8ac4966d80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546402123", + "DeviceId": "6e3da965-e8ad-4abc-adf3-815a2c6c1770", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-3", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_832746034", + "DeviceId": "1445aba5-d521-4267-a6f2-8e88fb6ac285", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550118363", + "DeviceId": "180552d0-1311-483a-a8f0-e1e3b7a5cd99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952111818", + "DeviceId": "7363c0dd-ad6e-4a41-9f10-a83f7c6f44dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_274706866", + "DeviceId": "b82547fd-edd2-432e-b7da-a61770224503", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c5a5ff1-0d29-40ca-bfa0-18ccf61381b4", + "TenantName": "Tenant-1c5a5ff1" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261103.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261103.json new file mode 100644 index 0000000..4afadab --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261103.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575320394", + "DeviceId": "97241285-ee00-4703-abc2-c6c8e4770d79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789126002", + "DeviceId": "e40ee51b-1022-4d6e-abaf-1622026a1b81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182053758", + "DeviceId": "fe2ed1d7-6ee6-4b99-99ca-b6c7c69c95c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911156100", + "DeviceId": "92a53db4-884f-486f-8afc-0cf7716a3926", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_779779532", + "DeviceId": "9ae0245b-57c0-489b-8a84-e5c9548db98f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_622971554", + "DeviceId": "96da697e-9406-4cbf-87a1-6d6f6a2b1353", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "45faa23f-16dc-42b9-a6e3-904e679b6df0", + "TenantName": "Tenant-45faa23f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_799308931", + "DeviceId": "e3d04e85-5644-4ea3-b0ae-cedf223eab2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944798527", + "DeviceId": "f2876b95-ac7d-4b16-b818-de88c0cdfe5c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951633156", + "DeviceId": "48658dae-0ddd-4246-b3c4-f75d838d98dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_830836420", + "DeviceId": "86ea2f4f-f23b-41a0-a12d-95c4812fecd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462502067", + "DeviceId": "471985a0-91f5-4fb3-afcd-342be7f3552d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_709865841", + "DeviceId": "33dab373-9302-4726-abe5-e8a0805cfd84", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0dc8fb03-4d2a-4ba8-8b40-edef549de7c8", + "TenantName": "Tenant-0dc8fb03" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819112248", + "DeviceId": "fc755992-6bbb-4384-ac99-808f7e09aece", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471375045", + "DeviceId": "7589b13e-8153-4633-8dd6-27a4e9dbd1ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_324001497", + "DeviceId": "90648704-1227-4c81-86e1-cf13033a8964", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_905238204", + "DeviceId": "58bb9ef8-fb26-42e8-86d8-f9549e307c8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_773447295", + "DeviceId": "27067707-8d34-4ca8-8209-4646d6ea9d82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_129570307", + "DeviceId": "8267e59b-c7d9-49dc-bc76-699fe01b93f0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cdba5805-5583-471e-b722-784a34c71a5a", + "TenantName": "Tenant-cdba5805" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108936622", + "DeviceId": "81069989-c52f-4752-917f-747f7424ee9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242477081", + "DeviceId": "48f05bd4-622b-48ed-b966-13c512badd16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598696521", + "DeviceId": "8446b58d-4dcf-44dd-a213-9c38850b86d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360230678", + "DeviceId": "4d4b1560-104c-428b-898e-55bfdcf86adf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193999340", + "DeviceId": "5d8b5b54-647d-46f0-acf8-26ffb69fc109", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_861235844", + "DeviceId": "29dc32e3-670b-4dff-916b-d06e3785a89f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "38da25e1-e461-4475-b038-bcbc47576df3", + "TenantName": "Tenant-38da25e1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442965440", + "DeviceId": "79884cf5-b018-46a5-9f9f-7da2e14fd191", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631121843", + "DeviceId": "68177e16-9776-4688-8e60-a3e709931d28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117682867", + "DeviceId": "191ba8fc-a102-43b1-a7c3-2cacc25ffc2a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_447253147", + "DeviceId": "0d3419bd-63f7-42c5-8a1d-517a3e516410", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131774462", + "DeviceId": "827b3b34-e1d4-4927-91af-32c9f421e9ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_978783518", + "DeviceId": "4c1303ae-fd85-4aa8-bdd5-4eea1699de6a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ca0df052-29f4-42e6-a9ab-26e8d2591241", + "TenantName": "Tenant-ca0df052" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_165548202", + "DeviceId": "fc58b246-1c59-48ca-a6c2-e18d42f18fe8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638963329", + "DeviceId": "4c328cec-b1dd-4eac-97d4-ace47590d044", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200548403", + "DeviceId": "e1b31d06-fd28-466d-be19-b0b37d4a8586", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843930686", + "DeviceId": "78acaf55-2307-4be3-9703-43df681584aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851384443", + "DeviceId": "c6a1f7b7-8c02-499e-8ef2-12552eb6a8cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_354078961", + "DeviceId": "c39406e7-2d8d-4974-98c6-0b17b91da551", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2f96535e-356c-4528-afc4-dc0e758f48a5", + "TenantName": "Tenant-2f96535e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457359353", + "DeviceId": "524bf27c-d2ed-4fe2-8bd9-708e1955b684", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171442853", + "DeviceId": "aba56aac-cf21-41cc-a49a-a09e27084f3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596783945", + "DeviceId": "38911946-8991-4b40-8416-5fb7a6055f76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533648391", + "DeviceId": "dc2c7323-62ef-4bba-99f1-0cd7e87dd2ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760672250", + "DeviceId": "2558638b-b3f9-4a20-9a1f-a942ac8d6fb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_129907200", + "DeviceId": "425a68c1-7266-4b75-aef4-32d00da0b6d8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3ecea21b-7772-467e-bed3-8899653035ba", + "TenantName": "Tenant-3ecea21b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_486259029", + "DeviceId": "0fb1dc4c-c396-445a-8725-4ad7da5105eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678542513", + "DeviceId": "b812cada-ab35-49eb-8ab6-99338ec8e332", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913996327", + "DeviceId": "061d0232-857d-4402-a00f-7b0192963266", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475191537", + "DeviceId": "846f8961-a726-4367-9e1f-95b499ca4813", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376001063", + "DeviceId": "7401f21a-b69b-41e2-b17f-e61e31926d46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_916679290", + "DeviceId": "e8f15b5b-1ee2-4f78-8c5c-2d4b07f98c78", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ced688fb-34ff-45b8-97d0-3a0aa3446787", + "TenantName": "Tenant-ced688fb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900689508", + "DeviceId": "742531d7-ddb9-44e4-9fca-f87237303935", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680947085", + "DeviceId": "b756cbe5-036a-49f4-b9a7-a9f70e139a49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773236806", + "DeviceId": "447e62e8-c231-4569-bd4f-5a01514e4559", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621537612", + "DeviceId": "c0a7a673-2cb6-4314-930b-f733bda6b0a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_529283171", + "DeviceId": "80f8bc06-bef4-4d0d-a9a2-086b23ee1277", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_268262921", + "DeviceId": "9b110e68-e239-4dbb-b88c-5c21a4d710b2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "16b02992-9d27-424c-86e0-65eac511a931", + "TenantName": "Tenant-16b02992" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392222359", + "DeviceId": "1d114982-531b-4806-81bd-4c8114032435", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933754034", + "DeviceId": "1cc77e4b-65fa-4801-8ae3-9272c02ba5e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109482396", + "DeviceId": "bb7d8df8-471a-45a6-9fc3-d5c384cf3329", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542087866", + "DeviceId": "71afcbf3-71a5-4b05-b1bc-92a6db74129d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806236817", + "DeviceId": "eb1651cd-a59b-45ca-a7ed-acd1d5a5c67a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_263006980", + "DeviceId": "d96476b2-2d7e-45e5-96ad-00db6ed6d577", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "304dd79a-8c0e-4884-8c9e-56aefd6f79a2", + "TenantName": "Tenant-304dd79a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_460049911", + "DeviceId": "05dfce6e-a274-486d-8c2c-f9364c6f1f73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678371599", + "DeviceId": "1ec12ec6-80b6-4103-a3d4-6c4acd35bc85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954696585", + "DeviceId": "56272946-5300-4ede-892f-86f777c66d86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549127705", + "DeviceId": "ef9d6a50-168c-4577-a9e2-42951e7aad00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_717701700", + "DeviceId": "b3a4a8a8-56fa-4c6e-805d-e688954afad9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_643554489", + "DeviceId": "0d00d316-1437-4b1c-90d9-3f63441434ee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "da456d6d-3b4d-405f-89be-692ae7fca12a", + "TenantName": "Tenant-da456d6d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392954971", + "DeviceId": "cea67477-9231-46c1-8a50-d1dfa47a7898", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906250250", + "DeviceId": "999f3797-fee2-4e16-9076-5d62760155b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_880681252", + "DeviceId": "34898fcb-f663-4f51-aacf-bdf2b5f1cce7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_291690126", + "DeviceId": "03d739d8-4f8b-42e0-88ca-8fa109b2b91e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386624113", + "DeviceId": "e7978471-95d8-4a04-a0ae-1715bb40517d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_554684940", + "DeviceId": "a943b9c4-56af-4b79-ae95-deca58aeff6e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a687c85d-a99d-4509-9d26-f12b298afdbd", + "TenantName": "Tenant-a687c85d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270664824", + "DeviceId": "c05d94e5-f88a-479a-9250-9d4c79dc8bd5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131281949", + "DeviceId": "8f08f3a0-43f2-42cd-87fa-2b8e7a854b8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682847059", + "DeviceId": "a3f795bf-4d6e-4eb8-87f8-557c6287d4bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522366025", + "DeviceId": "730f4122-aaf0-4c0e-bd17-549e329d789b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274645038", + "DeviceId": "0250c9fc-26ea-484c-9996-deae5a04c479", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_896020953", + "DeviceId": "c88701a7-25f2-4273-b12a-cc09d7769f4f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11ab5bf5-818a-4d6b-97bd-85ce308ebf4a", + "TenantName": "Tenant-11ab5bf5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826618703", + "DeviceId": "8bd4f483-1f45-46bb-b389-50bc01721763", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187366798", + "DeviceId": "b99eb2db-7d5e-4fe7-ba07-78066cffce8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424077106", + "DeviceId": "bb8889ea-b6e5-4052-9f92-fa0729e7ae60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_661205912", + "DeviceId": "1303963b-03c6-45a6-8912-75299d862180", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_758741672", + "DeviceId": "c37e1764-73f5-432b-9e06-997b6bef40f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_917912869", + "DeviceId": "1ca75cef-4289-4220-9382-deebb172abc3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dea23830-cbf3-471d-a31e-4176b3a3acc8", + "TenantName": "Tenant-dea23830" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565976757", + "DeviceId": "3b8657e1-173a-4d43-aab2-f24b181160cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779291752", + "DeviceId": "7943f3e8-2a9a-4533-a96e-b2a06b5cf31e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626839885", + "DeviceId": "cb833c22-36e8-4ebe-a086-91e4d6a0507b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_876878517", + "DeviceId": "1fff2b3c-0372-4c97-8ce1-9e49a328325f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257228673", + "DeviceId": "bf0a78a4-06c6-47b9-b782-fc7feebd4325", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_784316940", + "DeviceId": "b2e3cbd5-b1ff-431c-bdad-783f0f9e862d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c6fc4c8e-e9da-4e54-8191-aee11e1c8f49", + "TenantName": "Tenant-c6fc4c8e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_222990742", + "DeviceId": "2a589cca-75a3-498d-8998-e88df89f6899", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883602222", + "DeviceId": "a2b81084-5d8f-4f55-975d-e328ce687aed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_522665726", + "DeviceId": "77f6dc7b-da69-4bd5-bb2b-fd26a42f5731", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618155845", + "DeviceId": "a1881d46-f0f9-482d-a855-7731453d9b11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921737290", + "DeviceId": "7701efc7-aceb-4b64-b8b1-98120083ee4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_746215841", + "DeviceId": "a86ec931-f6d6-4b7e-8813-57aeb14dd108", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dc2b77c0-48c8-46a8-99d0-99fc851fffdb", + "TenantName": "Tenant-dc2b77c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200004122", + "DeviceId": "c77925cf-7f56-42f3-9470-304d5823b619", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546740684", + "DeviceId": "4bb38d38-18dd-4fd9-9b14-9920dd8ca5a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_877834707", + "DeviceId": "b867d53f-9088-4355-8864-b4381722db72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993408010", + "DeviceId": "d04eb5d4-5118-4982-803d-a7eac6228eaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828453163", + "DeviceId": "372757c9-e7e0-4e07-ab31-51e0ad356b7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_994574665", + "DeviceId": "c962a386-4d56-4025-b9bb-79719dfb1ee1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3e389bc3-5aaa-4222-a8cb-1113e38c6cef", + "TenantName": "Tenant-3e389bc3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_983953057", + "DeviceId": "e68c65e7-a9fa-44cc-a183-75b3af3f1b47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773207279", + "DeviceId": "3b33c8c6-e1f7-465f-a308-9cbb1e69df29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591138632", + "DeviceId": "f1d0f347-f27d-48eb-917d-8897e8f8c2be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_431287127", + "DeviceId": "69ebbdd6-ede0-4995-b444-f0ab7e589512", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_216655358", + "DeviceId": "b06ee30f-2b4f-44dd-884f-1f7ef72b0072", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_767342374", + "DeviceId": "28ac178e-67f1-4616-8cb6-92068b619442", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3c77772b-9162-4b9b-8289-3039d66195ca", + "TenantName": "Tenant-3c77772b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_181450008", + "DeviceId": "15c463fd-43b0-4156-afbd-975bb56c6349", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796415304", + "DeviceId": "145e2170-5212-4582-90ff-3b99dfd68180", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286525374", + "DeviceId": "ef8c5d62-0bb8-4bf0-afa6-785f0310c4bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_957738660", + "DeviceId": "19b4c696-a08a-49ae-bb29-d1b6d01936bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_275290441", + "DeviceId": "be173cf8-6fbc-4eb3-a07a-e30720f3f804", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_315451361", + "DeviceId": "2b7d076a-a101-4182-a6b7-01fbc04782d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "808df6dd-fb2e-43c0-96ab-bbd1d7ac1bb9", + "TenantName": "Tenant-808df6dd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329527331", + "DeviceId": "a2e783e4-52b4-4011-9437-d193d8950c12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515030010", + "DeviceId": "de7d4200-2eb6-4d8c-9756-ac8711d2626f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_293048641", + "DeviceId": "9201a4b6-3ad1-49f7-8f07-c337726fda5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810065928", + "DeviceId": "a379beda-fd48-42ef-80cd-ce6d09eb25f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854126392", + "DeviceId": "788ea09d-dc8c-478c-ba73-aee8df35749c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_343506003", + "DeviceId": "8f46e4da-6c3a-48e8-a02a-6dfac6745ab8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d331d76-8faf-423c-84dd-368a237da138", + "TenantName": "Tenant-2d331d76" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185004001", + "DeviceId": "9e5d3651-b9be-446e-878d-45a421b76786", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878874929", + "DeviceId": "864aa1d7-dc33-4fff-b36f-709452397e21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491498063", + "DeviceId": "3f007c08-e734-4a43-9ed0-5edcbe570e80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506602232", + "DeviceId": "b82c04d8-2acb-4800-ac8c-21e83a9f482f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_285158163", + "DeviceId": "561095b9-d203-4c19-8eff-489cf6ca783c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_674202793", + "DeviceId": "0a84e628-5d7c-4d1b-9c27-2cb5ff91ba39", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5675eda0-cc6a-49cb-816d-fd29e53633b2", + "TenantName": "Tenant-5675eda0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985575974", + "DeviceId": "2bbe4712-0ba3-4aae-be14-8bca9f2d61ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381975275", + "DeviceId": "4274f558-cb9f-4b8f-b84b-ac1ef7eaa48f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428290633", + "DeviceId": "9db55b67-726a-49ed-9114-d492745aa1c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740068770", + "DeviceId": "a25807e5-fecc-452b-aae4-65298e5a44e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609871480", + "DeviceId": "55555ee2-8ef2-4704-adf4-40364ab5b67c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_400333312", + "DeviceId": "c99e530b-033a-4c54-a1c8-b72a6e0ef124", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b4788cbb-22ab-49b8-b5ae-7daa74fe3c9e", + "TenantName": "Tenant-b4788cbb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_510774252", + "DeviceId": "a8f74f23-cdf6-4c7f-813a-61cf09711486", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922353397", + "DeviceId": "e7abbb5b-ce3f-4397-9ea3-4939c0df1090", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_711558426", + "DeviceId": "68f21edd-c526-43ec-9c52-c5a797815152", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_823592158", + "DeviceId": "b25cb90b-eb2f-4df4-a959-ecb8de5c8915", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956536674", + "DeviceId": "c1da4b73-7e9a-4153-984c-dc35374bfd97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_138067480", + "DeviceId": "eebd7e5f-6e95-4892-95a7-0f3d54c28ce3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "136361e7-a97a-4439-8989-2c35b1512327", + "TenantName": "Tenant-136361e7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_832742604", + "DeviceId": "3824b6fc-e206-488c-afb0-0cf69e6e1756", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100772240", + "DeviceId": "2672f56b-dda9-4bc0-acfb-89634b0af4eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_243961912", + "DeviceId": "e8b9e02a-3a77-49d3-a482-6809861b7519", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288489884", + "DeviceId": "7b01aef5-8f7e-456a-85c1-716b79eea723", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_447276307", + "DeviceId": "7886ed6a-6357-4dbe-aaca-4037b7c679d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_529762739", + "DeviceId": "ae2358ac-f5c8-4bf3-997a-43ca1cad094e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2e619728-5b67-4290-b572-a6546e27bb89", + "TenantName": "Tenant-2e619728" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602714750", + "DeviceId": "3fea5f57-b0de-45cc-b65e-1d23cb4a4051", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231256452", + "DeviceId": "0eabfe18-17d8-477c-9722-6b7f5ecbcc99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_238017072", + "DeviceId": "aa5fd44c-62c1-4978-992c-a6ca8d477394", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_355134618", + "DeviceId": "815547d1-f52f-4f72-9d1c-4af6cdd9d006", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479265884", + "DeviceId": "e3347af8-04e8-4d6d-a60f-6363ab9ffad4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_440479618", + "DeviceId": "ff0d705d-53b1-4eda-b183-c2ef874cf400", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9ab75ff7-d360-458c-950d-65cc6d23c19e", + "TenantName": "Tenant-9ab75ff7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761321907", + "DeviceId": "daae634c-d0c9-49e7-bf61-0c568419814a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687265463", + "DeviceId": "a37dc6cc-f069-4a3b-b9e1-db3cf2e8a92d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561786400", + "DeviceId": "90a1f158-589a-4dad-8e95-cfdb8fa123ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739030963", + "DeviceId": "6391df9a-2cd5-4f28-8914-9c6acb10cce7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941602199", + "DeviceId": "dab9d699-8659-4959-a48f-cbc8dffe84ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_636691511", + "DeviceId": "38a330cc-6550-4b59-bbc9-26159241a13c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "32505124-2b38-48ed-a9b0-25de1e73966c", + "TenantName": "Tenant-32505124" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540398233", + "DeviceId": "4603446b-d3a9-4655-aace-f322f7813c6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381333504", + "DeviceId": "7a4ab8e4-8e45-43fd-a72e-873a8c2d2654", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129759335", + "DeviceId": "8a2f2129-3fae-401e-8860-05b2f1314ef4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164769886", + "DeviceId": "0b1ac706-a3eb-4120-b6ca-609d7428b4c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658797641", + "DeviceId": "2892a6f3-5a01-4e51-9b7e-189ed60c3b7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_829944733", + "DeviceId": "ccf878b4-c23c-4a5b-8a47-afd80ad75667", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "74a43472-ddcf-447f-8181-ef1c5eff1cfd", + "TenantName": "Tenant-74a43472" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_589996788", + "DeviceId": "2cb4602e-4dda-48b6-9b9f-3dd9778197fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_470745994", + "DeviceId": "31134194-c9a8-4aec-bf87-c858918de4d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567780637", + "DeviceId": "afbf701f-0cfd-4b8c-991c-91d18f2c7c9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_535506355", + "DeviceId": "8ad69755-1abd-40fd-9bfc-cc5f03e08140", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_541030694", + "DeviceId": "66e5a66f-3132-4ec9-854b-43c8e3b0cf40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_981090888", + "DeviceId": "d99dd4c4-e391-42eb-b83b-e1c39af42cb1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "151f3636-2409-44c4-ba9d-86177b3c9b02", + "TenantName": "Tenant-151f3636" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639341772", + "DeviceId": "d031cb2d-3ba8-45f2-9939-a50f07bb9279", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_510637489", + "DeviceId": "49ff79e5-7962-4969-83ce-636b932daeb6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888318022", + "DeviceId": "34257440-2a74-4bac-8738-59a4df4d7216", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_753715333", + "DeviceId": "7f0a3cb6-9dc8-4842-bcb4-72d6ea8e0e8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814398876", + "DeviceId": "ac28e258-8e8f-431a-a867-d5ce001f9af1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_568498069", + "DeviceId": "63faed68-a483-4b25-859c-3d9d00be8522", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7ce7776-6272-430d-8840-23df90ab69fe", + "TenantName": "Tenant-b7ce7776" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640533568", + "DeviceId": "072a05eb-fda3-42c6-9d8c-6f8dd47faa4a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_472384132", + "DeviceId": "b85a3e40-abf5-4a11-8572-9d726239ee7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_908879520", + "DeviceId": "9e75dd2d-084c-4520-80dd-8427410ea0dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_421419825", + "DeviceId": "6163da25-1f96-4428-975c-1c10c5602c2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380650507", + "DeviceId": "e2878311-2998-4b6f-a4d7-2b21d4fee91c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_378566597", + "DeviceId": "7d186e36-16ac-4346-88f6-587fc894620c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d01f87e-6c5b-40d7-9db3-24ebaaa656c4", + "TenantName": "Tenant-8d01f87e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175396201", + "DeviceId": "7c7c675c-9610-4e14-b6d6-b8583e697f9b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597825148", + "DeviceId": "c9500d99-969b-40b4-b9a7-7119fc3ec9fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285396897", + "DeviceId": "ede62969-adaa-424e-8319-449f42d5af3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_503630034", + "DeviceId": "7233c188-dcef-4934-8c49-72ee1017426f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375316121", + "DeviceId": "84934199-5a04-4d7a-a763-766dae042009", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_578931298", + "DeviceId": "e749e762-1cec-4cf2-99db-9ba58d8b8654", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "702bec5a-fc46-4b8b-a53a-cc26d1a25318", + "TenantName": "Tenant-702bec5a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938144549", + "DeviceId": "aafa2025-4c4f-4e3f-a9b4-a96e7b2c914d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278857494", + "DeviceId": "3d6864a6-d50e-4f16-a0c1-284e852a427d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741042270", + "DeviceId": "731f32c1-32dc-4c0e-be54-bf88d178d0db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512254439", + "DeviceId": "0adbf245-c8b1-4441-9f3e-fcef991b5e88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940292189", + "DeviceId": "2f6a5ec2-762a-4e97-88e3-3d06ea0d8c77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_859906335", + "DeviceId": "c594706a-65e7-414f-ba2b-11e5ffa6f2ec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a278dc9b-e58f-4907-96b9-ca706319899c", + "TenantName": "Tenant-a278dc9b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_707181209", + "DeviceId": "f13ebd70-8a28-456d-95d5-2c69be717290", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_569815937", + "DeviceId": "3fdefb93-6762-4e37-8228-d0c50c246662", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_868800170", + "DeviceId": "e3bcc5b0-674c-405f-ba82-ee02b5ab961a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_140193911", + "DeviceId": "adeb97f1-c980-4668-be91-5badd3eebb40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550885105", + "DeviceId": "c9062573-4a0a-4ad7-a3b8-83414a1b3817", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_494342000", + "DeviceId": "a23357e7-57df-40d2-a5d7-c9da3b496a40", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "75ea5f3e-c43a-4bb5-bad8-bca8a8bd4c3b", + "TenantName": "Tenant-75ea5f3e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_581316429", + "DeviceId": "8eb01fd1-ea7c-4f91-91ce-dc6e58972bf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598320346", + "DeviceId": "123c7a81-ca83-4bab-98d2-83fca14be1c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896783774", + "DeviceId": "908c6053-8abf-4d79-ad35-3587c068a085", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735861703", + "DeviceId": "b25f3dd6-72aa-4211-a6cd-de289c09855b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896541483", + "DeviceId": "da16bd88-f767-4e6a-968c-89eec5040acd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_178398964", + "DeviceId": "03092ea6-191b-4d9a-89ed-26651665465d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8290c002-c60b-4952-a94b-58ccb81c6582", + "TenantName": "Tenant-8290c002" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_105153793", + "DeviceId": "37207f84-4ee8-453b-abc0-767a1cf34db8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744125926", + "DeviceId": "b29bcfcd-5a5a-4492-a0ca-c073d0c66c5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598882154", + "DeviceId": "9997e76d-1592-45ec-9029-56605f3cdc5a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247389078", + "DeviceId": "ba69f2b1-26c2-40a2-a334-9b84f1b3d3d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562053272", + "DeviceId": "a132dabf-b84b-4ef3-a76b-057e5f93c906", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_315498081", + "DeviceId": "dc8b433d-f790-4ff8-8805-79e88c720d5f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d38f9c28-958e-44b8-b144-745d958682f7", + "TenantName": "Tenant-d38f9c28" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212177038", + "DeviceId": "17fda589-fcd7-4af0-a6cb-7833960d804b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692101001", + "DeviceId": "750b7c2d-d1fc-42cf-bdf2-c5018afaccdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186009495", + "DeviceId": "60bc4416-6dbd-45a6-8710-d79aa0aea1b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735448714", + "DeviceId": "e342e85a-3935-4056-96b2-4b07daa24795", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614999292", + "DeviceId": "630ef92b-8714-430f-8ab6-413e5ad93b47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_691674307", + "DeviceId": "93969f27-acd0-4634-a7f4-e8a6018d3146", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0a13919-e079-415f-8107-38f343446218", + "TenantName": "Tenant-e0a13919" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891272591", + "DeviceId": "856c4a64-620f-44eb-ab7d-9ffa89a4b7cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161225467", + "DeviceId": "9311e64b-54d3-47f5-8ef6-1e56d19c56d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129367472", + "DeviceId": "65a0a534-dd2e-4273-980c-25b3efebd221", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241174694", + "DeviceId": "5ee7c46c-8dac-4540-a81e-c2458c2eb256", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128581160", + "DeviceId": "63802186-cd44-4a36-b868-e0bb39ed11a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_711803990", + "DeviceId": "a7972cad-1d79-4671-9ed8-64a41d0ba014", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4e66d748-5699-4154-b1c5-f230b74ba5b3", + "TenantName": "Tenant-4e66d748" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833454121", + "DeviceId": "831c1704-f875-445d-bc13-6740991c3ba8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597884415", + "DeviceId": "ac97423d-a362-412a-a843-226f4e7630ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_760116542", + "DeviceId": "0b618047-952a-42df-94cc-3cefc2758197", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523062745", + "DeviceId": "48c33802-6dba-4a13-ae95-90b39bbd112b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530187008", + "DeviceId": "8bc18ae2-0072-484c-862b-6ad48f57580b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_236182203", + "DeviceId": "b4fa692b-a6aa-49e6-a8fa-d8b0e0378f6b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "94963de0-142a-4070-9916-90cd2beaad3f", + "TenantName": "Tenant-94963de0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_637537579", + "DeviceId": "d0233861-e934-43aa-9123-3a0ad8083421", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242486525", + "DeviceId": "f972655a-0f74-4187-9c6a-83b4abe27903", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727786004", + "DeviceId": "90d0c785-2ca1-46b4-bf73-d29d3f16c136", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963311421", + "DeviceId": "e3633348-e6e7-48ca-96d0-f9814cb5cf4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935256280", + "DeviceId": "36ce83ad-af57-4f09-b2a0-456995b5a898", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_229405571", + "DeviceId": "c8aa73f5-3167-422b-9154-ef38f6afc6f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4a9e05ff-5922-4589-803d-d27d80b08735", + "TenantName": "Tenant-4a9e05ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_829918407", + "DeviceId": "07a1b68d-3d62-48d4-b05c-201ddd8d3cc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_715196807", + "DeviceId": "7a103966-ac60-4c08-ba22-5ce73a77ed3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757471181", + "DeviceId": "eabcd14d-6639-452c-92a3-ea4ecc2dd430", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601824639", + "DeviceId": "d416ed7a-4bfa-4498-89d3-670d2853cbda", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_883942474", + "DeviceId": "e36e842a-e76b-4bb6-b977-3b0c34b364af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_878551214", + "DeviceId": "dca7366c-0ab9-4770-bbea-8703b9405eef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d80a8f2c-4c23-45a6-8eaf-a7bbf3cf97c2", + "TenantName": "Tenant-d80a8f2c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131520111", + "DeviceId": "04d7b046-6c7c-42ee-abe1-dd3c2ab54bd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917972662", + "DeviceId": "3c265e7f-058e-4ae5-8147-f342b94b873b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883386890", + "DeviceId": "07b86db2-e961-46ad-be94-28477ba4532d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677425491", + "DeviceId": "d51d7c1c-7a96-4ebb-8e7b-e1d0eced7a91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_435057832", + "DeviceId": "539d065c-c164-4644-981f-c291744a7620", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_990302025", + "DeviceId": "50dd1c57-f97f-4164-9479-e810a5c81f63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b9d05e23-dacc-4532-be59-e94d544c1909", + "TenantName": "Tenant-b9d05e23" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622088326", + "DeviceId": "ba227f36-51c1-4799-a7b2-45a6d6e02ad4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231669402", + "DeviceId": "15e68e90-d83a-4f86-95e6-8439bcbd3709", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514397165", + "DeviceId": "6858cf5c-2565-46d0-8265-a7fda2e716b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_304401199", + "DeviceId": "46ec8fa8-8cc8-4fbf-a888-47bf5f7ba0c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121912001", + "DeviceId": "60d74010-e8c1-4296-907f-337d0b456b36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_687386792", + "DeviceId": "7bcda1d1-5b18-4463-a83f-b41237a987ec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5f58f39-d211-4f5c-bcc8-c6ae60d274f9", + "TenantName": "Tenant-c5f58f39" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_137855128", + "DeviceId": "d74cb4f0-2e69-4134-8450-7fb35c7e071f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_503916001", + "DeviceId": "41a2d262-ac09-4af0-83b3-b2be76207a63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580659209", + "DeviceId": "7498eddf-e9dd-4d9a-85b0-cb875e5acb86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433133338", + "DeviceId": "d40c56e3-232e-4aaa-b9fd-e7267f9672a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338365148", + "DeviceId": "0232cd3c-9da6-47d0-99b5-c775929d138a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_365443050", + "DeviceId": "757ab7e7-ad9b-47b4-818d-bc2d8890073d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "67918db4-2b81-4cf1-bb29-9b0c2e2f061e", + "TenantName": "Tenant-67918db4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570608927", + "DeviceId": "5e48c243-c929-464c-bc07-1e9dd93d3d94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511657425", + "DeviceId": "0a6107d3-98cc-4e5d-89e5-7c842f3c267f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619871888", + "DeviceId": "1f23dc88-e17b-401b-abc2-85ac657e1f4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_756241122", + "DeviceId": "dac6bd9c-6ee3-4420-b3b2-6820ce0dda03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495222869", + "DeviceId": "d5f2ac6b-df74-4542-8ef9-65f00642f247", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393841594", + "DeviceId": "b8e3791d-acf9-40ca-a86a-b7dd02061e12", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "68163436-b3f0-407a-99e3-86c882eb08f9", + "TenantName": "Tenant-68163436" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_691052775", + "DeviceId": "0a5c08b1-7adc-4f44-9f2b-7fdb33041ec0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_719772976", + "DeviceId": "8384de17-6aed-469b-a230-916fb0b038c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794752431", + "DeviceId": "8ac42965-a689-45a9-ae49-b1f5d1350ff9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_236143195", + "DeviceId": "b3e93984-737a-4fb8-bf7a-bbb58099763a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382826571", + "DeviceId": "2b9539e2-035f-472f-ab0e-5933d44dc432", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_432392655", + "DeviceId": "174d8a53-ff39-450f-963f-d5877c64e566", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1831c628-5368-4ae9-94bf-53316226a80c", + "TenantName": "Tenant-1831c628" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_586581073", + "DeviceId": "97508926-6ce0-4ff1-b4bd-9271da7b228b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529261893", + "DeviceId": "aef2a78e-0aaa-4cc7-908d-1072cb6b9d80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391026710", + "DeviceId": "039c0488-d430-4138-9505-b72bdc179f4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_661818489", + "DeviceId": "8f06a7eb-f016-4b48-b342-0f0beb616270", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348612850", + "DeviceId": "942a8c79-6085-40ee-bd48-10ae15e12657", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_632104409", + "DeviceId": "6921fc72-b500-4179-a9e8-55d9a84c47d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "60293683-17a9-4920-a484-628297dcfff2", + "TenantName": "Tenant-60293683" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755253234", + "DeviceId": "d4e44eb7-68cb-40f8-a8ee-68fc306e815e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556416112", + "DeviceId": "b3c8ea1e-de17-4a80-9f75-b870766d28b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450929184", + "DeviceId": "b88d2946-fedb-4f01-8f0c-ea64e671e48c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900635848", + "DeviceId": "a1ff58ae-89d0-4212-a14d-87115c4e21d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_516501097", + "DeviceId": "4894160b-a840-4ae8-90a0-cc768ddb86c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_194980714", + "DeviceId": "99e4b555-70cf-4caa-a0fb-6eed06a584a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4b59b6cc-e958-41c6-a601-b3c2bd751906", + "TenantName": "Tenant-4b59b6cc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401920275", + "DeviceId": "a5b40b86-cc23-4cc4-9584-b4bf4914ac0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_880132990", + "DeviceId": "bff26bb6-6b05-4925-8332-9f38984c27ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127935856", + "DeviceId": "2155d459-fc42-4641-8648-55b14396bf7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_377672306", + "DeviceId": "ae8a30e6-b6c1-49b4-af2c-63afd590be5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522483916", + "DeviceId": "f6af1a58-10b8-412a-8e50-9575aa1e06ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_292392021", + "DeviceId": "236870dd-420f-4abf-92c6-fec24b38eafa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f44cf48c-b0e0-470b-8a82-366b91e2322d", + "TenantName": "Tenant-f44cf48c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_886415509", + "DeviceId": "6a7d380a-5a83-4cce-8f89-69fa6654bbd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445555308", + "DeviceId": "94fb674a-d798-4761-8582-8daf01553bdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_607368085", + "DeviceId": "3734a727-525c-4609-85ad-0e88c02fd184", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_880527759", + "DeviceId": "f46f57f2-083d-401f-b508-b6c226fa8ac8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546167500", + "DeviceId": "8a090701-dad1-421b-8063-390fb10e645e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_947539691", + "DeviceId": "27fa6da3-94e4-4082-8691-aebc2d5a7738", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d00b6a3d-d0c6-484b-9904-90b792da45d4", + "TenantName": "Tenant-d00b6a3d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_268028282", + "DeviceId": "22b62f55-281d-4fff-8c07-4f967e9cb06a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_990663648", + "DeviceId": "1ef21b49-1b4a-489a-89dc-2d6e0ea23cbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597572650", + "DeviceId": "42e11207-7542-401b-b4d0-3fac8f3d5f43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_305521396", + "DeviceId": "38dd9073-1524-44e7-8fa3-9726e1ac9819", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595863886", + "DeviceId": "91d57303-067d-4bf6-8d97-bf9071bd8245", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_221434851", + "DeviceId": "21d83b41-b74d-4046-992e-002aeb1c403a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6999c251-41f5-40a8-a6ea-439f2501157c", + "TenantName": "Tenant-6999c251" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646931396", + "DeviceId": "4c36ba04-96e6-40fb-ad7a-974a11427456", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410524623", + "DeviceId": "6081fcc8-3dfa-4397-84bf-45476b9c4af3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281715442", + "DeviceId": "2b5eafb1-21d6-4017-9a1e-6146ed58c3e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_922367515", + "DeviceId": "75881fa2-4710-4188-93fe-2f240b8f82ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273609139", + "DeviceId": "e800f8cc-f28c-4a20-8318-5ddbcf210a7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_938882994", + "DeviceId": "48266b2d-ec37-48a1-b90c-304781b32f02", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b257382-27b3-4a53-aa07-e1eb16dbff6e", + "TenantName": "Tenant-2b257382" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511214495", + "DeviceId": "7a1b2554-eadd-4129-b7a6-89d6df156739", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936012385", + "DeviceId": "9cc6ce34-d08a-4881-998b-f6f34e0a0d70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860433560", + "DeviceId": "78421aec-e339-47c9-9f7a-b9413b0834c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662194721", + "DeviceId": "35cd95bb-f667-4b2e-a220-1fccde3e7ba8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109588392", + "DeviceId": "cebbbc86-6ab0-4f69-a2f0-86d7052deb4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_936243558", + "DeviceId": "db433964-a15d-46fd-8e96-98d678c387b9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9c1ee844-a260-4988-bdde-8bfc2dd82586", + "TenantName": "Tenant-9c1ee844" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790352476", + "DeviceId": "973a8fe8-e843-4c2b-a767-ef76a9a806c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327467961", + "DeviceId": "22db372b-4100-4fa1-99e6-50204522f6b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467695421", + "DeviceId": "8c787c1e-9778-4fb6-a9fd-a1c1827af811", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_435376105", + "DeviceId": "1adf1c06-e929-463b-97aa-ca305023a783", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752449461", + "DeviceId": "696bea75-3624-42d4-8a6c-4db66521669d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_216900085", + "DeviceId": "76c9a6c6-da87-42a7-b4a9-bdc9eb800972", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e9488ff8-fcba-47ed-b7db-e3ba9c3c848d", + "TenantName": "Tenant-e9488ff8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962452001", + "DeviceId": "84e0f469-3826-40ea-b569-572c3595b93e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126586329", + "DeviceId": "daf93719-88fe-4b99-841e-a8cedfaa8f61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738587487", + "DeviceId": "1b0a95b5-817d-4a09-93a1-c241e26a04ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_603983311", + "DeviceId": "4f58489f-28dc-4e6d-bd20-748315ba72f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799610745", + "DeviceId": "b105bdbc-c4f4-4995-a9ef-666179e0e0e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_346432480", + "DeviceId": "5fff71eb-ef62-43ac-bf2b-60b3ca3b1329", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f87f7c42-b7db-42e3-8812-dc96a0fd870a", + "TenantName": "Tenant-f87f7c42" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424072730", + "DeviceId": "699c9a8b-0315-48c4-bcbd-27674cc2ce29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309241717", + "DeviceId": "6981c397-3899-4f26-9107-ceb2c7e009fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534697588", + "DeviceId": "5bee670e-951b-4f91-bfc9-e3e4ddd42b1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740393201", + "DeviceId": "566bca9d-5f51-4dd2-8197-39b0b4b841ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282792272", + "DeviceId": "a7278931-d9ca-4b8f-9f71-8154abdd80ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_418540499", + "DeviceId": "c8c1c73f-eb56-4862-863c-10997686b732", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2406dbcf-0c44-4ee7-a0a4-41f5ce836229", + "TenantName": "Tenant-2406dbcf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693655441", + "DeviceId": "3acabd66-4c55-48e2-abf1-affa129631f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_832243053", + "DeviceId": "5dcbfb86-4b34-4d5e-94ad-01bc774fc145", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582690753", + "DeviceId": "1d3b4d2e-9bbf-4985-a6cc-e7264362ccda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649071773", + "DeviceId": "cc4c9476-afc6-4793-a350-f5be79ceb727", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_493491794", + "DeviceId": "791db66b-2052-439a-9cbb-13d76d9170b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_769775909", + "DeviceId": "2593a13e-acf7-407e-8380-a8b97c1eda83", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f29045e8-24c7-4f3d-84e3-3a76559b4a58", + "TenantName": "Tenant-f29045e8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_110008792", + "DeviceId": "0bcdc47a-63ea-4fd6-898e-80b6d249df49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_195867393", + "DeviceId": "99316d6d-5399-43ef-9af8-8872c1c30c8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334467057", + "DeviceId": "47bd78a8-d991-49e8-8789-923462250bc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_415530214", + "DeviceId": "f56c9976-b356-40ab-8274-d3928741ba1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846484035", + "DeviceId": "13ebcb0a-9572-469c-807a-977edf719442", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_517471886", + "DeviceId": "404318ac-159b-4244-b616-da1fe3339e9e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f2183532-7505-477f-b41d-864e719d0d7b", + "TenantName": "Tenant-f2183532" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616397538", + "DeviceId": "b7a5c170-6a6c-4a65-8cfb-4e94996c94da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790955815", + "DeviceId": "57748d94-41b0-40e5-bd03-fc42b7e0ecdd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_240359265", + "DeviceId": "a87f3a84-465b-4d73-ab3d-590a16ab5069", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383991961", + "DeviceId": "af6c908e-2a49-4ae4-b650-640ca39ddaa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_243233495", + "DeviceId": "1134fe5a-de12-43b5-93e2-aaf5da661be2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_355723080", + "DeviceId": "a9e62b53-ebd6-4c48-b609-3dde09c4312c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0aba2203-1983-4b77-a4bd-05e8083ae038", + "TenantName": "Tenant-0aba2203" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230210174", + "DeviceId": "4a8a8f7f-6896-4e3e-a030-bef74413d9e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_322671019", + "DeviceId": "50d0a518-c03c-4d4a-86e9-755e864f364c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714620139", + "DeviceId": "6eb4571a-2047-4cc4-b877-413bf0d17d00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189513685", + "DeviceId": "51ea40a7-d588-45d7-a246-905743656c08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295784956", + "DeviceId": "f9a90343-3372-44ba-803c-8d2d3768ff69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_645546690", + "DeviceId": "4015160e-dc21-459e-b44a-720584dbd089", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d2879345-3d56-413b-8fd6-f5e8a057d1ed", + "TenantName": "Tenant-d2879345" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731185547", + "DeviceId": "4a6987fe-3455-41b0-a7ba-c9f36dec23e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867552862", + "DeviceId": "132d1c47-32ba-4289-86c3-87653b85b98e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643586048", + "DeviceId": "2f944127-4a6c-404a-b1d5-96c4c38c3375", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171796197", + "DeviceId": "fa2fcb50-4421-4d9f-b906-84dcbd0edaf8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735649631", + "DeviceId": "abdbf0ca-d1a6-49e3-bbb9-c36372e6502d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_636135081", + "DeviceId": "90f41bfc-bd9e-456b-a154-79acdf5b0433", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bccfc329-6f5f-4ca9-9711-71ae6a5e9d8a", + "TenantName": "Tenant-bccfc329" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392367058", + "DeviceId": "f0b73b82-8f3d-424f-a367-19da8f68e29a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784057650", + "DeviceId": "a5b037f0-9b6f-424b-acdc-a8b3d1530af6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494263153", + "DeviceId": "43b82c47-1ba9-4981-9793-5c75a8851fa3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476018374", + "DeviceId": "42d8d939-37c7-43ff-9368-43db6d675caa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_998908395", + "DeviceId": "0c7a39ff-2137-4282-93b1-819fd8d41254", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_986218630", + "DeviceId": "0ad069a6-636c-49fe-aaa0-45a49aac1fd7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4324d1a4-f868-4afb-8221-0b303dd83fc4", + "TenantName": "Tenant-4324d1a4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_945888475", + "DeviceId": "c9122c8a-8c0c-4d4b-8851-872141384157", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_543360995", + "DeviceId": "0802a6a8-2340-4ece-bcf8-1247fd462e85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727649632", + "DeviceId": "5c862219-ab86-43ad-9ad7-b5e43360e694", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981348946", + "DeviceId": "2b3a53f3-cac3-427c-964a-b021d3de5714", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495226654", + "DeviceId": "3048458d-05d7-4aa4-aad9-fd582d30ab0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_420330431", + "DeviceId": "78a85bf5-06c2-4760-854f-2042577b5f35", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6473af5c-c2cf-40b3-91f3-e3cdc2ba89f0", + "TenantName": "Tenant-6473af5c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444215434", + "DeviceId": "4591f506-524a-4606-8d3f-cf05afca00e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_698623066", + "DeviceId": "350f0d35-656a-4c59-8c50-ce07e12b01ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912188951", + "DeviceId": "5d44e621-17d8-43ce-ad17-8b9d94633387", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_318593020", + "DeviceId": "c0e1a4ae-d1ba-4f07-8a2e-f42d5b698a7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472763974", + "DeviceId": "712ba1ff-32c7-4f04-a9e3-9a9d6f1ee88c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_319666642", + "DeviceId": "06244c4a-ad28-4ba1-aa1b-df76c634facb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "536ecffd-c4bb-43f8-bf2f-003ff9482cb6", + "TenantName": "Tenant-536ecffd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419877257", + "DeviceId": "e74560f2-f6a1-42d2-b9a4-740501b874e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582206099", + "DeviceId": "4391ddf0-da4d-44a4-93a5-2221474729c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789465569", + "DeviceId": "eb6d8897-2d23-4bc1-a45c-997519e6d08e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631819048", + "DeviceId": "d576f7c7-6cb1-434b-ae94-ec42f73ee2ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105997684", + "DeviceId": "f88f1bba-533c-4205-ac07-5237a4f0ebd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_259092363", + "DeviceId": "d2131247-2a67-4497-963f-82983e2cd06c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fa11a0b6-6794-4f67-93b5-2e3d2cca6e62", + "TenantName": "Tenant-fa11a0b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796321293", + "DeviceId": "3f409026-4066-48ea-b5c2-cee9328b16a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309759790", + "DeviceId": "b15ae41f-a2d7-4ec1-8b9b-f5126a2073e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_689521675", + "DeviceId": "3a327e72-63d4-4930-b9ad-fe9b8abae05c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479874899", + "DeviceId": "bfe26b3a-edc1-4aa4-8744-beaa04aa2100", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611317900", + "DeviceId": "bc4b227e-674d-4726-9356-e7070cd5b616", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_784046606", + "DeviceId": "a64c2fb7-183f-4f31-a7af-5b43e0e662e0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ac07dab-fcfe-43f0-898b-ed14f0c196d1", + "TenantName": "Tenant-6ac07dab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_105713513", + "DeviceId": "8a4a60f0-9567-4800-950a-1b3b73f84b0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329203871", + "DeviceId": "1e159c2d-bd42-4c41-a14c-70ea99ea3827", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757101779", + "DeviceId": "42d53385-faec-4b1e-b250-411a92e2a243", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_555080101", + "DeviceId": "7bb188c0-9e6d-4370-a346-8c8a19a5aba6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171167999", + "DeviceId": "fdf918d0-d0a2-4d1e-8de5-8586610525b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_931504559", + "DeviceId": "7efd8f35-4b90-4a59-b881-5962ac733242", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a63c9b8-ef71-4365-8e64-dc04d1a713ca", + "TenantName": "Tenant-1a63c9b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843207499", + "DeviceId": "ad2e419e-a128-42c3-b98c-20bd200df4e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223793281", + "DeviceId": "276bf238-5a32-4bf4-a9b9-96e767ed80d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773383551", + "DeviceId": "6f243c39-0937-4b25-8ab4-8db4b6e3d312", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885028697", + "DeviceId": "208e38e0-4451-400a-8204-8ee63076a82d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_928333242", + "DeviceId": "bfb9a34a-d356-43a8-bf0b-b7602f7f3f63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_596234935", + "DeviceId": "5e0e6526-f6a4-4e9a-880b-3fd8e705a353", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5078a306-3694-49cc-8820-a3640ed06e31", + "TenantName": "Tenant-5078a306" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237903611", + "DeviceId": "f8b85573-5073-46f0-aab8-efaa3a332300", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_335820302", + "DeviceId": "855b9532-da95-40b6-aa79-3264dd5ad6c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_137953793", + "DeviceId": "21f91c98-f199-4324-8e5f-d58ac6213dc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625235105", + "DeviceId": "9431b9fd-af74-407c-bc7c-7ab139ce2ae3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475090662", + "DeviceId": "8f05f8d2-fe02-45b9-b140-d9734cfcb47c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_766529921", + "DeviceId": "031b22d3-d9a1-42b6-b3f2-3508425a4a61", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "44e21374-6978-4c79-983d-72094c34354a", + "TenantName": "Tenant-44e21374" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309578200", + "DeviceId": "aa3ba8d6-3334-4787-8fa5-c61f1a83ebf8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186065838", + "DeviceId": "383b5509-53a3-4ce1-b475-42b8f9167e39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531892608", + "DeviceId": "1c6cf1bc-188a-4d32-8356-f1c33116ce6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135295970", + "DeviceId": "42c80b52-78f0-4140-9734-18ae42ff48eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_120355424", + "DeviceId": "ba3c17bd-6f27-488b-9899-007f414c0d17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_717077060", + "DeviceId": "9926ce81-1c9b-4ab4-928d-6e8a91479836", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "375fb920-4775-4037-8935-6c59bc6da7eb", + "TenantName": "Tenant-375fb920" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314214067", + "DeviceId": "e7e85529-413b-4090-abe7-657c06db9fed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506417811", + "DeviceId": "be06e514-12d1-4796-b101-0d8524979b63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_463726029", + "DeviceId": "e2efe41d-c719-4657-a797-7d5f9e7812f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_428567765", + "DeviceId": "37d844f5-4621-4271-bd58-9e174b1564f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_912310957", + "DeviceId": "982b9972-e993-46f9-8470-2cede371cef3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_668383425", + "DeviceId": "09adf286-8f0d-4158-a627-6f7716587cb8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dbbe8c48-535a-4f84-904c-14b12bdbcd88", + "TenantName": "Tenant-dbbe8c48" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736314019", + "DeviceId": "428e7cd3-7b6b-4591-a0c4-2347fb86d7da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233393724", + "DeviceId": "b9903748-9c33-4da4-b579-e2424e38195f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373455521", + "DeviceId": "0ba0fd64-76ac-489f-8d2e-617e782fd60d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_218227516", + "DeviceId": "b571657d-56ac-4e04-ade6-1974ec788016", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454047610", + "DeviceId": "76c2bce2-799b-425b-9f9f-e8157671a792", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_140532023", + "DeviceId": "da49ecec-93e1-458b-95d2-5bf3ade8525a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d3a25b61-f367-4a44-a880-e247ac38ac51", + "TenantName": "Tenant-d3a25b61" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_967243142", + "DeviceId": "3b85726e-31a2-42e4-adb0-6d5a865651bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794453943", + "DeviceId": "65039fc7-067e-4ee5-97bc-1e7b1fc0eb18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534792652", + "DeviceId": "7b5391a2-16bc-4dbc-b9e5-6a694a980391", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_666152658", + "DeviceId": "c663dd4c-7abb-4bf2-b4d4-9dd4d8cf5ce5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_216467636", + "DeviceId": "6b0774e0-1561-4b34-a151-f52143ccf0cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_579198130", + "DeviceId": "94a4b097-c145-4134-98e2-5d147b1cfdcd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "06721530-b282-476d-aed5-d723ffbfebc4", + "TenantName": "Tenant-06721530" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745789326", + "DeviceId": "d5804a46-e195-4a8e-90aa-d7e9366d04fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913058921", + "DeviceId": "a2e23e30-807d-4e36-9e8e-7e513976d41d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315958338", + "DeviceId": "bf6233b1-1470-47be-aa82-41ad0bbac7b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281613778", + "DeviceId": "f84fbc47-34d1-429e-95bb-0f70b80c130e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827721465", + "DeviceId": "6fc83239-9623-4c2c-96d2-08ee4083b822", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_850445041", + "DeviceId": "b5590cde-4d41-4b0a-82ab-f41bce69e4f9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7994f23f-550a-466c-8255-2547578f8ffa", + "TenantName": "Tenant-7994f23f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883631355", + "DeviceId": "02aaae87-7ba4-4970-8503-d04f0c4619c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993456805", + "DeviceId": "038341f9-2ab8-42b6-94b5-731810527fee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_857651781", + "DeviceId": "bde30307-8103-4e2c-b0e2-a138845751d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_758091395", + "DeviceId": "49978244-f7ee-4add-8e6a-8ff6aa0c0f7d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176785694", + "DeviceId": "1668d978-4ba0-48c9-a11a-9f02a4374322", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_113868673", + "DeviceId": "08956571-907e-4269-8e62-c9fed54c03a4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9b3c8297-8bfe-4f84-87a3-2271bdac498d", + "TenantName": "Tenant-9b3c8297" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_894231406", + "DeviceId": "f0404ace-ded5-40a8-99b4-166dc98ed264", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475353398", + "DeviceId": "5113bb2d-5940-4888-827d-5e7dbf5a68d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986516108", + "DeviceId": "6c47663d-af82-41ed-a377-c436970fb120", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707000883", + "DeviceId": "f3add08c-cd79-4b7b-8442-9a931815efb2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862845453", + "DeviceId": "87ab531a-9d3a-428d-8b11-21a0c3f9ccf9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_817089409", + "DeviceId": "15156bfc-84d6-4e70-ba4e-17d19b77d9ab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7f7e7ac7-57fe-457d-afd6-7d355f0da905", + "TenantName": "Tenant-7f7e7ac7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_183720037", + "DeviceId": "33e1345f-d4a5-4b2b-80fd-961ae760c05d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891425868", + "DeviceId": "10cde14c-8859-4471-aa94-f4fb49de2fc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513415921", + "DeviceId": "f9b6f451-db74-4085-9a12-c2f0a17ae546", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373184273", + "DeviceId": "c81081bc-ff86-4959-b302-2229140c1226", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596463660", + "DeviceId": "fea6a120-ca24-4fc8-ac3a-a23773d22b3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_618591717", + "DeviceId": "97256ae2-d1cb-4cee-aec2-a033edd873f1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "de568452-e9a1-4949-be73-4b89bae994ff", + "TenantName": "Tenant-de568452" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227439299", + "DeviceId": "8ee3e21c-135a-432a-974d-7ebbf626d1fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230264004", + "DeviceId": "7a35a4a8-b8ea-456b-9356-bce5833b680c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354249971", + "DeviceId": "28c5fa8b-281c-4109-81fa-40b96d6bed95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908137476", + "DeviceId": "3ac86204-7571-4201-bd3e-606e33b17ced", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_219617478", + "DeviceId": "b31edd48-5d12-4bc4-b279-806098fb7746", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_434356626", + "DeviceId": "0351fa59-f8da-416c-a141-b49407cb167f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0136ce75-c610-42e5-ab99-d2af75c9dbb5", + "TenantName": "Tenant-0136ce75" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423423575", + "DeviceId": "d0db6c31-6a36-487b-a1e9-9ba430bf13a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_386679328", + "DeviceId": "27a6f57a-f493-47ff-8fe4-697132fc25f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260995102", + "DeviceId": "d7c13c6a-6c8f-472a-92b4-926878bcbfbb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324948460", + "DeviceId": "b63ac0d2-1038-4b71-9a0f-6d03b5de1898", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114519666", + "DeviceId": "a7f129bb-01df-4043-9e22-e80f520a4397", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527178976", + "DeviceId": "939742ad-bb83-4fda-8896-713f11651cb9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a1d2763-62fb-45fc-ad89-df558f16ae08", + "TenantName": "Tenant-1a1d2763" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692648191", + "DeviceId": "921df92c-4b01-4330-8a00-81263c607ffd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_132952094", + "DeviceId": "a460a7f3-4f04-4ffe-9d00-7c43e4f1e171", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968293832", + "DeviceId": "41790e0b-0c2b-49ec-90ff-d2ffd1203fca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596427756", + "DeviceId": "44bcaf09-daaa-4cef-b1d2-b245ac82415c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_362328387", + "DeviceId": "f0699e80-fb54-451a-a57b-4cd1481b361b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_131494934", + "DeviceId": "c0662023-6381-4ab7-b391-3a8341e83bbe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cfd96fef-e54f-4a0f-b179-683ec65a3530", + "TenantName": "Tenant-cfd96fef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_446646203", + "DeviceId": "fe5e3c4b-1da3-4749-84be-d2d608f16235", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_615729423", + "DeviceId": "a74e8750-6350-4e5f-a3d2-fb48f687a9a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103329026", + "DeviceId": "d7be2691-b305-426b-9d2b-1ddcf702bd96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488497781", + "DeviceId": "6e8ab50d-8123-4596-a1d4-913d720a9534", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_147775149", + "DeviceId": "6cf24430-4a4d-4190-8c23-fcb6b97c5d65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_970180231", + "DeviceId": "80acff74-d861-47ff-b054-626066c70ad5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1ed94699-344f-484c-af04-8c60ec30d3dd", + "TenantName": "Tenant-1ed94699" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973205497", + "DeviceId": "71915874-2f65-4140-a7a9-ac093c18b072", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200758627", + "DeviceId": "ab76595b-573f-4ac5-988e-4c09adc1431c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_370812879", + "DeviceId": "e0e1860a-77d2-40de-bbd1-04f66eaf01f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376883524", + "DeviceId": "96345bcc-01d9-42df-ae37-370497de9847", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278990357", + "DeviceId": "7eda8a43-d59b-4322-95a5-b8923fc8d96c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_122572086", + "DeviceId": "421c4eb1-7199-4bca-a080-b1b88d57a813", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9665f340-cd3c-46a7-b8b4-86efa2f71396", + "TenantName": "Tenant-9665f340" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580361583", + "DeviceId": "c092b91b-dd0c-4562-87a4-13724c1a3a62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752877333", + "DeviceId": "04759129-4c8c-41f3-aaee-52898494cc2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708672661", + "DeviceId": "2f329495-7852-4826-87ab-53ba80109e0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848252635", + "DeviceId": "4d73c0ae-bad1-45d4-b382-0a86cd2cec8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401567341", + "DeviceId": "007c7b13-bdec-4951-b774-64dcdb78954e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_389939997", + "DeviceId": "96eaabdb-15d8-412d-a750-0e708274461e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "85280d35-f777-4993-8fa2-34872f9c22b8", + "TenantName": "Tenant-85280d35" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164881891", + "DeviceId": "e9156b5b-07c8-489c-8e90-e4df2d375d7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575160577", + "DeviceId": "b044300e-028c-4944-8bc9-f05a8310ccfb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365930984", + "DeviceId": "9563e769-7838-47ff-988a-9c7217580892", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462852847", + "DeviceId": "9280bf81-0101-49db-9351-d54c2977e7b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_855909438", + "DeviceId": "b1c9b064-f96e-43b8-ad2d-3348fd1de1ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_795652931", + "DeviceId": "1b5fdece-ff8a-428a-a1df-f99fd1997ea6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b22b0f12-c3cd-4572-a554-9190293fa2c3", + "TenantName": "Tenant-b22b0f12" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972450907", + "DeviceId": "83ffc1c2-4e92-4bf7-84ac-fc6bf94157b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772811534", + "DeviceId": "c0b7b277-efa5-4e70-afd5-381a160ea57e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676543407", + "DeviceId": "49233737-975f-4f79-ac61-6c24238c08fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547374963", + "DeviceId": "2f3d82f7-d815-4522-b1b7-aecc6255c56d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121705618", + "DeviceId": "d35e2a8c-ae84-44a9-9c20-a1c4a6c74f06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_625180255", + "DeviceId": "c1d333cf-f6ce-40c2-b73c-784fcadab0d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d4270e48-86c1-4c57-8d7f-0cd41b51340f", + "TenantName": "Tenant-d4270e48" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761477494", + "DeviceId": "458c354c-cf7a-49d4-8acc-f3be6c58039e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313760676", + "DeviceId": "8d979ae1-24f1-4253-9a59-51a216b90350", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575841506", + "DeviceId": "a28e0bfc-4819-427f-a0a0-e7195c924421", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825431749", + "DeviceId": "4a24409f-dc28-4796-86e5-67be466cc8bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676215422", + "DeviceId": "c2b3bd88-d463-4c7f-9530-99986ef7e634", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_175635337", + "DeviceId": "a3a68a18-57c8-4fdb-a41a-d2fcfeff8d21", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11eb3175-53d5-4d24-8da0-51d6fdb073af", + "TenantName": "Tenant-11eb3175" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_277496869", + "DeviceId": "13c3f16a-3b96-4d2d-a235-5d0e6b08f9ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_715000218", + "DeviceId": "552a7373-0263-4b65-9786-17eaa26bbdd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441998575", + "DeviceId": "6ba794d0-6bdc-496f-9947-2a81f617036a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249059361", + "DeviceId": "500e43f6-2c32-4465-8eb8-0111311c5782", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651550962", + "DeviceId": "a3af3cbd-25e5-4108-9dfc-c63ad33c6b9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_398740099", + "DeviceId": "6e8386f4-5ce3-4c11-bdf9-9b5cf8fb2a69", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "571dec86-2ab8-4da4-8752-ee99193920cc", + "TenantName": "Tenant-571dec86" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_106903811", + "DeviceId": "f07d76be-aa98-4f5d-a619-5f9fdeb292f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155270407", + "DeviceId": "e62878db-73cc-4322-81f3-54d4c16d18c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_359822647", + "DeviceId": "578ad784-e587-4c98-8639-639c79f33c7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_104213943", + "DeviceId": "12032fa9-060e-4053-a61d-8c9ca1c0f252", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189587431", + "DeviceId": "3c73484e-b307-4d59-ad56-a5afc7749975", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_811311326", + "DeviceId": "e6aa27a4-68d0-4613-86ef-cabf1c59732a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ada4e26e-b9c5-4ab4-a2f3-2a549a28cd93", + "TenantName": "Tenant-ada4e26e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_698379923", + "DeviceId": "466be3a1-ea49-4c35-8e16-cf08c8f4b7be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738807488", + "DeviceId": "9494d2fc-baa0-4c48-8ee3-559e2980ada0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703621564", + "DeviceId": "9dccfe3a-862e-41f5-89a9-b3a2e8f571e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851853627", + "DeviceId": "312d1b98-b5df-4128-b518-d5794cc94d6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798129034", + "DeviceId": "51a75d8f-dbf8-43b6-aeae-2e5043a9ea4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_690527584", + "DeviceId": "03b2e194-04eb-4ea2-837f-94483f453074", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5c7f4606-9d5b-402a-951a-c8fec252a824", + "TenantName": "Tenant-5c7f4606" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327885918", + "DeviceId": "68d4a7cd-a6bb-45b2-826f-9a0efd6a66b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474678633", + "DeviceId": "83942ca9-8bb9-4e71-8338-eef350441ed4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451212047", + "DeviceId": "f37831ed-9d85-4c43-8d6c-b1b6d3e6585f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_468813998", + "DeviceId": "33818268-7d06-4cef-80c3-796a9455359a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869779439", + "DeviceId": "fdbe81b7-6a80-4b58-a0be-606961ac5c0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_913933414", + "DeviceId": "c3169af1-c0ed-487c-93f5-7e30b1fdc705", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e051da8b-f261-4da8-8680-64f0794a95b8", + "TenantName": "Tenant-e051da8b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273426682", + "DeviceId": "3c0a5a44-56d9-4ee3-b452-bfcb195032e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806964593", + "DeviceId": "d5d7659c-90d2-4b95-b807-6cdf64e07254", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684087683", + "DeviceId": "4ea436e9-f987-4411-9641-9bfe34508811", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_444122954", + "DeviceId": "20953376-63ad-446f-9fc4-3d936debb589", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861674636", + "DeviceId": "fab49cc4-3e35-4295-8144-efee3eb8c7fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_687959011", + "DeviceId": "b4769580-56c0-4b21-9fc0-91570c95ef22", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f1f54543-042c-4525-854a-8a1477116792", + "TenantName": "Tenant-f1f54543" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_647847124", + "DeviceId": "ef7ee668-f8c9-4053-974c-c81f8f9087ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606941012", + "DeviceId": "f72758a7-679c-4af3-8299-26b4de72c329", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263121401", + "DeviceId": "995bf2db-4b83-416f-af3f-c023b1bd700f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491224614", + "DeviceId": "ef651cc9-f4ed-4ac4-9c3e-592dd201f020", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196357386", + "DeviceId": "20d259ac-7294-4a38-9812-8a44b2979823", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_109314333", + "DeviceId": "c4b3bb51-b27d-4ffd-a831-66c2c61765df", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "db12b302-c4d0-4bf3-b6c0-29d5eaef153e", + "TenantName": "Tenant-db12b302" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728005569", + "DeviceId": "c0a44e50-8543-41ff-b8eb-caf1fb88affb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360084419", + "DeviceId": "61b8360e-9f44-48b6-b094-80799baec44d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516279890", + "DeviceId": "5a200c5b-73e5-427e-a19e-1d1d73266010", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130986431", + "DeviceId": "035d73ca-9be0-4b30-a21b-47f7149421ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_538179946", + "DeviceId": "b5da6c7b-4d9c-484d-9fdc-2f18c4f19c8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_220549649", + "DeviceId": "0af535c1-30ee-4102-8fa0-d4b3ec1d3117", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c24cb460-97a5-48da-9299-a103dfecde90", + "TenantName": "Tenant-c24cb460" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236904340", + "DeviceId": "c1b2f147-24b2-4fec-9a47-f1c617964279", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329871487", + "DeviceId": "c5e87c9f-a9b8-4bbb-803c-cb09e44fbf29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989060656", + "DeviceId": "fbfe7e78-6d0f-46e8-84b1-77cddc999f0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540672753", + "DeviceId": "74d05284-01b3-4320-bd12-31fe6c37170c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542374200", + "DeviceId": "762c2b27-a77a-4950-b095-e8a751f91659", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_838725976", + "DeviceId": "ed5c870d-bf9c-4d90-bff9-f36533e86ffc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf5ba93c-0cc9-49dc-addc-1d5d987d0a64", + "TenantName": "Tenant-bf5ba93c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215774000", + "DeviceId": "f5e5e33f-733d-4d73-a317-7073d75e174d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_300116413", + "DeviceId": "507e00f6-2a44-44fe-b257-02b43b29e17f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316192202", + "DeviceId": "bde30be9-4844-45dd-82db-a6f36c5a5c1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426401253", + "DeviceId": "b66b76b9-5507-44cf-a2b1-f206bc31f014", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342067531", + "DeviceId": "009097d1-87b2-4257-915c-135d7ac1f1ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_560917013", + "DeviceId": "b7fd1404-d848-4d16-ade2-63ff9648df6e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "86bb7c51-75de-4f6d-b21c-c4bbbc2f2828", + "TenantName": "Tenant-86bb7c51" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585625104", + "DeviceId": "2e3ec8f9-3050-4ccc-90d3-a79aab80e05c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_932213260", + "DeviceId": "a7fecff2-e3f8-4172-9bdd-a96a2f7e076a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341059385", + "DeviceId": "cd004063-3b56-4d0b-acf8-8a43f62de42d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_692383643", + "DeviceId": "1ef09226-244e-4955-b238-1e6b4103dba5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_578856787", + "DeviceId": "9f943f0e-7ada-4274-8478-73eb4e7f5f7d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_290939656", + "DeviceId": "835e2b38-89a0-4114-ae9e-4fa9da469dd0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9855289e-cafd-4d68-8aa0-3f94371b5b26", + "TenantName": "Tenant-9855289e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773165808", + "DeviceId": "4fb13f46-f5c5-41f9-af87-3c7a2df38be5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_649531576", + "DeviceId": "09e3dd2a-e112-41a8-a433-3611f5bf7b60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_686296718", + "DeviceId": "2aacbd80-84a7-475a-bde4-4a4ff3476003", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381978882", + "DeviceId": "7579af46-4c16-4740-a834-9ab532087486", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499970566", + "DeviceId": "06b04eeb-6eb9-4c59-966e-5315dcc58ab9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_460068773", + "DeviceId": "84acbcd7-2894-433a-b56a-0466e4ed2c17", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fe6050a2-fd7d-4252-b9a6-d8981aa5ddd1", + "TenantName": "Tenant-fe6050a2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152334424", + "DeviceId": "0ef5365c-3aa0-4aec-b385-f701a73534f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979360803", + "DeviceId": "0bda0fb5-a7a2-462d-961e-dce86d872e22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163771191", + "DeviceId": "9890a201-91fe-4ccb-8a50-5c24c1608054", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_874108431", + "DeviceId": "694c00d5-7887-45ab-97be-d1e338b246f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_646793175", + "DeviceId": "2f598005-0938-4516-a7de-91f38dd8aa98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_881838992", + "DeviceId": "e1117352-95c2-4f66-a9c1-fa43e34af63f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "479fa1e3-bfc4-4f65-a5b1-5ed58785f766", + "TenantName": "Tenant-479fa1e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706283868", + "DeviceId": "a5ac4276-7bb2-427c-b960-5391152fbb7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206970797", + "DeviceId": "00b282dc-b71a-411a-bf5a-296375da1d3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_459451718", + "DeviceId": "2798c005-895c-4f93-9805-1fcac4d14248", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450921264", + "DeviceId": "c469cdce-43cf-4396-bd26-6477f2595421", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369520019", + "DeviceId": "4191663c-62b4-4598-b5ee-f71c8a95802a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_328471718", + "DeviceId": "f6c94b15-8abf-42bf-bddd-b6764d7ca7c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf1dfbb1-af1a-4391-93e5-f8e540bbb8dc", + "TenantName": "Tenant-bf1dfbb1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738354061", + "DeviceId": "6afd69bc-9f0b-419c-a2a7-ad713c907675", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605192079", + "DeviceId": "01eef628-1c59-4e1a-8424-007281181afa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526133107", + "DeviceId": "b3a9c292-77cd-4bfc-bc36-1e8b1d42f20a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744360519", + "DeviceId": "9654d27e-ea31-4790-868c-10b16a48ed5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908560367", + "DeviceId": "f1a72796-0fed-4d1e-95c3-ae1c723e7c45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_890670368", + "DeviceId": "78a1eeb7-3cc2-4768-bbba-6a922cfdf897", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "401b89b8-eaa9-4f20-adb9-a694ffc1fc8a", + "TenantName": "Tenant-401b89b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232514365", + "DeviceId": "b459d2be-f01b-47e9-912e-4c15b55dbc9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746673911", + "DeviceId": "b0f36946-5999-4d21-b391-cad2dcdc7eae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_395644186", + "DeviceId": "91c6b2c1-d50f-459a-8544-d1ecab121722", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_967492526", + "DeviceId": "3373c940-096a-4f65-8868-242f6b6e39ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_696921565", + "DeviceId": "29d7b813-6441-4269-bc51-74cb1d831a8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_158044139", + "DeviceId": "492f02fd-186b-47f5-a893-a16da7ca9f5f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "54979b5c-01a4-465b-8978-c93b100b7d05", + "TenantName": "Tenant-54979b5c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_480827056", + "DeviceId": "377dfee5-b69d-494f-8679-d9c1da8c79bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488814314", + "DeviceId": "93a2bf00-7414-4b96-859c-1cc56ad7cbf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596702186", + "DeviceId": "8872314b-2db4-4231-91e0-d3637a6829f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145774959", + "DeviceId": "f91bebff-b62e-40d2-b778-f7b2752e2c6c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368389601", + "DeviceId": "303e4b1e-9c84-4ad4-a1a8-5c0fc17c20ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_528424659", + "DeviceId": "d83113a0-748c-41e1-b686-b878ec82157b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05bc01a2-e4d0-4a8c-bd59-792ec1918bcf", + "TenantName": "Tenant-05bc01a2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114304118", + "DeviceId": "baf6d3e3-1a7f-47ee-a13f-c5009405426a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531448695", + "DeviceId": "d4f5d857-4b2c-4cdb-bfd2-fff0513ed061", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872248813", + "DeviceId": "1ccf02e2-f10d-4d59-8a28-64ee56be1a88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_993942246", + "DeviceId": "7f4c340c-855d-4633-91f8-b9161b4baabc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_641466385", + "DeviceId": "254ca2f5-7e5f-4658-b747-a7ac550fe8bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_618019925", + "DeviceId": "ec44bb4e-8515-44f1-b8f3-e6274176fcc8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "89ca7c46-9332-48ce-ba9e-631f58ce1d33", + "TenantName": "Tenant-89ca7c46" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100208400", + "DeviceId": "235c82f1-1ef1-4490-bb04-4ee9f793ff83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381146070", + "DeviceId": "b1c152f8-b9d7-4ba4-ab8b-d3245ed57469", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_110542682", + "DeviceId": "c2786978-394f-46d2-a29c-b2b20887949d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154049577", + "DeviceId": "c35fadb8-1e04-412c-a4f4-7d0ef8dc8d1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266397552", + "DeviceId": "190c1d54-5941-4846-94e2-3d8913664e19", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_894729740", + "DeviceId": "6ff3f6a0-54f3-4ac4-baba-368726ab3fa9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d859c921-5934-410c-9f6a-8e230c2130e6", + "TenantName": "Tenant-d859c921" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_198096198", + "DeviceId": "2307bb05-1fe2-46bc-b247-92369f6a5a81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_214923045", + "DeviceId": "c345dc1e-8f3f-43b3-bb36-19a039cb9618", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774903464", + "DeviceId": "ab5d760a-28aa-433c-b3bf-e17faaadbc7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782551533", + "DeviceId": "0f054e46-9e3c-46d6-bdf0-0ca3b0c20132", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_723061451", + "DeviceId": "3be30bf3-51ff-4517-94fc-b065f401df3f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_371673274", + "DeviceId": "7dc9a474-9ab2-4343-9cf5-6ef126969954", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3c03f756-2707-4f66-8b19-2fd805a9898d", + "TenantName": "Tenant-3c03f756" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893165408", + "DeviceId": "53ee19fb-6d24-4aef-b747-99855b5b980c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982804170", + "DeviceId": "aa704e47-8c7b-4425-a6a4-c1406944ce5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679330385", + "DeviceId": "41dd5c15-b9d9-4ada-a1f5-e5403e7ad3d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131391691", + "DeviceId": "31562769-6774-4129-bf10-81ec654c0d29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116205408", + "DeviceId": "e22a26b1-b42b-483a-8bfe-619a79b0bb52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_746178739", + "DeviceId": "bcc023fd-75f6-4c99-bf54-781349176faf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "abcd2ecc-9edd-4784-ae6a-9f942013a8d4", + "TenantName": "Tenant-abcd2ecc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186068022", + "DeviceId": "1a2196f4-f18f-431f-8102-338e989c232b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193607313", + "DeviceId": "32326967-2842-491e-979e-a814f2d2276f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_520063177", + "DeviceId": "3ccb02e2-33a9-45ce-92ed-7fc74909ba93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358457859", + "DeviceId": "74a6d1f8-630f-4b47-8b80-05edcd04c623", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295652657", + "DeviceId": "63b7b687-6f5f-477e-83d2-b1dc5173cf42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_933774170", + "DeviceId": "682a9b8e-68f2-4817-b4d0-a4987314c9a2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "54ecfac2-cf85-4254-a8ea-39236930ab6b", + "TenantName": "Tenant-54ecfac2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521819600", + "DeviceId": "8d0cf628-63d9-4d12-bad8-016aeba20026", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721825399", + "DeviceId": "f3d45b55-4de2-4434-95f5-4cf0feed8731", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651912281", + "DeviceId": "cdaef32a-ad28-4e16-bf20-4cbdca1f1669", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851001031", + "DeviceId": "013f377f-8882-4c34-a8d3-4b59a506f344", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_277537741", + "DeviceId": "af97529c-d0c8-42cf-8545-e2c7e43da607", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_916928764", + "DeviceId": "0d3a5378-6fa6-4302-a5c3-b7daf823ec01", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bcdc9802-9b84-45b2-8af2-9735830ddf22", + "TenantName": "Tenant-bcdc9802" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430115160", + "DeviceId": "b5b7934b-6ddb-4bc7-91f1-4117207952ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_807104564", + "DeviceId": "2f2fecef-a40a-4f8f-890e-b3d469d47121", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616996798", + "DeviceId": "4492b8a0-dbf4-4ab4-b0c1-519d4fdd9e38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312585679", + "DeviceId": "58604af9-cc6c-4e52-9207-3c8f96694a8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860879189", + "DeviceId": "67bb6952-be58-4d93-a41a-2d3081ddc634", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_406762810", + "DeviceId": "23ddf489-efbd-471c-ac79-8d10fbbf7880", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7a1b6782-2808-4d45-993f-ca7bc4cb369c", + "TenantName": "Tenant-7a1b6782" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756038748", + "DeviceId": "c5a58f15-2891-4fe7-91ca-6787ce8ce3bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897717943", + "DeviceId": "73baf6c8-3e68-4e94-a010-3f46fac7eaaa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893571604", + "DeviceId": "c7a071fa-c160-4e2b-9021-c1174e5bcd3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_778853298", + "DeviceId": "b1935409-6a58-4b0c-aaca-5e5f725308d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640681940", + "DeviceId": "c2678a6b-884e-4c7f-a4a5-333dd0b03798", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_141533013", + "DeviceId": "b524bd87-09b8-4901-9fee-153d79548503", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7b81848-448a-4e3a-bece-2a92ad8328ef", + "TenantName": "Tenant-b7b81848" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745363687", + "DeviceId": "6212ac15-0e6c-4782-b6d1-0668802f0e16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120437427", + "DeviceId": "c9356d52-67e8-4eac-b77e-22a5010eb80d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584642301", + "DeviceId": "28f47feb-f71c-4c6b-a597-b7a4fb64c60d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_990501637", + "DeviceId": "f5a307ae-0d94-478c-99bb-3e64a128aa6f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614880760", + "DeviceId": "2402a5cd-bab2-48fd-b7ed-16d7e1980bf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_622577552", + "DeviceId": "1be06495-d2bd-424e-b7c2-3a31f4788f82", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "692a0105-f514-4593-8da4-6d1c26b4adc0", + "TenantName": "Tenant-692a0105" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_776519648", + "DeviceId": "5b5ca599-fb80-4e63-b7d9-54879886268a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265595034", + "DeviceId": "a3329c26-cfcd-4871-ab68-cd0c0212e9c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687195983", + "DeviceId": "1cd9a867-b4d3-497f-9885-99f397e87359", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614449932", + "DeviceId": "102742b9-db04-4fee-95a5-fad3355e2e50", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319509437", + "DeviceId": "88cc1fa1-8bc5-436f-ac50-3eb52a48b7de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393814924", + "DeviceId": "1ad27f73-d851-43de-942d-b5350912b8c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "55e1881d-458e-425e-9c28-a424bca233f9", + "TenantName": "Tenant-55e1881d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690549852", + "DeviceId": "cd35bb24-1032-4e51-8777-dfc11e6eb09e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414209416", + "DeviceId": "db243485-2f4f-4bd5-8a12-d51e6173878b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_522936992", + "DeviceId": "3bb691f0-189b-46c9-a715-c55ea50a6544", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400838759", + "DeviceId": "2e91938e-be96-4e46-986f-282c1de1c600", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697565005", + "DeviceId": "8a8c4499-b892-4022-800b-c38bc12df935", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_546956003", + "DeviceId": "fd95e8e0-8886-4b21-b933-eb6bd692f64c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c0734bbb-f7ba-4669-b5fb-06ee887416bf", + "TenantName": "Tenant-c0734bbb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611839846", + "DeviceId": "d38e4e9f-c13e-41da-be85-c86d86ee2151", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650172904", + "DeviceId": "7f71c4cd-f802-4a1c-8711-ad86343ceea7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643973800", + "DeviceId": "ab26851f-17b4-42c7-af13-13bd333235cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733961793", + "DeviceId": "bbfb4bcb-c4c5-496b-9ff1-91483a38ec62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_834596594", + "DeviceId": "c02d0fe0-f1b0-403e-970a-de8c8dc97a96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_415025974", + "DeviceId": "51dc0694-5aa3-4bfb-a9ae-6ea7e627b095", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "810a054c-da1e-41d6-b3d9-603db812973d", + "TenantName": "Tenant-810a054c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405516202", + "DeviceId": "756460ab-035d-46e0-bf29-79640d8e68e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379208006", + "DeviceId": "49f4ca89-7300-4596-91cd-7925133b2ccb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345348309", + "DeviceId": "965648dc-6023-4783-bfa8-a57d6462cf78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940540645", + "DeviceId": "c4f62c1f-a3ff-41f6-98e0-58008d2cde14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929022221", + "DeviceId": "956e9749-c45b-4c5c-bcee-c17ee96e5763", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_186877850", + "DeviceId": "9121b495-a2ea-4558-84a8-c4d8bbc95bbf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "afbc8c73-3931-4488-9448-750198b57c0a", + "TenantName": "Tenant-afbc8c73" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879367026", + "DeviceId": "af9bdacd-64b1-4466-b892-bf30451ab989", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275942355", + "DeviceId": "6f110787-5486-46e1-b598-d3ddb20ced57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263759659", + "DeviceId": "406725bc-476c-4546-9916-f8c30c8b8237", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476941505", + "DeviceId": "2f71c7b6-332c-49db-87c3-154c0b3e71e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123693493", + "DeviceId": "8e2958fd-27e2-4c06-b06d-84bf4817b0e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_744061450", + "DeviceId": "c09c8f8d-fa48-469d-9d09-88f4e766d5e5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "668e53d5-8fcf-406f-8057-9c5ebd2505c1", + "TenantName": "Tenant-668e53d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_863390405", + "DeviceId": "d2cc6660-2d8f-4eb1-9a89-b4f742105f43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264697119", + "DeviceId": "8a0c48b1-0139-449a-b534-a35e2f131184", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706821079", + "DeviceId": "1cc43fb9-cea2-477a-b6e6-4874e0b6773d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770420901", + "DeviceId": "6916c5c8-2457-48c4-b897-d6358da87b9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626464394", + "DeviceId": "81034c10-d455-48f9-a09b-1a258255371d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_121168623", + "DeviceId": "50e4fa81-3040-4eb5-b154-1fa8b21cad2f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6f7bbfcb-0e85-4075-8725-91a16cbe6d8d", + "TenantName": "Tenant-6f7bbfcb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821784863", + "DeviceId": "b9fe3eb2-403c-40b1-8836-2dbaa73ae956", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705914071", + "DeviceId": "46b9ea21-1ea3-40c4-ad14-b16c3e2acc2a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315427949", + "DeviceId": "a9dbbb65-5fa0-4d73-8ef1-9b796060f81d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378464975", + "DeviceId": "883e02c1-148b-4610-85e6-6115152e77be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724273320", + "DeviceId": "fe79a68c-3604-43de-a1e1-c1c11408e841", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_345292185", + "DeviceId": "5e38d3b9-94be-44b9-ae98-dae62e71e5d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6feab7e3-9369-42da-93e4-7fdae4f6dbda", + "TenantName": "Tenant-6feab7e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285519219", + "DeviceId": "fff1da06-5b5d-4500-a43c-70639b8dabbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632965205", + "DeviceId": "eb27a15a-0cb2-4cb6-aa3c-c668c9e1cd11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606266970", + "DeviceId": "ded266ee-0451-4639-88fd-0bce0863db9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359646888", + "DeviceId": "2b553a02-b035-4dfb-a348-ea64efc864c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426107715", + "DeviceId": "47b0f970-b0ba-4ba3-a3a5-5c8fbfe6d308", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_174204511", + "DeviceId": "401162bf-138e-4abb-a42f-d2ebc9158ccd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf57c7b3-0765-4114-b15b-2c4658656ec1", + "TenantName": "Tenant-cf57c7b3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_923083422", + "DeviceId": "cb83c3e6-5752-4ee0-9223-1ad5ac4e6e44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_937468498", + "DeviceId": "0396cd1a-0cea-470d-8001-4716690f4248", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506776974", + "DeviceId": "8e9d9bc6-d0aa-426c-8ef7-f3bf30cf6df5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_832381622", + "DeviceId": "ad4a3c52-9625-411e-83a7-2f479957a3b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_872396214", + "DeviceId": "528aad61-66a8-4b37-bd44-e9ecaa8472fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_628347661", + "DeviceId": "b8d6d810-4b1f-43e0-a5dd-8445817ca060", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bee7ff3b-ead7-4ac8-a7ef-f3d15c71580a", + "TenantName": "Tenant-bee7ff3b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_293567615", + "DeviceId": "6be6c94d-40dc-4f2b-963b-ebebbacce40f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381169147", + "DeviceId": "beda83a4-24a2-4141-bd71-0b72e9724ebc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_723562502", + "DeviceId": "791fad63-d0a7-4cb5-8c08-2a1f133c9b17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615346562", + "DeviceId": "06c23f70-30e6-465d-b25f-6a101cd4727e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331177106", + "DeviceId": "4a42a507-556c-4e44-b9d4-f2cd282b8dfb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_368481713", + "DeviceId": "28a51b08-3452-49fb-bb38-e3e9be8702ed", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "641e3538-2a97-4676-bc4b-09bd796b2b86", + "TenantName": "Tenant-641e3538" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267717924", + "DeviceId": "f22e9be4-2a6a-408f-ae8a-2cc8a761c55a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_807984914", + "DeviceId": "c999b733-0364-4650-b652-0922fba707f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315083880", + "DeviceId": "cd74d9fa-5043-459c-841e-84533f62cf41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177931467", + "DeviceId": "64046487-cd2d-453f-8b71-4e8e06698438", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127851756", + "DeviceId": "df9e3b38-1620-4ee9-83c8-7224fc7fc115", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572945997", + "DeviceId": "8295c575-78cf-4845-ac1c-d6187ca4aed5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e542192c-b72b-4bbf-812f-672f758e2123", + "TenantName": "Tenant-e542192c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818938731", + "DeviceId": "fccf579c-8b4c-4b01-a47f-8df76070c61d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643741824", + "DeviceId": "fcb0a8f5-4440-4775-8120-6d58059d3cd8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_828489270", + "DeviceId": "a615b758-db2b-4b63-b00b-d33a42024067", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479433099", + "DeviceId": "15863331-d160-4173-be19-8be122662127", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_874387759", + "DeviceId": "a61f8a15-71a0-45f8-95a3-59ef70216a6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_278832876", + "DeviceId": "d488288e-f1bd-40c2-8a4d-dcb00ad2076c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b8bce5e0-6c6d-4596-ac2c-b94690a907f4", + "TenantName": "Tenant-b8bce5e0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538218512", + "DeviceId": "e8d6687b-2de5-42be-a821-94cc221cea7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388396737", + "DeviceId": "47c9ddc9-426d-4858-991f-7e63bf62f18d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_197665489", + "DeviceId": "a671ecb8-d521-4635-83ef-eaa652c565b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_166839557", + "DeviceId": "259bb948-9734-4e01-87cf-f3f728b5a83d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519549143", + "DeviceId": "c87d0250-1f08-4cab-96e3-15fd9c1133ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_155003439", + "DeviceId": "c74e15b9-4a66-4848-81e2-9e3c4166d776", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "03123fef-cbb5-4678-aaef-e08d78ae3ee1", + "TenantName": "Tenant-03123fef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377703272", + "DeviceId": "de6c1146-077a-470a-b14e-9d88c4085720", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_569825312", + "DeviceId": "2ea62634-b723-4126-9104-cc1194986e41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957874220", + "DeviceId": "03220fd7-26ac-427d-9e3b-086d66563b5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580056758", + "DeviceId": "6f923e9e-3722-4adf-aec6-0b2463cd4727", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793500968", + "DeviceId": "3f40a706-b3ec-4834-b73d-32b9bd55d40a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_723305674", + "DeviceId": "191d88c1-4ddb-4283-a47d-5b851a29adf6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "18016734-951b-4989-9811-0bba5ca5ea1a", + "TenantName": "Tenant-18016734" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_846908227", + "DeviceId": "de9f2943-d6f5-4495-8399-2d19805a2fae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_297487425", + "DeviceId": "dabeb834-b537-448f-951f-b3d31dd5a8c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506715425", + "DeviceId": "b289be28-1ed2-4ced-ae7a-71ab4039d613", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438964181", + "DeviceId": "ecbc3497-4211-4c89-bf37-420fda963e67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_805242587", + "DeviceId": "583db943-376e-428e-bbba-f4b4682db70f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_795391996", + "DeviceId": "c9c86f49-29d3-4751-a785-4d8a83e4d38c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dcb50972-efca-4f32-94d5-64300becc78f", + "TenantName": "Tenant-dcb50972" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747172738", + "DeviceId": "c859626e-a8db-41c2-96fe-7a651933b897", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_630473840", + "DeviceId": "19634d80-06d2-4c39-9f57-01a71a866b31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_832392094", + "DeviceId": "0706bc4f-56c9-4964-a9d6-7080767854a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319114203", + "DeviceId": "51b48b02-b664-45d0-a80d-edd26082e09b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_318559006", + "DeviceId": "a4fc2914-870f-412e-9c21-cfd89792f3bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_525876447", + "DeviceId": "c8d0174e-800b-4518-b515-d9d88cae1960", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7cd5dd7e-c9bd-40b6-bb94-94b498253d34", + "TenantName": "Tenant-7cd5dd7e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154834591", + "DeviceId": "f9d8494c-4830-4857-b0fa-07b07ed568b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688910243", + "DeviceId": "5b335aa0-38a5-4ad0-b353-48107e087e09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380154087", + "DeviceId": "cd45aaab-3513-47b3-a189-e88c30ef2a28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_652387200", + "DeviceId": "b50dc20a-b88a-41ef-9592-ac9573700e97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862443624", + "DeviceId": "8b96ccc8-7015-4acd-8005-52de86c16a66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_208955150", + "DeviceId": "e6f631ad-2fa1-4369-b433-a1c7b4c0132f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "79e10bad-4243-44be-bfe0-6f990004054c", + "TenantName": "Tenant-79e10bad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916410352", + "DeviceId": "c1f573e8-16bc-4ecd-a77f-d4ffd47e3c75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612793199", + "DeviceId": "8aaf0c19-b724-4067-9689-c39955f730b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420454492", + "DeviceId": "d3b5b2ce-3296-42fc-9bec-679fa9c42e40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550666577", + "DeviceId": "d051f681-dcef-4ca5-9fee-fd5210892d8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284937290", + "DeviceId": "51eae6c1-0357-4f50-bdf4-0981c00c0cae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_175106857", + "DeviceId": "f5bae1b8-6c8a-4557-aa14-07bfb4e4fdea", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "20747ca0-d5fc-41bb-a4a3-503d1e596db6", + "TenantName": "Tenant-20747ca0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704403159", + "DeviceId": "51bbe4b3-b1cd-4546-99ab-2acb257f5398", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899805760", + "DeviceId": "452e0132-f333-4fd8-951b-5ccab9b75e9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279519985", + "DeviceId": "4f8ede90-92a5-47f8-a6e9-753a64a17924", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451011177", + "DeviceId": "d4e2cd18-e459-4df1-baab-63fac536b970", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384091347", + "DeviceId": "d13a9c6b-6d0d-4eaa-9a70-6bffa1167ae8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_733491399", + "DeviceId": "96e8c34f-d9e3-41f0-8230-bb9fd9ff5abd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "66188231-92c5-4652-b315-81936cb91d9e", + "TenantName": "Tenant-66188231" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642858249", + "DeviceId": "55cf6f5a-1639-462b-b864-3989886fe74f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295483654", + "DeviceId": "8725d62f-232e-44f2-bc84-32bfec7686b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_815498852", + "DeviceId": "45f0b669-8060-4e8d-bd9a-97c0b12b2dde", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929058519", + "DeviceId": "6cb51f41-04eb-4147-91c1-45572313d798", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320480529", + "DeviceId": "663259b0-b61c-4f5f-9f26-97f7f97d4a18", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_997803955", + "DeviceId": "a72e467f-6c63-4434-aebe-7cbd3ed12978", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "790faaa9-1b8f-4c9c-8f76-81fb3ed0ebbe", + "TenantName": "Tenant-790faaa9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688872364", + "DeviceId": "f82c905a-6b5e-4c50-81d6-8bd0b7a55073", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433815839", + "DeviceId": "1dcc5195-140b-4e98-bb8e-c32255317851", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_470652490", + "DeviceId": "b6c34663-1115-4148-9e3c-7ce3b4511670", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553850648", + "DeviceId": "1c95e497-3af9-41a2-938d-58dffe7a2d06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414393883", + "DeviceId": "dad02d53-ef5b-4e4d-93e7-e2bb977b2d81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_321770739", + "DeviceId": "113bccb6-32fe-491b-934e-e3a50c418a1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5138192-bcfd-4e1f-8814-c0a05017a554", + "TenantName": "Tenant-d5138192" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430726197", + "DeviceId": "8c78a420-3b43-410a-9abc-bcc8f0cc96a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108490403", + "DeviceId": "fb705c85-0248-493a-9cd3-51d3f0622957", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876920215", + "DeviceId": "a11cf86e-a2a9-4f64-8c78-bc4faaf8f47f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907052384", + "DeviceId": "6fa3140f-51ec-49e0-a0b9-6936e935210c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584356277", + "DeviceId": "60abe007-1b34-4c6d-948d-4a1f4563dd87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_852348792", + "DeviceId": "f96c17fb-74d5-45d3-bb72-97580e67bf22", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "390ccbf0-ff44-4932-89e0-25b3ae6239ac", + "TenantName": "Tenant-390ccbf0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245967566", + "DeviceId": "08131334-6500-495d-93d9-4f051292a2e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948933601", + "DeviceId": "138d8031-52b2-4b95-971b-917346fd0912", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185438613", + "DeviceId": "5a769e00-cee8-45c0-a241-55ac79a36c91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386062332", + "DeviceId": "efa13233-705b-4270-85cf-f8a80af5ff2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594221384", + "DeviceId": "da0798b2-9a69-4e68-9bbd-9269183ec1ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_913437719", + "DeviceId": "db0d3f19-12a6-49ad-8118-7399efba959c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a1a0945-bced-401e-a54e-92603fe0a55c", + "TenantName": "Tenant-2a1a0945" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397061489", + "DeviceId": "d7600cb0-dfd7-4ac7-9947-d33ef795d8f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930765786", + "DeviceId": "db9f2b59-d158-4b86-aa68-cce2a2433044", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704933465", + "DeviceId": "f3f731c6-9f3f-42cd-96d4-e242a84b2ab0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198534247", + "DeviceId": "75b01448-fe1b-4dd6-b273-892ff93d6d87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176938405", + "DeviceId": "3f78ab7d-992c-415e-9302-bf1f58c25ec7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_181198087", + "DeviceId": "02a99250-9937-44ae-acc6-2ef12333abb2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e59a1a04-eeea-4395-beb8-c578f290e037", + "TenantName": "Tenant-e59a1a04" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531380595", + "DeviceId": "4a2e9eb3-2d21-4107-b248-504b459e06ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307952070", + "DeviceId": "337d1181-91dd-4149-8112-de1c21e34c69", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920745776", + "DeviceId": "aae1558d-ca77-449b-b54e-bff6870a116f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900445162", + "DeviceId": "0349ebe2-82b4-4fb4-aa4b-1df3a5b5ebe6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457639591", + "DeviceId": "b809dd14-1306-4630-be63-95de79b77a9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_708369372", + "DeviceId": "c8ee439c-4829-4540-ba11-7cef98b3fa19", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4f1114d8-44d3-4380-80f7-806149e368e3", + "TenantName": "Tenant-4f1114d8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410444474", + "DeviceId": "0d4093dd-58f2-468d-b8ad-4fb18250fa43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837641887", + "DeviceId": "91a41af2-787e-4bea-9fea-4abf901135ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407924790", + "DeviceId": "1a0d9170-fc0a-45d5-a1d3-dd93dd8b0b08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251767449", + "DeviceId": "9798e148-4305-4c3b-a832-297b4cbeaa7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_465337821", + "DeviceId": "617f6615-73cc-4fc7-9962-fc35058ebb8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_365844319", + "DeviceId": "fea70c09-ce68-4df9-8122-bee193dc3b59", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11ac19da-5d3a-464e-abf9-321770ddcc11", + "TenantName": "Tenant-11ac19da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_367110372", + "DeviceId": "f6c86b55-eef0-4ba1-8584-eeb8e0a597a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_396306569", + "DeviceId": "34fa9ae0-d09e-47fb-bc83-bf9c1ff73bef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813125914", + "DeviceId": "1b6d9618-31b8-47c5-8a4c-a83edf3a4985", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981084123", + "DeviceId": "bece0a0b-41dd-4f06-acd3-041213baa220", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739245532", + "DeviceId": "c629841d-524e-4b4a-a461-c54a8c208406", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_361555337", + "DeviceId": "8f6adfc1-7817-4334-a70f-d985f6e45c8c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7adbb8df-47a3-49ca-92ad-4b4150fbf421", + "TenantName": "Tenant-7adbb8df" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892322418", + "DeviceId": "28dfe0b3-4390-4ed1-8a77-9e25acbd5854", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393839456", + "DeviceId": "455e6ced-e6e4-4605-974e-d8dcbb503417", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516797867", + "DeviceId": "ec4e0a37-83ce-4cb7-a6b1-13e9551c7f5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568115225", + "DeviceId": "638ca9dd-e399-43f9-bd35-da9bf68d0159", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930126883", + "DeviceId": "e955ca4a-dfae-4d8a-bb3c-2d7342d71004", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_293916191", + "DeviceId": "f2fcf41d-cf5c-4d30-aea1-88b09c36e175", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ca019e8d-892b-459c-b6db-70561dd85942", + "TenantName": "Tenant-ca019e8d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948616282", + "DeviceId": "7993fba4-29a6-4575-8503-1d4bf278fee5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261456066", + "DeviceId": "31bc4610-5e96-48de-a10e-5e88a584ff4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740163637", + "DeviceId": "010728eb-3ddf-4a18-ada7-3939742d93b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307126217", + "DeviceId": "71f443b0-d772-44d4-8dba-6fd86948bee0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426980921", + "DeviceId": "6b5f6517-3999-4ae8-b66f-77bc6ebb9fa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_602432386", + "DeviceId": "03d00532-7ceb-4e8e-9c11-9a5d431bae1e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7138957e-94a4-4375-9abc-a5ef355693fd", + "TenantName": "Tenant-7138957e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304983124", + "DeviceId": "b345bd4a-6477-49d4-b843-e10975267205", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_111792548", + "DeviceId": "aa3feeaf-5350-4cc9-a587-c4a6cc2723c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605495231", + "DeviceId": "dcf8e1fc-58cd-41f9-92be-b19c1fa3c0fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939999128", + "DeviceId": "403a6d3b-ec7f-4888-b5db-80d1446cc928", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_367790832", + "DeviceId": "ab07171d-d61f-4101-ac56-2b908c874561", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_920849588", + "DeviceId": "305a1bc9-debe-4725-9cc8-988919aac227", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "408245cf-ab2f-4899-988d-9bc88099ee39", + "TenantName": "Tenant-408245cf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771178507", + "DeviceId": "b7f2d6e2-ceef-43ad-861d-4b58a50d26f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_135668840", + "DeviceId": "2ebdb7cb-459d-4761-a8f8-7f36e0b55f1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611377799", + "DeviceId": "f955fe76-11e9-41c7-be80-b113dbcffbce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168241503", + "DeviceId": "3a98c8d3-a9d5-4591-9c37-83db3abcbd8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_245122924", + "DeviceId": "67c91b5f-8fc3-46c5-8c80-e8e893aaf569", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_602650696", + "DeviceId": "bfe44b4c-5797-4cba-bd5f-56aebe21c9d5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d6cc65cb-153c-44e2-b92f-a5a85cd65643", + "TenantName": "Tenant-d6cc65cb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872840326", + "DeviceId": "445cc87f-4a31-4e74-ba6b-0d296a2c24a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905072600", + "DeviceId": "b6a910a3-316d-47f6-8636-333315d68e16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_978327851", + "DeviceId": "511d02a4-d7fe-4fd7-a2ec-04841e1cae4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866184773", + "DeviceId": "6c9e25fa-950c-49fa-9834-59fe1aa6d91a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_633212819", + "DeviceId": "3aa6492e-c846-4bbc-ba46-960c912a5166", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_511568220", + "DeviceId": "4b8dc0dd-f1f8-4f0f-8d21-4136d3d37efb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "294161e5-e1e9-4dc8-aa63-32b6169a9c50", + "TenantName": "Tenant-294161e5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659161330", + "DeviceId": "4ef40bc0-8960-4830-9f11-5752285f00ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206153254", + "DeviceId": "82fb4f56-7e11-4b10-b318-258b1d452c42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218894840", + "DeviceId": "5a9cfecf-afd6-4c6b-910c-b655dd9a3289", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577835087", + "DeviceId": "02e3a4ce-5411-4b93-8ec4-35fa8c42a66a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868590666", + "DeviceId": "2ab53956-1d1c-4950-8cc1-b31b35933d25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_411402752", + "DeviceId": "925d6a0e-d3b2-453f-96d3-dc429d247379", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "da3d7fb0-a419-4b4d-9bc0-ee74ad44e0eb", + "TenantName": "Tenant-da3d7fb0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584113076", + "DeviceId": "4998873e-70ca-41a7-964d-0288b92ee249", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_179780107", + "DeviceId": "8c8e9fcf-9c9e-4357-9b65-d3fb84d14f4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570254141", + "DeviceId": "dbb4ea3b-ba4a-4c0e-8dd0-5532f12e37ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940161813", + "DeviceId": "11f6fa0e-7ad5-4cd8-8202-1a7b9b818fda", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127445298", + "DeviceId": "bcbeb6ec-ffa2-4dbe-9042-599c3c03bee2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_934184081", + "DeviceId": "d4a9576c-9611-4068-8bed-b10d449a7ecb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00bb8e95-a5cb-4c3d-9282-48084eade900", + "TenantName": "Tenant-00bb8e95" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720084140", + "DeviceId": "b32694de-ba8c-4dea-956b-46fc2105a878", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_955017426", + "DeviceId": "f538aa3c-403f-4514-9d3d-d47e784556af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930063631", + "DeviceId": "9a36d269-525f-40ea-93e9-3080ae0e7b15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916843348", + "DeviceId": "575aedc6-128a-44d5-8d0e-d0b7f2c3aa7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820329385", + "DeviceId": "1594bb84-ca8a-4a94-89ef-b60d786453bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_468455464", + "DeviceId": "2176adc2-c545-4cbe-919c-5ec61e0d2a85", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a287fffd-5760-40bc-968d-f92fe1132961", + "TenantName": "Tenant-a287fffd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699846865", + "DeviceId": "553bb60e-bd3a-4e8f-925e-7eb88c40dbbd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668500063", + "DeviceId": "0be49182-7c0c-4dec-a78f-32e1a05d4a44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954067048", + "DeviceId": "aefa7b94-e73d-47cd-8b70-fcdc241842f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426952473", + "DeviceId": "3b70ee77-0d5d-4921-991d-e0384427706d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556839985", + "DeviceId": "38494ffa-1ad5-4969-99cf-3ec66db33861", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_177635400", + "DeviceId": "90891dca-ff19-48ba-91bc-ae42e6a3fe1e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "964f6bf0-b77f-4d98-a212-d737213c0d9c", + "TenantName": "Tenant-964f6bf0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_683646723", + "DeviceId": "4cd2beac-ae7b-492a-a44e-1ca153d14706", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827135744", + "DeviceId": "2a46f480-3513-434c-a06c-08201d8c842f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958614252", + "DeviceId": "940fe10f-bc7c-4d66-a586-065e21297adb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143706756", + "DeviceId": "44a5eab3-0b57-4886-8509-f922b6442c41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_985630317", + "DeviceId": "416ed8e4-645d-4665-9255-e302dade34e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_195047056", + "DeviceId": "2d9bd4ce-fb32-4f39-a2d5-b5c5f1ee2c18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "493883e3-90e4-4103-9fba-7c00ed7f6c88", + "TenantName": "Tenant-493883e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563204282", + "DeviceId": "baf59eae-9104-4082-a84e-cf305f0c5e6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346741209", + "DeviceId": "663ac35c-9986-48f3-873f-3383538444e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136520465", + "DeviceId": "a2817738-d7cc-42ea-b744-85900408f55a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737483650", + "DeviceId": "ee39449e-bb82-4205-b4c8-6cc0dab24e6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289423099", + "DeviceId": "4ec7e431-9b8d-419a-a856-cefc65ed42af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_364579187", + "DeviceId": "e0d184f9-b101-490b-b75e-e79c8fe466a7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3c79a0a8-de3f-41cb-90d1-afd68b2cbc2e", + "TenantName": "Tenant-3c79a0a8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680435082", + "DeviceId": "990e8560-890f-4a32-8b40-85dcd11ccee0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_758009243", + "DeviceId": "34b743f3-d9c1-4305-b9b7-ea11d1072aac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833963954", + "DeviceId": "b4fc98ac-8573-4156-a688-cbd1433703d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_362242428", + "DeviceId": "45d6033c-12ef-4dc5-a8da-3c418469c9ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940999053", + "DeviceId": "c02bc730-2c32-4914-8380-30b4d42f02b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_612367844", + "DeviceId": "04b4a62f-2f8d-4109-a780-24c065961657", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c4f237e-0344-4580-aba0-2363f0f528d0", + "TenantName": "Tenant-1c4f237e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323821925", + "DeviceId": "ffe08911-c5bf-46a2-a335-0f30c2b670ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318636150", + "DeviceId": "ff64f957-b225-48ab-b22b-2920cc323d74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753255220", + "DeviceId": "f36407e6-4c8d-49b8-a007-aa18ef2b169f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_474793063", + "DeviceId": "1bd7e79d-217a-48c7-81d5-15ac894b3dfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375898668", + "DeviceId": "210d651a-a1ff-4dcf-9cf4-2568d4ba1c47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_288289652", + "DeviceId": "79f02e32-acc6-40f1-b5ad-09220890a4c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "593db926-0263-4315-b4cb-9ea1f8fa1721", + "TenantName": "Tenant-593db926" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164027948", + "DeviceId": "72590e2e-6067-4eba-9b2b-3bc0c00d36d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462424257", + "DeviceId": "b6a37230-9c60-4d1b-876c-bcf505d8ab62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_777595170", + "DeviceId": "239c101a-664c-433d-a132-506e66714d19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939068533", + "DeviceId": "a164bb3e-8cd2-4d68-9eb6-3b1ced2873fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921976603", + "DeviceId": "82a69703-7384-4cd1-9597-925fecf7717f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_610342557", + "DeviceId": "01ede64d-93f1-420d-b62a-1737283c52da", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "23b8cbb0-a54a-4ffa-bb7e-b70559440fd2", + "TenantName": "Tenant-23b8cbb0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631101085", + "DeviceId": "69d6dbc7-36ba-4afb-9bb3-70241b18eb9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487692094", + "DeviceId": "3681e0ff-22eb-4135-8513-953c14f8ed54", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671471048", + "DeviceId": "e60feb5e-397d-4d10-a0ea-7a01b3e59d1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505276504", + "DeviceId": "a709182f-0906-4000-b45d-b16c22a37733", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_589498739", + "DeviceId": "c4b99c4e-fa0a-498e-bd47-dbf5f4d7771e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_159295861", + "DeviceId": "669869cd-8e01-4a21-a485-1842f8e1636d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7bbdbcb8-0691-4d3f-8a68-b7515bd68554", + "TenantName": "Tenant-7bbdbcb8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982679478", + "DeviceId": "b7ae4cdc-b073-4773-a55c-fce74b5d3423", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697301911", + "DeviceId": "e11a0166-e4b6-4994-bb99-b10c8a818548", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_807146132", + "DeviceId": "e76e6448-1853-4629-aada-9a0e9133e31c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_685517525", + "DeviceId": "8f9ea72c-6d4f-4781-a22a-851ba7d47c00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_285638015", + "DeviceId": "83ac63a2-3753-431b-8110-9faa8c2266ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_676421265", + "DeviceId": "10a521b6-31fb-406a-a279-b84d85e0e550", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c8827b0b-db2c-4009-8b0d-db919717a66f", + "TenantName": "Tenant-c8827b0b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439674039", + "DeviceId": "7c086d17-4259-470a-8a71-fcec8e38a4ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_522635975", + "DeviceId": "add60b35-dba8-4bc7-94dc-28b686513579", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628772878", + "DeviceId": "7e6cc44b-0edb-4765-855f-d5c9df40882d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672452735", + "DeviceId": "e6731470-1661-4ade-a490-cc45a83abece", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_880091762", + "DeviceId": "9676dce4-6724-4725-b2bb-b91b9e003599", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_273411748", + "DeviceId": "7a4598b6-486b-47c2-ade1-e8624262b1dd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5670e15-86d3-45be-9af9-e874b102cf1b", + "TenantName": "Tenant-c5670e15" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_537895174", + "DeviceId": "803c4af1-4acb-4a4c-8efb-e6ab186edc24", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_801244924", + "DeviceId": "2881779a-add7-43b4-9265-2db4ae3a3a01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958688775", + "DeviceId": "dafb5a6a-b1eb-48d9-847b-6f740928a855", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616022313", + "DeviceId": "441bc92e-e7d2-4fce-881f-06b7e70049f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_712753703", + "DeviceId": "90d04af2-8129-4ed9-bd91-dbf85a310223", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_873971889", + "DeviceId": "e28ae6e4-c5b0-47ca-96c1-9634095210de", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ad36295-cbbc-490a-b623-4aa93bf4fe6a", + "TenantName": "Tenant-2ad36295" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885744470", + "DeviceId": "6c8ff272-70e9-4bac-bf08-e83f620c3538", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535982298", + "DeviceId": "e1655d03-a68f-456a-82f2-b02af1bfec4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468270344", + "DeviceId": "5701e2fd-1e99-49be-8af9-1be4bc0c6690", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289016347", + "DeviceId": "11a17706-feda-41b9-8b77-7dca6e4da1ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_461116766", + "DeviceId": "df5ae38a-bdb9-4ead-a0c3-382c25ac63f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_617180100", + "DeviceId": "23bce014-f101-497e-a1bd-750c6172d845", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2bad05f7-8e89-4542-ad53-e2e131c98f96", + "TenantName": "Tenant-2bad05f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564300250", + "DeviceId": "1b432efc-449f-4a62-8881-7791c0bbc539", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428563544", + "DeviceId": "fea8f5dd-33f7-4490-ad5a-1cb60c67f0bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896671249", + "DeviceId": "5f59161e-381f-49f8-b371-85e88087165b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463291594", + "DeviceId": "a7785233-7415-47bc-a66f-9071998dbbc5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700462437", + "DeviceId": "daace692-c3a9-456d-a5ff-558501d1bf24", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_923018890", + "DeviceId": "1c29156b-fc22-4fd8-be38-4478ba511413", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "76a22376-19d9-486d-8b01-1b6e13e7b48a", + "TenantName": "Tenant-76a22376" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993018938", + "DeviceId": "ae19357d-06ea-45b8-818c-54460f7b75dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_247390992", + "DeviceId": "55fb09a6-3283-4bf4-9a29-818d1e9b707c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613989159", + "DeviceId": "5e7bcec9-c71f-443c-bf54-e225e4502a75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698464050", + "DeviceId": "f7e81cc2-0e86-401b-a5f4-9d68a808eef8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853176574", + "DeviceId": "95b25948-7154-4ca1-a8c8-92110be6bc5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393543607", + "DeviceId": "96ec204c-7cef-4ffc-a6d5-96246f530ced", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f926f3b5-d22c-4887-9c08-e439bb733f53", + "TenantName": "Tenant-f926f3b5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874258143", + "DeviceId": "50c18b41-bf67-45c8-b977-aa3c799eb842", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982896781", + "DeviceId": "cc7cdfda-9c63-4211-9a5d-afd67aa6b265", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_370343287", + "DeviceId": "6b60b6c8-2c6f-4f72-9e48-272d1dc5f78d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770720271", + "DeviceId": "d065b2df-303d-4f32-a07f-1edf7478910f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658368334", + "DeviceId": "7f449d3f-5b73-44a3-9016-58f966e81d00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_563858814", + "DeviceId": "878d5d15-0489-462e-9255-d94818086445", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a9015c6a-9641-480e-960c-6d2c2425e231", + "TenantName": "Tenant-a9015c6a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578514411", + "DeviceId": "7d26ec05-2160-42bf-a069-3cdf70f18f63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646677722", + "DeviceId": "e26896d8-e161-475f-b430-d4e78b7d672d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905623144", + "DeviceId": "f08df14b-1fcc-4fbb-9b70-c5b419f9baa9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577018500", + "DeviceId": "9f747e19-53d7-4c6d-8c21-ab90c36dab9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223432423", + "DeviceId": "cf7177d3-83fa-4949-a5fb-797b4b447b11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_125925488", + "DeviceId": "a4448274-24ff-42c6-9cdb-7bad53a1a95a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eccd715b-9f1d-4965-96dd-da3d9ce6ea96", + "TenantName": "Tenant-eccd715b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_135699264", + "DeviceId": "49a51c7b-da04-4a97-b629-b5af0ff1f377", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_411335025", + "DeviceId": "edf259e6-8f73-4dac-b199-7eac36778462", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_321906619", + "DeviceId": "9c5dc1f5-c7ee-4b32-b76f-96e1c7e4e266", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667250263", + "DeviceId": "bf99d243-9bd2-4370-8a7d-b107fc09d30d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554994614", + "DeviceId": "341c0f4c-5edd-4701-bf71-9f2ba67cb598", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_206877592", + "DeviceId": "82ed18c9-a475-4a80-ae21-96327ca5f838", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cb0273a5-4966-4215-9678-107c9ac38a95", + "TenantName": "Tenant-cb0273a5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_502964143", + "DeviceId": "e7406a11-e253-4001-b031-27f71595aa9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529470522", + "DeviceId": "3fb939ec-3334-4e1e-a15c-e5cf46bebda9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989927667", + "DeviceId": "c4b13e5e-c3b5-4462-9a81-6c162a6b7ce1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_142534600", + "DeviceId": "06218f7a-099e-4668-9d7a-dbf85bd89904", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164711977", + "DeviceId": "24422dca-806c-4285-a011-ce027172605b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_436386190", + "DeviceId": "8cdde0fd-ccd0-4618-b096-dcb3e9f83d9e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9097ab3b-5e76-43db-b92d-4f183140a250", + "TenantName": "Tenant-9097ab3b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175790654", + "DeviceId": "521b7994-0bf1-4b28-82b4-209194a92115", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743081259", + "DeviceId": "6b4f42bd-1a4a-4cd1-b8aa-ad75741bed10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153708380", + "DeviceId": "03f119d5-f0d6-429f-97e2-ece2c1a176b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_133407639", + "DeviceId": "4931b394-c065-4f5d-bfe7-ae399d8752dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_901259171", + "DeviceId": "69bee755-c5dd-41f7-9cdd-c0c7d54074e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_703055439", + "DeviceId": "f8cc8bee-c439-4329-a134-27e5c03f4a55", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "91752284-98be-4e0f-b693-71a7b1acc7cd", + "TenantName": "Tenant-91752284" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900680021", + "DeviceId": "98004dcc-9327-4dc9-9cb7-384b4e428d67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255892553", + "DeviceId": "b4d0c7f4-e582-44da-97a8-e360eb4dd62d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949173299", + "DeviceId": "85a68290-9ffa-4fd5-ad94-990a171b5934", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_927693129", + "DeviceId": "1160f008-1f96-453a-8ac3-5f382933a4ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744283875", + "DeviceId": "07abc17c-7f3d-4bed-a9b7-8712cd033a54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_158948535", + "DeviceId": "47ec1d4b-ea2d-4ba4-a79e-314652ed8784", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4504dfca-2690-4efa-826d-01c2833a00f1", + "TenantName": "Tenant-4504dfca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_464739268", + "DeviceId": "169d5ca1-47bd-4216-b0bb-af2d02442750", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752222015", + "DeviceId": "3e785ff3-0aee-4e33-8ebd-6d55f509de53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_390601918", + "DeviceId": "c6fb6696-9404-4351-bf29-2abc355edaf7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266232224", + "DeviceId": "00bdd20e-0d7a-4814-9f70-65cfdc859b5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818168268", + "DeviceId": "5452285c-5591-4061-a75b-3b287b89ffde", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_541553016", + "DeviceId": "afc306c1-8240-429d-b082-2c44a28e74b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "31f93b4a-ec7a-4f5f-8790-411cc30c516f", + "TenantName": "Tenant-31f93b4a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_209776870", + "DeviceId": "ca853236-d576-4d6f-a3e8-644f64d2cb4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_945252931", + "DeviceId": "f74b31b2-c0de-4e06-b197-7b714a1b3ed1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225761580", + "DeviceId": "515b63c9-aae6-49ac-9fe8-08b9d8249bee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850107823", + "DeviceId": "511967e2-0283-4c90-ab04-3617df656cb6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173085283", + "DeviceId": "c563194d-799b-4dcc-8e54-e7324f03ba04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_673899120", + "DeviceId": "a7b19201-cd65-4d19-87c9-67eb7eace910", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6d98499e-46ba-44ca-8ede-75b58bfef553", + "TenantName": "Tenant-6d98499e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_995796403", + "DeviceId": "998bd84d-fb40-401b-b3fc-2586d602bc9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526381635", + "DeviceId": "6dcca228-dd70-4e90-93dc-43f8bff35cfd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203224600", + "DeviceId": "876c84e4-10e1-46df-aa8b-d0f271063349", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477778414", + "DeviceId": "12004a08-1b34-418f-b759-ebd94927410a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200667895", + "DeviceId": "fd831ed5-a716-4268-89cd-1c43fc5959ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_442166658", + "DeviceId": "30a783da-770b-48f4-805e-ad2d2cd42300", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "df4b5aab-08f7-47d5-a6c3-1f637664c5b9", + "TenantName": "Tenant-df4b5aab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872279419", + "DeviceId": "18d604dc-6580-4ddd-9457-936f7c945b9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488630568", + "DeviceId": "c4746a2f-88b9-4dce-98a1-2a7f89cc3221", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914667372", + "DeviceId": "df32027c-0ffd-46a9-a24e-d12635611d08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_958711331", + "DeviceId": "288c663a-8797-4a15-ae94-b3d99447fd97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506716934", + "DeviceId": "5e96a75c-163e-4749-8efa-e50277c43768", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_309969649", + "DeviceId": "7b4d439a-c6d5-4e34-8af1-1116004a6961", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c44233a0-a1a6-4ec0-9e3b-4876e1a4c179", + "TenantName": "Tenant-c44233a0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_778005053", + "DeviceId": "9b51d314-09b6-48b7-9414-0c7978317cc7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_799408563", + "DeviceId": "0626433e-5496-4ba4-ac36-09cc4727367a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730982159", + "DeviceId": "bb79cd28-48a5-4d2c-b8c6-9008110b8dbb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501925532", + "DeviceId": "78e9ae33-9ca1-4f26-b06c-490d87df8fda", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_326614864", + "DeviceId": "0cd6764f-619d-4818-a9b3-d13790c89063", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_209925546", + "DeviceId": "c5e363fd-5c3b-4ade-b7e8-bc3f7cb81755", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3c82669c-b14e-47fe-9387-306be6824413", + "TenantName": "Tenant-3c82669c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745227388", + "DeviceId": "a316a417-7a91-48a7-bacd-3bbe948d8ddf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_870039706", + "DeviceId": "c4f8d261-a6a8-4a64-9562-86f76bbbdc66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436617317", + "DeviceId": "4c749096-4969-4daa-94fa-312df35362cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_536928741", + "DeviceId": "310d113c-c9fb-458f-bb1b-fdd44fe33958", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358381547", + "DeviceId": "d45f0daf-1b2f-47cf-8772-09f1415a2a2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_960237735", + "DeviceId": "fd21733b-8779-41d1-a7c1-b390d47d0ea7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "47dcff8f-99b6-4078-ad3f-85bd84cbbe0c", + "TenantName": "Tenant-47dcff8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962549566", + "DeviceId": "417ce90a-52bc-4a19-9658-dd76661a9654", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471279571", + "DeviceId": "defa2da9-4a05-4eff-88e1-67a60c00271c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720031722", + "DeviceId": "a0a65aeb-8222-49df-8bda-3907a5a7c7e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748686592", + "DeviceId": "0cc73b0e-de81-4fbf-8ddc-878f41004ead", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_780271146", + "DeviceId": "0d4c7fc1-6cc0-405b-a790-01c0331cb4e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_657850419", + "DeviceId": "7ae34c87-6c8e-4d88-8a6b-d143ce460504", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "659cc02a-d2a2-4e37-b238-181d53f24533", + "TenantName": "Tenant-659cc02a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_840439690", + "DeviceId": "20984597-e065-418e-8f19-e3a6941763e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_211270720", + "DeviceId": "2b046b00-917a-4a32-9ce9-0d2ce9d9cb06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893950671", + "DeviceId": "fb16f0f4-7ec4-40bf-9139-686811c299eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434390459", + "DeviceId": "e395aba5-4109-46bc-b9c0-11ab54d97c0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_115819192", + "DeviceId": "afe4807f-778e-4825-8608-06bf34fb9210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_511389291", + "DeviceId": "f7354e74-cd8e-41a0-9aba-0dd6ef080c2e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b63ee154-3f16-445f-81f7-deb5c63ee902", + "TenantName": "Tenant-b63ee154" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495263315", + "DeviceId": "ce367a64-c709-4e73-a447-6ea7c14661ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245400192", + "DeviceId": "43c208a2-5120-4461-9851-468af5172972", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701926684", + "DeviceId": "fd039c57-ef5c-4ce1-9ee2-c53cb30c07aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_551866667", + "DeviceId": "ecb89e56-e4bd-4c92-8ca4-f86fdc916db8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392030161", + "DeviceId": "27b6e1e7-2e86-4d61-9722-98694d44a2e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572568298", + "DeviceId": "4f7dc4b6-014e-4d90-801f-716fe0be2b64", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "31ac7c28-d47c-496c-8b2f-809fb5621d17", + "TenantName": "Tenant-31ac7c28" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957042187", + "DeviceId": "fba54f74-42dc-46c8-b2b6-43a4c2d9442b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699935640", + "DeviceId": "baf11194-d434-477c-8136-39703431bc73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_493013211", + "DeviceId": "8435a819-4b1c-4f0c-8ca4-167c06c7f744", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_474075820", + "DeviceId": "a5c46a15-7a33-487e-b3d7-8b9e65079d3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799158797", + "DeviceId": "83dba9ee-dc18-4dfc-91a9-f8741870b66e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_560022444", + "DeviceId": "b762ca71-6eb3-4e2b-a884-4706408b681d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f48af50e-671f-4fc4-aac0-62861a6c2e66", + "TenantName": "Tenant-f48af50e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831488031", + "DeviceId": "d230979d-747f-4877-8f73-4cc164ee130d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_778449167", + "DeviceId": "adbb2a4f-44dc-48fb-9a91-e2627d7c1d77", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400657653", + "DeviceId": "23f56d61-63a4-4fda-a7aa-b0d8d77603b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306370512", + "DeviceId": "75503758-3d35-42c5-9b0d-3db300ae9892", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263464892", + "DeviceId": "d0b7b1e6-4701-426e-ae2f-e8c4e8f17bef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_433091711", + "DeviceId": "44ac8752-94e5-4775-9c82-76cea5d1b78e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ff9c8f90-faf4-4767-ae1b-c8869330a726", + "TenantName": "Tenant-ff9c8f90" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850130812", + "DeviceId": "0e419c8e-7662-4cc6-8bc4-f28d15bbfa6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732880215", + "DeviceId": "7de9a624-8003-45ea-8b8e-07777b9060cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638035432", + "DeviceId": "c2073911-add6-4045-801c-0da1a68d5aff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695154240", + "DeviceId": "8c8bfc49-68f8-4bdc-95dc-6cbef0f63210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173372122", + "DeviceId": "5b5b1a2f-88cf-466a-bfd3-945bed4db777", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_700695153", + "DeviceId": "6fd1f783-8173-453f-b2bb-3afd5ed04b8e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f527371a-d955-4499-b42c-5b3f1aaf775f", + "TenantName": "Tenant-f527371a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878472627", + "DeviceId": "874a0310-0ef4-4741-a767-bbdd4514a38a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991122278", + "DeviceId": "7b367343-febd-4a57-8aa3-201898c82fc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761712235", + "DeviceId": "2311a8ea-90b2-41b6-91c3-1765ad9aebd2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316426785", + "DeviceId": "edb68472-67a0-42c1-9d9f-77921e6e578c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_958358874", + "DeviceId": "0c333d7a-f1c2-4b50-848d-2e3a3e5e9a7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_216753475", + "DeviceId": "a355266c-e7fb-4853-bfc1-5d624cd90456", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd7d99d5-acd4-4999-83e9-b7e7c3249ad9", + "TenantName": "Tenant-fd7d99d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888845529", + "DeviceId": "c7f75134-1b5f-4637-a32c-c0180cfedaa1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_326248422", + "DeviceId": "ddd22fbd-b26c-4a36-8d8b-d8bd96a4b993", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_324964049", + "DeviceId": "6229b57c-994c-46ee-a885-371604b02cb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_279442233", + "DeviceId": "635feffc-0fd6-496a-9556-9de4a7f36314", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451569163", + "DeviceId": "dc80250b-cd8a-465e-94fb-36fbfdeb0994", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_284533044", + "DeviceId": "c433ac8b-2184-483d-a9e9-c86a0d0812e0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7f5c2250-c061-4faa-b812-290087471e3e", + "TenantName": "Tenant-7f5c2250" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757854226", + "DeviceId": "f7f98a0b-8d98-4924-95b0-666bd1c1f30a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_300329625", + "DeviceId": "4b908920-d130-481d-b5a3-100372791dff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_143815010", + "DeviceId": "dde1343b-d2d8-4dfb-bba2-53bfe17b46e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906410948", + "DeviceId": "b7655f4b-5215-425f-baf1-bb9965220251", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929152120", + "DeviceId": "16daedd0-4617-4677-8314-9a5c60244bd5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_975767195", + "DeviceId": "85bd01f3-c1bd-4cc6-b3d3-693b3d7a59d6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2efbeb55-6aff-40b7-a629-9026b63e71d0", + "TenantName": "Tenant-2efbeb55" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393627631", + "DeviceId": "9ab13333-3ec1-4ee3-abd7-70408c087513", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_907985363", + "DeviceId": "877fa758-3886-4cc6-8fed-d2aed7e0304b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963563679", + "DeviceId": "a58d0701-f578-43f4-8e60-6ac1a4098483", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208177664", + "DeviceId": "791398d9-7c63-4c08-b1ad-353b003a07ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910643995", + "DeviceId": "a1edddc6-281b-445c-a036-d41251c43a65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_167136828", + "DeviceId": "c66941f6-83be-4c03-b175-6141f7c063f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9a8e3644-e8fa-44f4-a153-dc3d9db05279", + "TenantName": "Tenant-9a8e3644" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318499763", + "DeviceId": "3d762b3f-737a-4b79-97ba-b533faa51060", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862318402", + "DeviceId": "90566247-5eb8-4fee-85f7-55b7efdb0b28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_780769476", + "DeviceId": "f85c39cc-9676-490b-92b2-6c9f73da55ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573330784", + "DeviceId": "bbcc7e15-0ca1-4511-8696-e8fcec74435f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358800844", + "DeviceId": "65d0c8f1-80d2-4756-8562-523c4124554d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_853676819", + "DeviceId": "ef250e93-808c-43b5-b37a-a95e00265bf7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf953cf1-afe7-4d9c-8afe-0f4638f196be", + "TenantName": "Tenant-bf953cf1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_673122809", + "DeviceId": "2dd3f26a-3168-4a72-8ef2-b94c0a5eed6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_641493665", + "DeviceId": "aa84297f-bb26-4315-ae90-4b2709d402e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451006410", + "DeviceId": "e18180fa-3d25-4748-bf9f-088cb5f38c37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342329922", + "DeviceId": "218649b7-0392-4876-862b-dbc5da1a5b6f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263590419", + "DeviceId": "4ee3a49d-b93d-483f-a115-8d5eb3021d9d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_690012550", + "DeviceId": "af8bf82e-bfad-4aba-a07e-0125468f609a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8471b4c7-7dd0-4f20-bb86-751a01ba078a", + "TenantName": "Tenant-8471b4c7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621793206", + "DeviceId": "b0165844-2662-416f-9a2f-f9cc5ed6ac71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_204372243", + "DeviceId": "82c661c9-6a74-44a4-a3da-0ae29361179c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_128228719", + "DeviceId": "eca20bc1-b843-4387-bf33-bc37769b249b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_377084344", + "DeviceId": "deb09354-fc6b-40f0-b5d3-041347771ca4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_461787858", + "DeviceId": "38aab510-24a0-470f-a2b6-127a375e9183", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_648741130", + "DeviceId": "0f434a07-09e8-459b-a894-db1b457e856b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "62db56d7-0bfa-47e3-8bc9-145c04005372", + "TenantName": "Tenant-62db56d7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806011329", + "DeviceId": "6d2cfbdb-9c14-4586-8b26-53afe72d36f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999882998", + "DeviceId": "80f02e9d-6767-4c5e-938a-705a350a44b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461702101", + "DeviceId": "8fde274a-3a46-4bae-a6d2-4f9a286abb38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508753659", + "DeviceId": "7492ec9d-1939-431d-a62a-e0cc7dd8afac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869577055", + "DeviceId": "d880821c-a9ee-4b12-af4d-d30e4c0d199c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_343166221", + "DeviceId": "c221674c-d777-4525-ac4f-5c9c22d426ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b4c5770-3724-4641-8694-4ac113c3cff1", + "TenantName": "Tenant-2b4c5770" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_959074260", + "DeviceId": "c96e1bc8-621f-48ab-af1a-a890e5bf2c41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167986370", + "DeviceId": "742db983-94c4-4bdb-bb46-a39e83d16e00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670037036", + "DeviceId": "4d0f56a7-a8c4-4142-a454-5c79b6eb974d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523900472", + "DeviceId": "1fea516b-2921-427e-9b0f-6ed4ba541286", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_617105338", + "DeviceId": "a9fd5283-afba-4778-9df3-d8f7d2c71e98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_141201610", + "DeviceId": "49137c6a-d1db-476c-b0a2-662e5937ffdb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ec6bc07e-3760-470f-a5c5-75c0afdc90b1", + "TenantName": "Tenant-ec6bc07e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_247435344", + "DeviceId": "93a4b872-ece8-4329-9b61-4a6caae25ec4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772476212", + "DeviceId": "4cd24303-0047-4d0a-b860-17c5ed71ccea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230592412", + "DeviceId": "980aa1f0-ae6b-4d5e-8bc3-6f04e716c303", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208086178", + "DeviceId": "30ad40d6-5aa2-443c-945e-bd62992cd954", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297748370", + "DeviceId": "4c311cf8-db11-4abd-8085-5cb16921eda3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_613955237", + "DeviceId": "82ce7bf6-9d9a-459c-9930-11d07e1c0708", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "18134737-48c6-443c-bcb0-f5ebd063dab2", + "TenantName": "Tenant-18134737" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688897342", + "DeviceId": "90e31b08-7b88-4dea-95f7-e005639afda7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_198674919", + "DeviceId": "d6c57505-f0c5-45c6-8b51-4c2a6b7eae01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319041673", + "DeviceId": "43a57b6c-9f5a-4e51-b77a-902af62d68b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422235911", + "DeviceId": "f0a23ba0-a1aa-4b25-bdb8-06e18772111d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_927564629", + "DeviceId": "6a2940f9-6760-43bc-9c90-1b8824184604", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_731293080", + "DeviceId": "26564e68-138c-426b-9742-1dc1914f125d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bba60869-29e0-40b9-80e3-1649a4545745", + "TenantName": "Tenant-bba60869" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206755280", + "DeviceId": "a585d244-dad9-469b-b365-49979de5a8bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757177154", + "DeviceId": "a422dbfc-72ea-439a-b15a-47f280e90421", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867983258", + "DeviceId": "904e5331-383b-4d9d-b6ed-807b14ae65f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930786421", + "DeviceId": "2e008f44-bc5d-4f80-a5c1-5083986038db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899648423", + "DeviceId": "254d8dfa-88cb-4fed-b729-d4776bfd1c82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_920806828", + "DeviceId": "6c1f8f6f-2c1d-45ee-b606-889e501a9eb5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2796194c-ba88-4127-9fe6-26d32ac0c216", + "TenantName": "Tenant-2796194c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_988181443", + "DeviceId": "ee785f7f-83fd-425f-9950-6470e7d65bdd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_370632204", + "DeviceId": "06fdc243-771d-4f9f-9cef-a386ef1bff56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_777849744", + "DeviceId": "274fdd3b-a2dc-4ae4-a080-934ab1a0e9d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747981267", + "DeviceId": "4994a8fa-419c-4251-bc75-78d4e15840fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577371128", + "DeviceId": "4e77abde-de51-4408-99fc-5aca23079de2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_878660472", + "DeviceId": "c7ae44a8-a966-4f41-a0cf-689c511b54d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f71f0fa1-e3dd-41f5-9f28-e0381d65d64d", + "TenantName": "Tenant-f71f0fa1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140958140", + "DeviceId": "53ae950c-b2a6-4abc-9e12-23edf43964e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_226477669", + "DeviceId": "13af21b7-d9ea-4a75-8bf6-9658c198ad20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136642455", + "DeviceId": "103b7868-9c65-44d8-a5f1-1701025a2557", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_704412399", + "DeviceId": "bbaef0d4-2ca8-4c72-beb1-3e077ab96ec3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532098243", + "DeviceId": "2382eb83-3e9a-4663-86e0-2de2cd88f3a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_695964310", + "DeviceId": "e746eb64-860b-4295-b492-6f53b8a6a65e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "960fa66c-5c66-4f0d-9499-6e270323a18a", + "TenantName": "Tenant-960fa66c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806984776", + "DeviceId": "9c0a80fe-10df-4080-959b-9b2d083a016c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_268229145", + "DeviceId": "2024511b-9a6c-4e39-9dec-4a77d90f875f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_953582768", + "DeviceId": "829ce743-085b-43b6-a3e8-775512cf6bf3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376569128", + "DeviceId": "97da6fa1-f172-4895-ba41-d37de664fcd9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743618536", + "DeviceId": "08a46a20-d08d-4649-a91c-e47962645351", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_388324720", + "DeviceId": "b5f33526-7d86-4cfe-9c8d-2e9325fbc515", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fdafa923-9863-467d-81d9-f6eff8dcab93", + "TenantName": "Tenant-fdafa923" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500866207", + "DeviceId": "4b05d3c0-8284-425f-a26f-5762c6996ffe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726654110", + "DeviceId": "f0f27900-8f96-42ac-9eb6-defc3b94a0fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232118417", + "DeviceId": "c7e6e691-5e98-49e5-93b2-2011a0ddcc8e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295648346", + "DeviceId": "8733e32e-9ad2-4aab-bca7-6322fa41cdf7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640931682", + "DeviceId": "21f0ae06-920e-4422-9e7f-330f6d2a1e72", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_590762843", + "DeviceId": "bea47ea6-a2cd-40ce-ab98-28219fb9cc0f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "10a02d53-3632-4ae2-8684-bc81a5b7b22c", + "TenantName": "Tenant-10a02d53" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_707936990", + "DeviceId": "7c00a711-3019-4f2c-b485-7225e2bc5c8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_903931169", + "DeviceId": "ccb866d1-db2b-4313-b1e3-f24c9dc06e05", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113311614", + "DeviceId": "50751ffd-0735-4c40-ad48-cf70bdcdf3aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333400382", + "DeviceId": "7b620e15-ea29-4104-b738-954e1857fa4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515108300", + "DeviceId": "28a38c75-782c-43d6-b0ce-88de09614e13", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_954292925", + "DeviceId": "71bd23e2-4755-4961-abe4-15cb8d1bd11c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5add9e4-6b94-4699-9522-5f4abae08987", + "TenantName": "Tenant-c5add9e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373704737", + "DeviceId": "951d1cb0-a2e1-41f1-bd4e-d5ccfff13dcf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158373176", + "DeviceId": "417deb4c-b665-484b-8c09-b1570c4fd3f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_335446844", + "DeviceId": "ef43bcad-10da-44b4-b8d0-e16359ad871b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_567422209", + "DeviceId": "f0a5da27-8837-4ed9-98c8-008cd54056fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926744857", + "DeviceId": "f6091fe3-791a-4885-afc0-0ac3478180f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_583749164", + "DeviceId": "15124951-ee41-41d5-af1c-6ebf5512bdaf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "20c9336f-ecc1-49f8-b3e9-a0133a45c65f", + "TenantName": "Tenant-20c9336f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290225942", + "DeviceId": "46ff1b57-5856-4f06-99c4-78d9861e1083", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_648161753", + "DeviceId": "9edea0eb-00e5-498c-92be-3539c7d52ae9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708527689", + "DeviceId": "1c4249df-f1c6-43f8-9cf5-36fcb2cd2e76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592935134", + "DeviceId": "575c8f77-4bc3-4a7b-9dc8-a5f4d0f189c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_983564491", + "DeviceId": "72fff4c6-9dbf-4286-8284-5ba207c1ef1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_871374537", + "DeviceId": "22860d3f-9119-4a07-88fe-bc8b3b61db79", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "facb6b04-35d3-4d65-8e9e-cc1e4e7453be", + "TenantName": "Tenant-facb6b04" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441340177", + "DeviceId": "c1c4e155-e79a-4ee3-b273-2c401e8698b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661806381", + "DeviceId": "7ae6dc19-9c53-4b80-bdc8-466fc1bc0741", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_624510389", + "DeviceId": "a7a86e38-c2c7-4fcf-83d0-10ebb34cb6f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471914792", + "DeviceId": "b9ef6141-3a6f-41a0-8a46-f0307d457986", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929235636", + "DeviceId": "8ce2597f-9211-4ebf-9826-d5f619ab7c04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_792711797", + "DeviceId": "97b6d245-9902-45bf-b2af-479044ccb291", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2996d55c-732d-4bcf-a312-f0feaeaf10ce", + "TenantName": "Tenant-2996d55c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207607603", + "DeviceId": "8cbb0f2e-2b74-4c56-a125-d4257fee511d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897727987", + "DeviceId": "7c225eae-6a7c-4cdd-a5a6-ff4e75c0f63f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_683599644", + "DeviceId": "166fa2e0-3d1d-4609-aef8-e383f01395dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592804805", + "DeviceId": "fc0591b9-efd2-455b-8435-b857ada2e7bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615297896", + "DeviceId": "cd667f44-8a07-4217-bb61-797420279ead", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_986553675", + "DeviceId": "8503e8b6-f0f6-43c5-ab19-2074b638c513", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4d64f73b-cd0c-4471-8e0f-6b66c6640cda", + "TenantName": "Tenant-4d64f73b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236596586", + "DeviceId": "dc7dd5ef-c645-4df4-a4c3-985cc56b958e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608474896", + "DeviceId": "4397c48c-af60-4e9c-a928-a62964ecbe23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276252522", + "DeviceId": "f68f0fb2-44e2-4cbc-9849-456710213dc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573608818", + "DeviceId": "a2a71a6f-a7ec-472d-915b-4bbb2a085e20", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439464521", + "DeviceId": "b08283e6-ac31-445e-b0ea-d4a8afb83708", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_122439109", + "DeviceId": "69d3a43a-6b0b-4442-a88c-1d5c38914f6b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "22ae959d-983b-49f7-82f7-a62cf75a4527", + "TenantName": "Tenant-22ae959d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283991820", + "DeviceId": "8568362c-a311-4544-9410-8f14e8a08886", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228253680", + "DeviceId": "a212da69-e685-4464-a498-8cfe38a2c10e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_766916529", + "DeviceId": "f1c3f87d-843d-4bc4-97e0-5db225005d3a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501137645", + "DeviceId": "1d31ef9d-a5b6-44f8-910c-e80ea50ef497", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_620024055", + "DeviceId": "444fdbfc-a4d9-4d31-aa6e-1c51becb4de9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_174995063", + "DeviceId": "1d45dfb4-c7cb-4df6-aade-2a69167eda6b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aee5c776-4daf-4221-af55-f7684db30a4b", + "TenantName": "Tenant-aee5c776" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_664279447", + "DeviceId": "0fba8a51-1862-47a9-8bf1-190271b92c38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_943516972", + "DeviceId": "0fae0420-0249-4ced-a1b3-4c7899b64f12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703574834", + "DeviceId": "8cfc6334-6217-46fb-9e8b-34eed9366a41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_147125249", + "DeviceId": "723e5af1-72db-4a38-badc-f0239ec1ecdd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552634947", + "DeviceId": "b05d8b0d-12aa-42fa-a328-a6f41f40b54a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_147799223", + "DeviceId": "1065ceef-1335-4065-bed7-d29f127bf3ee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "66eda928-f9e0-412a-98e8-bf31839f8894", + "TenantName": "Tenant-66eda928" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261104.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261104.json new file mode 100644 index 0000000..64feeee --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261104.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550270460", + "DeviceId": "f72675ee-eb53-439b-a11f-812c6b5b6fc8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963797998", + "DeviceId": "7596eee5-8d65-4b99-a431-3360ae11a30d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_293000083", + "DeviceId": "989f5c26-a0e5-48df-acdb-64d841727651", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323974823", + "DeviceId": "b1f576fb-a2c4-4153-86d3-cdc6bd228cc9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132690421", + "DeviceId": "ea1fe6ec-55e4-40b9-b64a-57809f72f91a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_308107602", + "DeviceId": "1e585579-e0f8-48a9-aa44-defdbe41b9a8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8c8fcb0d-2eb5-4461-bc4e-cee9764cb874", + "TenantName": "Tenant-8c8fcb0d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_815809481", + "DeviceId": "e86ebdc7-843f-4e7e-b2ea-d0143427b34c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_988541628", + "DeviceId": "9bff4aff-08ff-4719-9853-93fc9636d4be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800902930", + "DeviceId": "a06c0191-78b1-49e2-a4da-7e87ab86f63d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193320480", + "DeviceId": "eeeaff2d-0acb-476e-91f4-627f2ed46813", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_363840331", + "DeviceId": "9eda2c65-b42b-4747-80d9-48bbd3a8454e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_294518325", + "DeviceId": "c430b78d-4867-49f2-9d08-104bd2596582", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1fe094b3-034c-4b70-b0ca-15bbb25487a4", + "TenantName": "Tenant-1fe094b3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914596552", + "DeviceId": "fab42b56-e1c6-4c2f-a842-ddec5f47ce2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588471040", + "DeviceId": "166ba828-abd3-490a-bf3c-24ec95666efc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_520556300", + "DeviceId": "81a38ec0-332d-4812-b492-5f5b6b064212", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640880382", + "DeviceId": "ccdcb788-655f-48c4-8366-b255ef225d25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721847006", + "DeviceId": "c37f0905-4e3c-47f0-91e1-60c0b97d539f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_590533971", + "DeviceId": "8404cd74-53c5-402f-8aa9-ef3e4a2d2deb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea559213-767c-4ec7-8282-c37be5534686", + "TenantName": "Tenant-ea559213" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294609807", + "DeviceId": "693ee0bb-4ad9-41d6-9af3-8f9ddcc6ff4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100121518", + "DeviceId": "8de035dd-2dc6-4218-b3d8-b6c171543e7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853870807", + "DeviceId": "125c7f8f-77f5-47d4-bf07-4e58a3b742df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_822555727", + "DeviceId": "c25f412e-e2a9-40bc-87d7-780ef1758b7d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580842818", + "DeviceId": "a955555c-bb1f-4466-9597-966e515c08cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_472867796", + "DeviceId": "ebf0422d-56a0-4d92-8411-004172d32bb0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0cd77dfa-533c-4ee0-b9f3-01e96624f529", + "TenantName": "Tenant-0cd77dfa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100295013", + "DeviceId": "66bf0675-c2f8-44bd-ac93-35a12b245693", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566783362", + "DeviceId": "58aba6cd-e8f3-4169-a39b-fba2cad913c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676714072", + "DeviceId": "bf3b22f9-ff04-424a-a019-795787de076d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234818798", + "DeviceId": "263bcc1d-6459-4981-94b6-badb4286fb52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654098859", + "DeviceId": "0d2a8eec-6b5c-49fb-9b2b-d936483f7a83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_650784036", + "DeviceId": "72a34a09-6ff1-4003-aa9d-ba69febda09d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5a56bdc-435f-464c-bcc5-4031d2a8ae71", + "TenantName": "Tenant-d5a56bdc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318620768", + "DeviceId": "e8f92d77-09e9-4e8b-8ac4-d4f8f54dfa40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_160366636", + "DeviceId": "ac24fb1a-58ba-47b4-aaf7-135b905fc84f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121915689", + "DeviceId": "e305806d-6ae2-45fc-a1aa-211df1b6ce2b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451254167", + "DeviceId": "e0cbfa27-bf0a-4f25-a8bf-d47d394b56f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939056316", + "DeviceId": "c31b03a8-3707-4ded-90b8-458cd033cabc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_305630768", + "DeviceId": "af5add55-dda9-4271-a311-1f14b2c46dc4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af8c7528-81f0-48be-bd9c-d0b3d7847b66", + "TenantName": "Tenant-af8c7528" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_884720679", + "DeviceId": "ad5afa26-e7bf-4b16-aaa9-78ea43caab95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492850048", + "DeviceId": "b0643c28-d67a-4a5a-979e-00f209ecde28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_634899164", + "DeviceId": "43403dbf-539b-4085-8787-1086607405bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897011316", + "DeviceId": "7c5e1acb-54c6-4bfd-8876-c8344c1ce67e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667673367", + "DeviceId": "3d8a823d-407a-4360-aad4-a7eec169ad42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_621543536", + "DeviceId": "766726b7-6939-4103-85a2-71f9dc5654ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "34fdd915-3f6c-4aa7-b549-cce14943cee1", + "TenantName": "Tenant-34fdd915" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_172702049", + "DeviceId": "ce2f4af9-78e1-4dd5-b5ca-b96e3bbf0fd1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_211248799", + "DeviceId": "6a8009da-0f31-498a-8135-0b2c9db54b8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333905339", + "DeviceId": "54235cfe-a1cb-478c-a5e4-64fae47eb90c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485794678", + "DeviceId": "3b0bcf87-58a4-4c35-b005-dc434c607485", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960738879", + "DeviceId": "fa0faf9a-f371-4498-bb08-adbcc5fb98f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_861844387", + "DeviceId": "95a47453-be73-40c0-bb75-960508d7e752", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6bf1c77a-6005-4b70-8415-f28141df8bfe", + "TenantName": "Tenant-6bf1c77a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827756594", + "DeviceId": "6aad9deb-96a0-4902-97d3-4de024318919", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547788671", + "DeviceId": "f69269c2-fc96-4657-8c84-67d0bb15e7f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759436264", + "DeviceId": "471f8cdf-2080-4753-979b-834046d6ea4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862342851", + "DeviceId": "53624a1e-6062-412b-b143-002f244cc5f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_268657682", + "DeviceId": "9e411c42-8832-4860-81e5-55ef108c495f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_591035041", + "DeviceId": "465b9266-8c21-489d-8c35-dfd60c97e2df", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4159efe5-8f6b-49a8-9c39-2cd1f26456f9", + "TenantName": "Tenant-4159efe5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_655965487", + "DeviceId": "8eb595d5-d5e2-4958-8cf1-ec88f8c98cd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130967186", + "DeviceId": "231798cc-a6d5-4a73-b51c-9aa7ac59b24b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_296321781", + "DeviceId": "e3d7ab18-7a2d-45dc-ad66-24ead6003dd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853931727", + "DeviceId": "e9e6f6f7-f732-4355-91e4-98e450cd28b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736463566", + "DeviceId": "7ec5b455-28e9-46ec-9fd2-d7acec2b44a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_248688100", + "DeviceId": "e61f918d-966f-488b-a5cc-585d1024605c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "834cbacb-c0aa-402e-b42a-49776e8e634c", + "TenantName": "Tenant-834cbacb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_589629723", + "DeviceId": "86f0b26f-5d75-4e2b-bce2-47354471b185", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345226421", + "DeviceId": "ede32841-7470-4577-937f-9055f894d9e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928413837", + "DeviceId": "b5b6c0e2-7feb-433f-991e-fb9e096b9acc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_529662705", + "DeviceId": "9bfa7eca-cd3d-46ea-b1ef-8f46239cb8e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584159610", + "DeviceId": "8eb5e7b6-b283-4f3b-bc79-d485a3d93308", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_483861086", + "DeviceId": "a51ca6da-6e00-43db-97bf-708f2df16875", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c58a25f6-8fbd-4710-a260-df3f5072cac8", + "TenantName": "Tenant-c58a25f6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787082463", + "DeviceId": "65fbeacb-d0d8-4b99-8d15-aa977c28084b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920483254", + "DeviceId": "f9b68470-2a2e-4858-b381-d7444e9bae30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652040993", + "DeviceId": "2e6a0215-ed11-4cf8-8edf-e5c9e1b408ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981004609", + "DeviceId": "00de4e5f-2047-4350-a3f9-7ba55ec86733", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881619796", + "DeviceId": "7c2f453f-5ad4-43ac-8228-fc1e37132b6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_560359966", + "DeviceId": "9bf663d7-6a06-47f0-a45c-1980944eb4b4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4590b4c0-55b8-4266-9805-196f191396dd", + "TenantName": "Tenant-4590b4c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371591603", + "DeviceId": "f69f5621-4d71-4b70-994d-f31faeee67a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317928859", + "DeviceId": "f0d54c48-9f71-42a7-92cf-a8411e6c3a2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728253527", + "DeviceId": "ee45c0d4-4b74-4d4f-91be-7883d5ef8918", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242145521", + "DeviceId": "647b31a7-20c7-4ebb-b8f5-626ff4764f7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_834520103", + "DeviceId": "539f4330-4e6d-4e49-a30a-2395fcd8100c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_911177479", + "DeviceId": "5cd58c8e-14a1-4fb1-8bbc-d9183378d5b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97282d70-cc31-4596-9b11-e27a713a2248", + "TenantName": "Tenant-97282d70" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_863575334", + "DeviceId": "85481f9a-75a6-4b5f-9966-99193d2e9e96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745337689", + "DeviceId": "df65ad33-cb26-4aa6-9d47-8852e218efaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346151030", + "DeviceId": "ef2d1b78-5396-4d13-adcb-eda896a20254", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295125923", + "DeviceId": "ca4055e1-a6d9-4a68-969c-e38dee538c1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_186447146", + "DeviceId": "70d168b5-97c8-413c-b3f1-88712821470c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_381310938", + "DeviceId": "b90774eb-fa5a-41e3-9ecd-df25cd7dae49", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "33774680-02c8-430c-9d51-f9691f8e7b4f", + "TenantName": "Tenant-33774680" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312015943", + "DeviceId": "419a7fcd-22b6-4fb0-aefc-cb2d96601589", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681650785", + "DeviceId": "2f9f3f07-3971-4766-896d-3f803c8f9229", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121735814", + "DeviceId": "43141619-13f5-43b5-bf17-7aed03d58d40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_218258520", + "DeviceId": "ea9b3560-0a9c-44b8-a5fc-fd4754b79fe9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199442781", + "DeviceId": "5b7d65c1-da89-4e96-bfc4-ca5fcbc6d521", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_699465291", + "DeviceId": "7ee7bd07-1e46-40ef-8aea-95b8275c9202", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ef746e9-e162-452a-8713-969430b4f846", + "TenantName": "Tenant-6ef746e9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230717143", + "DeviceId": "0108da5e-d7de-4c8c-9c37-9ed69ea51aa9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567746323", + "DeviceId": "ee901d61-792b-4122-8c5d-09a25ac57c5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203588749", + "DeviceId": "8f7e85f5-f8e8-486d-87b1-cc4dc7bca1a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700367023", + "DeviceId": "1dde1643-849e-4cc9-9086-ca5a46a7e9f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450662062", + "DeviceId": "a2247a61-7e9d-4dcf-b626-e1bb4e590b54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_922335882", + "DeviceId": "00dc7bac-cd2b-4f49-8e85-65793d5994b6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f5a9095e-91dd-4f7d-8035-d865c5a923d9", + "TenantName": "Tenant-f5a9095e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272109068", + "DeviceId": "20997e89-92fa-4edd-b500-a1fe799a73cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874859820", + "DeviceId": "af0fb99a-326d-4963-8ac9-8023e6d76432", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229063030", + "DeviceId": "ab4d79b3-8fe8-4577-a584-3c4d60db8bbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323965344", + "DeviceId": "b2ea006f-d0bf-4f71-adf5-c2091be35562", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348331824", + "DeviceId": "5399e694-86d4-4fff-8782-10da3a3a5360", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_309261164", + "DeviceId": "6086268e-3aab-4456-98bc-ee4ebf177a61", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f630a60c-1fb1-4102-9cb5-3ebcb07a2155", + "TenantName": "Tenant-f630a60c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237522994", + "DeviceId": "18e7ff13-1fb8-49e8-aea2-5095fd400481", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962671110", + "DeviceId": "bda771a6-15e0-49d6-b6f2-80f1fdd24426", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670241901", + "DeviceId": "b409acbc-3b18-4959-be08-129fae771227", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_663490681", + "DeviceId": "eb0d93e7-b0e9-44f7-bef6-37e0733cc2cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_624809796", + "DeviceId": "8c6a30be-900d-4611-b5bf-653124ccd5eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_870105877", + "DeviceId": "b840f733-af1f-4077-bea0-9db89880908c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "139465a0-cc3e-4e35-beae-09db287f3b2c", + "TenantName": "Tenant-139465a0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152876385", + "DeviceId": "34770464-eb6e-4e8a-b9bd-d8ddd10dc4a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893054811", + "DeviceId": "d6f3007c-bbdd-48d4-9789-adedf1090ca8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264598053", + "DeviceId": "2c985f2f-3429-44de-9c0e-a2a69ed14aa8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_890872254", + "DeviceId": "9dc31571-9075-462b-924f-3c84dfac3704", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322720775", + "DeviceId": "8c601aa7-f0e8-4081-8531-514611dc7c38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_944158076", + "DeviceId": "34817710-6689-4c7d-a655-13c6e650aee5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b1c31179-0900-4804-8711-72364111bf23", + "TenantName": "Tenant-b1c31179" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_950237597", + "DeviceId": "d848be93-6869-412f-b821-e5faadaf8494", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_581114184", + "DeviceId": "a566b87c-bb1a-4387-9c58-b7326b24f11c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327272034", + "DeviceId": "d9d19f50-652c-4c4c-8f5a-f201c66b236a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_441431911", + "DeviceId": "6ebb1681-c02c-4c5a-a82c-6d6ef1b4b1ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_859356720", + "DeviceId": "7ce6cec3-0b8c-4af4-94bd-7f72e9bf3f2a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_653763281", + "DeviceId": "ea657cf2-3274-4973-b001-76425431c1ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "707983cf-452c-4ed1-a905-d1a65e8ec4eb", + "TenantName": "Tenant-707983cf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566596984", + "DeviceId": "7ae2ed17-60d9-4d35-aadb-2ea819b6cb0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991381916", + "DeviceId": "cb2d46b8-9c69-46e1-915b-e4fb132d1c85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535402781", + "DeviceId": "13f0894d-0de0-491e-8181-e5a9ccbd8834", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733173298", + "DeviceId": "a4933aa5-9b51-494d-8f90-f9d2a2393d2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389205632", + "DeviceId": "bd731662-561e-433b-b625-f326f91b6bc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_109368404", + "DeviceId": "5d773a23-af1a-45ea-a060-2930025c7943", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "73cc4fdd-b7ee-405f-92ba-0f5ac2ac90b7", + "TenantName": "Tenant-73cc4fdd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525968754", + "DeviceId": "ec9923b4-e294-4eef-9143-8c60bdda935d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228767311", + "DeviceId": "301bd2ea-85d9-408e-9f1d-7b47d4f82256", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_594564274", + "DeviceId": "21001244-97a2-482e-95d5-b466df5c9a9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121685720", + "DeviceId": "9f966361-8779-46fb-a530-11d5fba19871", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379610149", + "DeviceId": "8a17153d-8f7c-4a6c-bfa9-5f64f9351069", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_858398826", + "DeviceId": "44424db3-54fa-48af-b844-44fce28abf4b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e8f7acf8-5401-49af-a361-554feaf0c87f", + "TenantName": "Tenant-e8f7acf8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125696809", + "DeviceId": "ba6c99a1-c06c-4393-bd2b-5422b05bd7d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199388911", + "DeviceId": "e058475f-7675-4229-80ef-7c757d676643", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439424681", + "DeviceId": "aba880e5-bcf1-4e7c-b8bd-cfd21ea33a53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763683937", + "DeviceId": "a9d086a7-3571-43c9-9359-c71513c52404", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233187727", + "DeviceId": "2a843276-b5a4-43f8-bf1c-812b49e0c31a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_461347328", + "DeviceId": "cc4aaaf6-5a88-4ec5-8b7f-31260d2b5afc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c63fcb59-6814-415f-8e85-68af8e9fefb9", + "TenantName": "Tenant-c63fcb59" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639125950", + "DeviceId": "5e27d09d-c6c7-4b55-9b8f-9f72186fb90f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_355396564", + "DeviceId": "e3e0dc19-9d4f-4914-ac29-d5052e214037", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_758034361", + "DeviceId": "b287fc35-ff2b-46f0-b030-f491d50deb2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383788729", + "DeviceId": "8ae22365-a014-4ea4-9f23-3b22f624d57c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828151414", + "DeviceId": "d7e46147-7b6b-434f-9d52-ac4d95fd8922", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_491705689", + "DeviceId": "a8374cec-1d86-484e-bf28-83eadb513424", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "790cde3c-f6c1-47da-9f85-4f3097863daf", + "TenantName": "Tenant-790cde3c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762667866", + "DeviceId": "29259a82-6c6e-4b1f-b90c-52951e993c6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845347472", + "DeviceId": "3c266755-8bd8-4a44-8388-03a269369928", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856977123", + "DeviceId": "1bbc76d9-0a8a-4916-85ee-6bc7e3c8e65c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208723095", + "DeviceId": "c265d616-5bfb-453e-964c-b0a50d70a639", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853022550", + "DeviceId": "9677f85d-7abe-4f3b-a137-b526ee8b5dba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_421969344", + "DeviceId": "532aa03b-4e30-4b38-86e1-e312882f5e6c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "adee23ee-d8fd-4a42-86dc-bda9f97b9b75", + "TenantName": "Tenant-adee23ee" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_449033018", + "DeviceId": "aed1c40e-a2a9-4b09-95ab-3b1bd5a969e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287261728", + "DeviceId": "6fa5314a-2152-44a5-a695-04c22104764a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242108413", + "DeviceId": "8297ba58-be16-4731-929c-3c36659a4768", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381226604", + "DeviceId": "e97d8daf-3985-452e-bd88-af753c6f9ce3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_943668098", + "DeviceId": "07a04ae9-e8bd-4b41-bc41-fed8171a2018", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_187161085", + "DeviceId": "295845cf-a75c-4f2a-bdab-f076cd931f63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1252a507-7d3d-4a3f-990d-9b00e57124c6", + "TenantName": "Tenant-1252a507" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164553259", + "DeviceId": "f1eed343-260f-47af-bfc4-739eeae56330", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521051228", + "DeviceId": "d6daadea-0003-40c5-99be-91ff980e2dfa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_501818488", + "DeviceId": "d81ef34c-ea2d-4988-999a-94ddccbdb1ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232065920", + "DeviceId": "dc5e520f-afb1-4663-95f9-05726745bc7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999516745", + "DeviceId": "7e4b071f-8290-4b09-8023-4e0498051db6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_256207325", + "DeviceId": "d09a2d0c-f1cf-4148-98ac-39acc5da3e64", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b465f1ad-b149-4ba0-8def-0c6ab3a05dff", + "TenantName": "Tenant-b465f1ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_256008574", + "DeviceId": "c126ac53-f41a-472d-8c71-1369c16ca87a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373640230", + "DeviceId": "094fb8d5-cd05-4d86-85bc-c585c18ea81f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676459893", + "DeviceId": "90c3fc7d-e52d-431e-be36-45db62e7215d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158758411", + "DeviceId": "4f3fbde9-4e6e-44fa-bc52-a6a9e3eaa7b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485893028", + "DeviceId": "c6382576-adce-41b8-942c-717d9845acb5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_923709130", + "DeviceId": "f3b8e2d7-5eed-4bf8-bca3-651526177ece", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "45eecd7a-b10a-472a-b781-ab632169bf1a", + "TenantName": "Tenant-45eecd7a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410211261", + "DeviceId": "8eef6fe4-1d46-4ef5-9edd-0eb43c9f9d82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909963028", + "DeviceId": "6f5a55bc-035e-4737-8f21-c0936396ab32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_427633772", + "DeviceId": "fea97349-413a-4e71-be08-c0e17f1c3037", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_586355297", + "DeviceId": "0927705e-d698-4508-b3bf-21d41440e33a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772645449", + "DeviceId": "09323e10-3d89-4675-a9cf-2383497d318f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_942623253", + "DeviceId": "cfee2e61-de35-48c5-88da-154642820d3c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eb44f8f0-0024-4298-b3cd-d47f0ea680e3", + "TenantName": "Tenant-eb44f8f0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199547051", + "DeviceId": "ccdbed2a-adc4-4b17-a36a-6844ab367e6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774012241", + "DeviceId": "bc64f600-f227-480e-b22f-6c861cf77cbb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_253147164", + "DeviceId": "b9e2e419-64b3-48ab-accb-01a1e6ee2bcc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165707649", + "DeviceId": "d4283d56-62a0-4887-b3bf-427dcc82f508", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500926099", + "DeviceId": "4b24029c-6753-47c4-b9e6-c90862ab5d61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_871434354", + "DeviceId": "e8ce371c-9859-4060-982a-615ea3e6277d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "26dd4e6c-a3aa-4a65-9e45-7ca1662edb51", + "TenantName": "Tenant-26dd4e6c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_801536040", + "DeviceId": "82406824-1a50-4ed5-b3a5-c3a0fd1b6902", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360697857", + "DeviceId": "badef50d-ec48-42a4-a073-10f8e3b52a72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666416225", + "DeviceId": "3b1f935c-abc4-4a10-97fc-7dffecd89247", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_403463216", + "DeviceId": "39194c0b-2d9f-4306-a6d6-ad50f35fcd1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_293979414", + "DeviceId": "9ea5a0f4-c82b-405d-b51b-daa59aa06bd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_645588911", + "DeviceId": "8d746cd3-029a-4092-bb91-987173361424", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5cdfe7e4-165b-4f3c-b29f-6dc5d94208ac", + "TenantName": "Tenant-5cdfe7e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958898608", + "DeviceId": "6cff2aa2-3c2e-4af3-8d9e-d33bbd1e7c45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563026805", + "DeviceId": "8a0e6675-5cef-457f-a83e-ac0530d5209d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241007418", + "DeviceId": "df8092c3-0e8e-426f-b67a-a02d4da0933f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_723013811", + "DeviceId": "4468be39-784c-4b13-9e50-5a166c46f15e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487237127", + "DeviceId": "48d7ac64-72e6-4186-8fea-7ed6697be89d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_623496521", + "DeviceId": "38010549-15ca-4e17-bb15-de12c50a65cc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "159e77c9-91a0-4431-ba1a-a1dbd3f4a884", + "TenantName": "Tenant-159e77c9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722798868", + "DeviceId": "0ddb72af-62da-4d75-bde8-f994c810cfa3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957049802", + "DeviceId": "ce2b770b-df42-45cc-beef-52aea2ebf01e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_370572738", + "DeviceId": "874d597e-34ef-4bd3-b010-89b763559972", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386051584", + "DeviceId": "2a371803-7e5e-4bc0-85a4-6dd36e69f4f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_992630134", + "DeviceId": "da76d8b8-eb8c-4ca9-9b87-b544c35d8dbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_585989757", + "DeviceId": "3be0f4d6-6825-4580-982c-ace734ae48c0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "628a80bb-336f-4781-aecf-c03c06ce0691", + "TenantName": "Tenant-628a80bb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844653557", + "DeviceId": "3d8ce080-fcb3-44e4-bacd-4a2873aa2211", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548547423", + "DeviceId": "944f3a67-7222-4cdf-aafb-23a8d402b116", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578797670", + "DeviceId": "c27101c5-e18b-45a5-b39b-f98a520178e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342567282", + "DeviceId": "7d082cb1-6aec-4645-a8a1-07f172477bf1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787208050", + "DeviceId": "87d4d819-db2f-40a6-b991-86c4460521f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_107865799", + "DeviceId": "d01ee509-5644-4ca9-a31b-3db64161449d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "005250fe-2bb1-4185-8ffc-0fafbc3c973a", + "TenantName": "Tenant-005250fe" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862212300", + "DeviceId": "6e1b3cba-a59f-4493-bfb5-f052bc147d71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532107176", + "DeviceId": "32d8767b-9b57-46bb-8d18-c2bcefdbdc07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466342600", + "DeviceId": "24fb8e72-ebc6-4b2f-9207-6d9265746811", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457464254", + "DeviceId": "4fb8e26a-4095-41a0-9efe-3a943581b036", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_847477488", + "DeviceId": "22d598a5-16e1-48c4-a1a8-ddf35bc61fd5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_439547287", + "DeviceId": "bdb4921e-44b7-4efe-9037-f0fdd33ae82a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9a1e3677-c5d8-4dff-ba61-f537c65a67a6", + "TenantName": "Tenant-9a1e3677" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831324241", + "DeviceId": "6e172a86-67b5-4e60-b580-a7c74a348a6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_754361798", + "DeviceId": "63610f79-5a1a-4507-9c30-b57b9f3b9232", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556668178", + "DeviceId": "81d29d57-cf2f-4fe6-9e2e-13dce8e9df51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531509696", + "DeviceId": "fdb4ebac-3aac-4d52-9f77-438ea3066333", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393371695", + "DeviceId": "ed8ed19c-f500-4258-982c-4d3988b2e0ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_270643441", + "DeviceId": "171c9972-0dac-4f86-a2e0-50c5fe465cd6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5ae2e031-e99f-4d13-859b-3f8862a954e0", + "TenantName": "Tenant-5ae2e031" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141875534", + "DeviceId": "2434534d-949f-41b7-9e23-c2cd4d03b199", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142923886", + "DeviceId": "2caedb16-315d-49b2-aec7-b4289e24c41b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_447187847", + "DeviceId": "9f251cff-a706-468a-9588-ede84a066c11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831122469", + "DeviceId": "67959d2d-4096-458f-8266-68c963abeff6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_344334780", + "DeviceId": "d94360af-cf01-4e92-9263-c69b988a4c71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_813576040", + "DeviceId": "8733f50b-cee2-42a8-b30e-ecf4ac4a4533", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea269401-ad14-4489-a6b7-b1a70ffddd6d", + "TenantName": "Tenant-ea269401" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136056028", + "DeviceId": "5173b4c3-791d-4416-8d58-4c0b4f6d1948", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414584199", + "DeviceId": "a9220603-44b3-4782-8b1e-05dcdc10a442", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_386943126", + "DeviceId": "c5979727-a04f-4448-8837-edc36eb2ebb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808059462", + "DeviceId": "9a668821-57a1-4fda-ae60-13b660ac4012", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_367456720", + "DeviceId": "01ea7f25-3adf-4d1f-8650-0741ffc09b1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_220055430", + "DeviceId": "67a62982-d97b-42ee-b15b-b0bb6dbe7cde", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "99475271-af3b-4484-84dd-54d5f9d57d01", + "TenantName": "Tenant-99475271" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432713384", + "DeviceId": "f89d2d60-3f1b-467f-8f33-9e6c539ef00b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933316743", + "DeviceId": "908a0620-0337-4ec2-a5d8-3fb6b2ad5366", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_493577654", + "DeviceId": "ab76a2d8-4400-4b48-ae23-aa2fdff074e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659449278", + "DeviceId": "193f6661-35a4-43fc-ac80-c565fe5e5076", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853758917", + "DeviceId": "a7a652e4-4b0f-4f3a-9189-ff34714f2c08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_358138546", + "DeviceId": "c7686b13-7803-4cff-84a4-30710ad0a66f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "df5cd3da-62a4-4f6c-a368-d970f33a269f", + "TenantName": "Tenant-df5cd3da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_863755224", + "DeviceId": "70612c6a-7765-4f89-abe9-fd24a6213f6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394685814", + "DeviceId": "e99600b0-8c99-4080-8c49-cd73d6221847", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130280903", + "DeviceId": "952c221e-8086-4f82-9d5f-e2d0d4a7b288", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886417267", + "DeviceId": "5a8e6739-e5c1-426f-a1ec-aa580f593193", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_845230808", + "DeviceId": "059a7955-f20d-43cd-8f74-0c74bb899c95", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_236708856", + "DeviceId": "1917f441-4e1e-46b1-a477-d73a042253a6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6b6069cc-69a9-4a0b-a6a8-0a170ebba5ef", + "TenantName": "Tenant-6b6069cc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987048333", + "DeviceId": "6a65c03e-ebc2-4b8e-aa8d-a5f74cbb118b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121916266", + "DeviceId": "0d282ec5-15c0-4c3b-9275-17d6445b7a0a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562832441", + "DeviceId": "0c65ba12-1973-489c-a729-51e6dcb55359", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697784602", + "DeviceId": "d3910558-5e01-4363-a4ed-a26f8be9dc68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423969482", + "DeviceId": "5357f6fe-d128-49e3-af47-c9270b0140b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_807456034", + "DeviceId": "35bf2227-8d38-4772-bb19-3f7dd78b535c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "df53dde0-5fe0-46b1-b093-3bbb0496fd50", + "TenantName": "Tenant-df53dde0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851039257", + "DeviceId": "ede33e26-58c8-482b-bdd3-3fae087c0833", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536127133", + "DeviceId": "641cfe31-339d-42e0-aecd-98715e1ac4d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393059864", + "DeviceId": "d65db359-da8e-4fe8-be31-9012ee7b1d5a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316000825", + "DeviceId": "f5f582d2-fbc4-4075-8884-88104b44f227", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247279464", + "DeviceId": "ac258140-cd87-436c-874c-d1630c5aa4b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_709024658", + "DeviceId": "573a5b21-7137-4108-a77d-f1d0a3ce3854", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0e02ffe2-af79-4fe9-9be9-0c22a33d5363", + "TenantName": "Tenant-0e02ffe2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_590513265", + "DeviceId": "43860b5f-40ef-43e5-a053-adb0949e932c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975178400", + "DeviceId": "db34f42c-c692-45cd-a47f-0f4996fe0c20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597911767", + "DeviceId": "ee31622a-128b-4e02-8c12-96656f321d39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_919700611", + "DeviceId": "e3abe423-65af-44b4-8824-16874c576b36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550146965", + "DeviceId": "2712bd8f-b191-45dd-b785-5b678458b936", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_170045807", + "DeviceId": "5eddbff6-890d-4126-9406-74f944813765", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4a9e309c-3c6b-45bb-a31e-916d4e39a3a7", + "TenantName": "Tenant-4a9e309c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718883385", + "DeviceId": "127c4e10-f94f-43cb-a015-da6579efe20c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405492457", + "DeviceId": "f157ae5f-317d-4cbf-89ee-eec41d0f4668", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755726659", + "DeviceId": "de3e38b6-edfc-443e-b56d-93b8fddeabdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687428482", + "DeviceId": "2267f145-259e-424f-824e-77771e40ad86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799865998", + "DeviceId": "1198451f-918f-4adc-95a6-0fdd78b825c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_410025569", + "DeviceId": "e056375e-0ebb-44ae-a2c9-9482416e0499", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "495ff16b-1d02-4f5a-8fde-f349c283667d", + "TenantName": "Tenant-495ff16b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290079942", + "DeviceId": "f50b7762-2f4d-49be-a804-eee279cf4174", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485459121", + "DeviceId": "0daf5f97-424c-44ed-82ac-13793afe6c57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_634864038", + "DeviceId": "97b9709b-446a-4b44-a7df-6dc032fadf9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312337887", + "DeviceId": "9577be4a-86a0-41f3-bb55-80c25548fc43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264644239", + "DeviceId": "de87ebb4-7fc6-4c6d-9580-5d89e6437d17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_173022604", + "DeviceId": "0b229c95-b54b-487d-b1a0-c444c48b3e33", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "83d8f3a7-dd7d-402f-8884-6239519eebbf", + "TenantName": "Tenant-83d8f3a7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458812237", + "DeviceId": "7f78ba79-dd4a-4ead-b7a7-2536a8e03697", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442151180", + "DeviceId": "15f56502-5cbd-44ea-b25c-580f2b15ae7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753350908", + "DeviceId": "30c8ec01-8b29-4356-a786-0d4728b5124b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881021376", + "DeviceId": "66cfdffa-b6f2-4f29-9cf1-b84250995222", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_269627054", + "DeviceId": "f01b2ab3-334d-4199-9c3f-00931f71dac1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_444722592", + "DeviceId": "ab12092c-ac34-4327-9e13-f4b29e43e9bf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eb827bd2-5af4-4dcc-8384-38bb115c4b7e", + "TenantName": "Tenant-eb827bd2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227711023", + "DeviceId": "419c2ecc-85d9-49d7-83b6-9c56542e05cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443245074", + "DeviceId": "bfd8539e-51ac-4114-8ad5-fa7877dcf036", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767184786", + "DeviceId": "e3cfd7c4-70c5-4116-8517-ab3f46697aa0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_230791977", + "DeviceId": "5e7058ea-45f1-42c4-80bc-de09c635a7df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865063387", + "DeviceId": "b8fb7d7b-75d6-4772-bbb1-5a338059b508", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_807480800", + "DeviceId": "048bd254-4e05-42dd-9620-66e986ec4bd6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "99bb2e8e-c0fa-4a7e-b7a3-fdeba304bac9", + "TenantName": "Tenant-99bb2e8e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579025514", + "DeviceId": "db0462a6-c768-47f8-8e7a-04038cb5ceeb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122825832", + "DeviceId": "a46cd5c5-b316-49eb-b3ec-a718c7668a13", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_111714497", + "DeviceId": "283e1bdf-e2d2-4e39-9928-3e7f946db084", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416133261", + "DeviceId": "b1eab349-a0e1-44bc-8ee0-a99bf4cdf52b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977119542", + "DeviceId": "885700cf-5a78-4e3b-a39a-a67c808984f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_419504677", + "DeviceId": "ac3c2d24-7a75-44a0-9373-928cb86c0dae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e1f43feb-b516-4511-8d48-1760983ef430", + "TenantName": "Tenant-e1f43feb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_421247720", + "DeviceId": "fcc84a0d-08c4-4e4a-91b3-5716164d2ca8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864253809", + "DeviceId": "d5d21045-1c6f-4c33-a842-4965c0e66d30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_655599176", + "DeviceId": "6ce5d685-fda7-4b62-b5d5-6ca312e48747", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384209320", + "DeviceId": "cf50f7b2-4300-45df-bd82-443293459064", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757552627", + "DeviceId": "7c420015-4f20-444f-8750-62291491e8fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_198096438", + "DeviceId": "ec4ff4ee-3a5e-4bc2-a4e2-8bb1e1e2f028", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6e52c6bc-dc9d-46db-b9bc-04d0089f8264", + "TenantName": "Tenant-6e52c6bc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819053167", + "DeviceId": "321909e2-8762-47a0-887b-f4cf24cb66dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571695829", + "DeviceId": "5cd1bae6-660d-4133-80ae-d1af94ac35fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_378198375", + "DeviceId": "a9ff13ce-6657-4a61-a2bf-55239b2e135a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_229861366", + "DeviceId": "dfddbe77-5cc0-4744-a2b0-f7bb607a43a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531169795", + "DeviceId": "7eef33d8-f79d-4d38-a778-eef8aec0643e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_388345183", + "DeviceId": "aeb07cef-1d4c-4dcc-b71d-a5572cd19e6f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6d529035-ba14-4a98-a4be-9b9ee8ca5819", + "TenantName": "Tenant-6d529035" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646424842", + "DeviceId": "555c74c1-bc89-4e6d-8815-b1c9856c4162", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_911451692", + "DeviceId": "6066215f-3c2d-4bbb-b81c-8cef62c37c25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738671650", + "DeviceId": "9f937bb7-dec6-4130-8633-300418052c0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988163525", + "DeviceId": "f8b3ee20-032e-4613-bbbb-b779a642968a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_842596638", + "DeviceId": "6de1d1e9-b5d4-48b1-8cd8-c88da0cec815", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_680909111", + "DeviceId": "989baa52-6ce0-47ec-bc4b-4ce1c8957a94", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ddf6e427-b96c-4107-bd53-538790319ac2", + "TenantName": "Tenant-ddf6e427" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_795827054", + "DeviceId": "8e0a1a50-b349-46f8-8667-a0e696ae0dfd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824718215", + "DeviceId": "79baf1fb-dc16-4619-8823-2c74225220c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445049763", + "DeviceId": "39b65502-8fad-4fdd-b0e2-bf85b1068001", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526639244", + "DeviceId": "596accef-7857-4548-a72f-63e65d6d32d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678833884", + "DeviceId": "8badea17-f626-4a8d-8a42-5837a8b10710", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_741522439", + "DeviceId": "361e3f8f-1bb8-4b4a-8e3b-185d7f93096e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fb62cec2-79a4-4e42-90f2-9d850ccf1b1d", + "TenantName": "Tenant-fb62cec2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789620122", + "DeviceId": "76c002e2-b2f8-424a-b475-1281210e2ff2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_889379544", + "DeviceId": "428ca658-e32b-4e96-9475-71514ed4a3db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187629922", + "DeviceId": "c40f134f-6b39-4d6a-bff3-9be734e9fadf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255261944", + "DeviceId": "6935f6bb-ceb5-461b-9572-41aaa6109958", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_840253490", + "DeviceId": "08c3d6f8-2fff-4516-a28e-a5be82bec49c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_447850169", + "DeviceId": "4ce560b2-efd9-46b9-8609-2103fab33e75", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c8e4f417-65c1-418f-b865-8532ddcea6b6", + "TenantName": "Tenant-c8e4f417" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970741845", + "DeviceId": "c472f2c2-3590-44fa-a301-4e621f5b6808", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107011010", + "DeviceId": "a48e2aa0-fbbb-4d53-b702-010ed87c8eb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919562678", + "DeviceId": "15d4da67-b4a4-4f97-b1f5-c6565fa96cc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825564240", + "DeviceId": "6cc026aa-20a9-4c2a-8026-47a0c923f17d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_620742181", + "DeviceId": "930c601c-ffd0-4f51-a4bd-e943204ea8a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_593226202", + "DeviceId": "14361602-9c58-4c1b-ba4f-cea47f4d9518", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "46cd7d8d-e3c6-4c08-95a4-3e6373e878d2", + "TenantName": "Tenant-46cd7d8d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148039979", + "DeviceId": "13a75a6d-b093-42dd-918d-fc192b0cb7ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788125409", + "DeviceId": "f29344b1-34f8-466f-888d-e026f1246df5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104881558", + "DeviceId": "c92136d0-36e8-4c43-a167-052283f1e8af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_118851411", + "DeviceId": "b23aebd4-eb0b-4e05-96ac-519beb0308b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235934385", + "DeviceId": "d831570a-a2ce-48db-abfe-fb75fceae5c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_793187451", + "DeviceId": "8b67bacf-24f9-489a-803f-575b95f56335", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "49f9c6b6-da61-4361-9f93-016ebc32b2b1", + "TenantName": "Tenant-49f9c6b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822028033", + "DeviceId": "eded7cc0-d8b3-4120-a715-bd43e592e31f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242829753", + "DeviceId": "d72c0736-56cf-4751-96e6-f4ccc0e9f12e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693908761", + "DeviceId": "f8dfd684-9fd5-4652-9c55-6a09865023fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674963020", + "DeviceId": "f9d68b73-b718-4664-aff7-3841e054f5e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_391029074", + "DeviceId": "139f287b-0e00-4904-a77a-c177acda8d2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_420960877", + "DeviceId": "0b7123bb-0aa7-4b93-94a4-e94b47207b70", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "099328de-66f4-45ac-ac3d-dd3d6f250939", + "TenantName": "Tenant-099328de" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973097112", + "DeviceId": "8bf40a85-8a8a-4167-87ff-aa8afc0684f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_256000437", + "DeviceId": "233fa8be-521f-4e28-96b5-c70f7e39f1c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_343579128", + "DeviceId": "b2a80edb-8594-40f5-9740-31851bad87ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995034999", + "DeviceId": "595d63a5-e96f-4f0f-adb8-8e41f734c0c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925966941", + "DeviceId": "f442982c-d9ed-4d46-8086-213f326fc0f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_878430483", + "DeviceId": "4e5a4b95-d771-483f-8f02-0c5e03befa20", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "21e4467e-a03e-4a82-af88-48dd93e79201", + "TenantName": "Tenant-21e4467e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_672998233", + "DeviceId": "79970770-001e-4b07-a2cd-133f2abe3b94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571882993", + "DeviceId": "67a24804-2992-4a98-9466-c94e412e6917", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_180470978", + "DeviceId": "26360f30-a9c4-49b8-919e-896ac8fd83da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432079104", + "DeviceId": "ef6b865e-266f-4d6a-8e4c-cae95f48dc80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_239817024", + "DeviceId": "6a320786-5ad2-456f-ad35-792eb036b39e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_891343666", + "DeviceId": "79d7792f-a16c-4c56-8c8d-d548ef252db6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "75ee8186-e6f8-4958-86d8-e4f20cfdad73", + "TenantName": "Tenant-75ee8186" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740219301", + "DeviceId": "9e38ae7a-5c31-43c0-a91d-5eed68a7326b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644829754", + "DeviceId": "49673045-d3a5-460c-8161-f89fd7fbfca5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981647061", + "DeviceId": "128aa9ac-3ce5-48ce-baca-7eef2595df6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_186658244", + "DeviceId": "2106b1d6-657d-4591-b138-4760e40dea37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_537219893", + "DeviceId": "9d4e90ac-4ac3-48f4-a081-f8cc3ca309f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_913994878", + "DeviceId": "7ebfbe1b-5abe-41a7-b4d4-6d80c7643596", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "632506c3-5fda-45ab-b8e1-bec622799663", + "TenantName": "Tenant-632506c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286844848", + "DeviceId": "cce1880b-1819-4ef6-b475-5dd7f5c60358", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260655058", + "DeviceId": "692b846f-faaf-4430-aaa8-55b89ab5d446", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692875419", + "DeviceId": "d0bba267-4789-48cf-b398-a8df46eb6433", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700049088", + "DeviceId": "1704a396-d7e8-49be-b7a7-77b4a50397f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936348646", + "DeviceId": "aa6bb142-0985-4829-9de9-25426895c4ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_720394873", + "DeviceId": "dd37c9a0-d164-4041-992b-c657195c0bee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "26a83f00-4002-4f63-9564-c919d2011777", + "TenantName": "Tenant-26a83f00" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274617513", + "DeviceId": "faa82d8e-f0d9-40bd-b2bb-8b8818aa5198", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609379742", + "DeviceId": "769d7ab2-0b24-4618-a58f-ab63b93610f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687183789", + "DeviceId": "4455d33b-8d64-4302-b423-9e035f0766e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193869129", + "DeviceId": "dda7c7cd-e984-4739-9887-aa088c8331de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301499177", + "DeviceId": "b230f936-e871-456e-a08f-4743d5f33f76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_713030798", + "DeviceId": "c2471e63-b205-4706-98da-8f234dfb721c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1e4bc264-898d-4cfc-9955-cbe0e6808169", + "TenantName": "Tenant-1e4bc264" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741248207", + "DeviceId": "c91bf67d-8604-4c08-95ea-c9045eb01084", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706359912", + "DeviceId": "35f380f3-fede-4735-810f-3f8eab34e9d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_777119044", + "DeviceId": "35f10743-49ed-4f86-a443-5ef35343795c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235930704", + "DeviceId": "bd6d0197-14bc-48b4-aa4a-eedf663bbf27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_443969258", + "DeviceId": "73255bc9-7fca-412e-8f76-99b8ee1af1c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_746494895", + "DeviceId": "1a951c44-1a32-444e-83bb-e4a849fe441a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7c68b373-9300-4bf0-8f97-4c5b40250157", + "TenantName": "Tenant-7c68b373" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265227258", + "DeviceId": "538b69e2-0e1a-44c5-ba7c-ba6086cbd34f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_390671499", + "DeviceId": "4bdc1884-5b94-49d3-a3fe-23671d1737c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_750018289", + "DeviceId": "62672202-0b68-4f59-bf74-88f89d14cf2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889843099", + "DeviceId": "1bdcd1ae-e5a8-450f-8853-c93bc5a1338f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523576575", + "DeviceId": "a75e15d1-c3ec-421f-95f8-3d034259b96d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_156790908", + "DeviceId": "2c19a383-476f-4680-af78-cbc7fb2c90b3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "618eacac-88b0-466c-b259-710b3b0176dd", + "TenantName": "Tenant-618eacac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812224733", + "DeviceId": "5a6ebe3b-864a-4649-a107-853b7148744a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928159716", + "DeviceId": "48002130-c99c-40e3-a026-bbecdca75509", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423335757", + "DeviceId": "5a233a8b-8ace-4c4b-a6bc-2dbe751b7118", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_441588922", + "DeviceId": "f541b25d-ba02-4caa-b9a9-f20a1e6d988f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962334811", + "DeviceId": "91445918-7461-4810-9bdb-1dc7d3997d60", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_677373724", + "DeviceId": "b3417a05-912e-43d1-b789-4292c8d08b25", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5329a08-5758-41b1-910f-ce295b407a3a", + "TenantName": "Tenant-c5329a08" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202931724", + "DeviceId": "21c75d16-4ed9-4375-9cb1-ad4b9cc01671", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380046403", + "DeviceId": "6e2bd36b-9973-43ee-a822-15a8cd075121", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484862172", + "DeviceId": "57d738b5-497c-44e9-91c4-c677eb5db9aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152726485", + "DeviceId": "2f5586c4-64f8-4ff8-9f88-e3f640dffb33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_113410295", + "DeviceId": "de2d5b0c-a5c0-422b-b70c-8a15a5615a16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_605822538", + "DeviceId": "689fdf3c-4931-4a34-94e3-4d7730bee985", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "46f8c6cd-b7d7-4651-8f6f-128b14c272b1", + "TenantName": "Tenant-46f8c6cd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909636638", + "DeviceId": "9c831fa7-ed61-48b3-8272-e9bba42abf4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940505334", + "DeviceId": "bb2ad807-5f98-4350-8cd1-3b2ed9c3d4a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652755496", + "DeviceId": "3a917727-c854-46ee-b03a-497943e83ac5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642749000", + "DeviceId": "10c8297d-da73-46a0-bc93-b7405299ec20", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_888171434", + "DeviceId": "b977f9a7-e079-41e2-b977-80e54d14956d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_816275465", + "DeviceId": "f345380f-8215-4160-bc86-fa5f1e9e6c6d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1e320826-5c16-41c3-8770-034ee21f1842", + "TenantName": "Tenant-1e320826" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926366257", + "DeviceId": "55ad0e71-6a8f-4ae3-95ef-85393051a896", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885824857", + "DeviceId": "110d2205-a832-4110-9459-6d534bfaf538", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925466840", + "DeviceId": "d5d84718-db8b-47b1-813f-79189ab3f672", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_122442569", + "DeviceId": "586338f6-8f94-4112-ab85-572f55d61e63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_435869287", + "DeviceId": "7f9c98bb-0f36-4ff3-882d-077469ec5d61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_374591079", + "DeviceId": "5c8fd123-9f19-4c22-b346-f561969cde5b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f43d2754-3dbb-4750-887f-20ff73778b92", + "TenantName": "Tenant-f43d2754" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_634253976", + "DeviceId": "11f7695e-ea0a-404e-a8c4-a6751a1a98ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768271582", + "DeviceId": "6929ee08-b8c6-41cd-b287-44da63b0624f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_160510011", + "DeviceId": "380e9ed9-a17f-492b-9dfd-e16089a9d2cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726199796", + "DeviceId": "b093b0d0-dc29-47d5-8141-fee29e122167", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658943549", + "DeviceId": "a70d910b-8013-4e55-868f-5bdaf18cf619", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160272829", + "DeviceId": "79d49878-cd0c-4ab5-a312-70a9e613ae62", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9ecbb5f0-46d4-491a-b9a3-ce3abdd55b05", + "TenantName": "Tenant-9ecbb5f0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_674973319", + "DeviceId": "18b1a148-fdcd-499d-a341-78fdf5cfdd34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398686554", + "DeviceId": "2eed9a71-c692-43f4-a54a-dc4f64579355", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182598204", + "DeviceId": "19a903d5-1a72-455c-9ae7-3aa6af35e074", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673431745", + "DeviceId": "888f3e45-203d-428b-98de-c7802c2cd635", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_924593268", + "DeviceId": "9e6ff269-c139-4bf5-8664-2ffb114e37ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_759657054", + "DeviceId": "317f1777-af3c-41e9-89a9-2fbbc1bf448a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8f6a19cb-b89d-4516-b54a-015f85be52f0", + "TenantName": "Tenant-8f6a19cb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309892393", + "DeviceId": "14632f47-23ea-478f-98a8-203314a535a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566700766", + "DeviceId": "0c07de5b-99f5-4d45-a48a-b6642919fac7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451421019", + "DeviceId": "4fb548ab-e8dc-449c-b111-a915c8ad5a57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370197697", + "DeviceId": "b55022df-1ba1-49cd-99c6-5e02ea3e46fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_216217231", + "DeviceId": "730d90ba-913f-47e4-88e2-050466dad933", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_598911074", + "DeviceId": "5a9d21a9-f896-4d22-9c6a-2dc1e462f011", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "652bc131-fe89-4ddf-924e-d0339cc603e9", + "TenantName": "Tenant-652bc131" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_814309030", + "DeviceId": "1b775200-d921-4075-bcd1-7bb2ecdcb972", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430532800", + "DeviceId": "32e29e51-0caa-41fe-af26-d99a438aa584", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661420068", + "DeviceId": "780abc04-c60e-48a9-8b8b-44c0c833765b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_163200804", + "DeviceId": "31896f48-e056-4a96-808f-ee44d9d89de9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_648583550", + "DeviceId": "cc3805ef-26df-40ac-bdd3-d7c6ab936dce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_155986732", + "DeviceId": "e47f8a1f-d88a-4909-a23c-a65c6b86029a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "138d0187-2d32-4752-99dd-2be7612c2e86", + "TenantName": "Tenant-138d0187" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626561258", + "DeviceId": "fac188c2-15dc-4126-b906-434b8ab0662e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804631035", + "DeviceId": "0c55508a-cd67-4db8-a3f6-13a6c1be1c68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_501222364", + "DeviceId": "ac8eab05-2243-4157-89a5-c9111f148f8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469740649", + "DeviceId": "cca84f0a-36d4-4de0-9dbf-4a5cfece4b34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324340317", + "DeviceId": "991294ff-e0b4-45d4-a2f6-23cc8b64dd48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_455635698", + "DeviceId": "9931aa67-7b68-48a9-84dd-435f00deb832", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "25c719b8-20ee-46da-be6b-69a0af99933c", + "TenantName": "Tenant-25c719b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622797479", + "DeviceId": "621a25fd-c286-4490-a73f-4b53aade672f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802081351", + "DeviceId": "238c1821-5b34-44fa-a788-55d7fa1a6ba8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550158239", + "DeviceId": "5a99f584-3fba-4bab-9ebd-5eb19790cbdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257218813", + "DeviceId": "fc587bce-5bc9-43a7-a679-50d25c359140", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581688000", + "DeviceId": "f482ee74-5293-4119-a742-6115bd284eed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_415755237", + "DeviceId": "234e4e0d-8f95-49b4-8fe6-75c589d9e1ac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ac54b112-6840-47af-9e02-6b00017ff238", + "TenantName": "Tenant-ac54b112" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_282081291", + "DeviceId": "c3e9b07d-4a59-4290-a0cd-ccae91b8d1aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279622917", + "DeviceId": "090ae01d-50ee-478c-9f13-dbe1c4df36c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467415669", + "DeviceId": "fccf0eaf-9810-4519-9cf3-b97993b0ff7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_800799019", + "DeviceId": "1abe2559-6659-4024-8303-820d3496386d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187209557", + "DeviceId": "d8c12311-f3e8-47cd-ba92-ec4fbfc99f7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_703648454", + "DeviceId": "4b960d06-0317-420c-95b2-d6a0db9784f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "034b021b-6770-4e60-8a2c-3191444a2b0f", + "TenantName": "Tenant-034b021b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834471325", + "DeviceId": "3f83dcb1-480b-4a25-9118-7dce26e0b04f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271343515", + "DeviceId": "364be0ef-e824-470f-a7bf-b8d0ed2703b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562620755", + "DeviceId": "57d833d8-c62d-4930-a914-b9c8a4785e45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_272502525", + "DeviceId": "e707554e-4555-4c15-a6dd-33488fdb728d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_816470432", + "DeviceId": "48aecda8-ed0c-427b-a3d1-c9a4078c1f09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_774992683", + "DeviceId": "918fa43f-049a-440e-87bf-a365b8cd0041", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ce7fced0-8895-437c-b78c-512e0a86ab47", + "TenantName": "Tenant-ce7fced0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354285208", + "DeviceId": "8cd7918c-dd19-495f-a05e-0398d4643790", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676981399", + "DeviceId": "7e7adf9f-a3af-414f-9a99-eceb1943b832", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_137508158", + "DeviceId": "e96891d2-e44b-45e2-9598-16a4672bb6fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947851769", + "DeviceId": "7b789ba6-ed01-4e07-811c-d3213f973e7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695837081", + "DeviceId": "6d982783-89bb-4473-a6f1-f4df13eca66b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_433559193", + "DeviceId": "a6885550-91ec-463c-b4cc-88a3ef8c5a71", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5d5effd7-fd87-462d-9f6f-fd5848a59f49", + "TenantName": "Tenant-5d5effd7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_183587073", + "DeviceId": "6c24157f-f4b5-43df-8146-7d596330d9ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905365449", + "DeviceId": "b0c592d7-4454-435b-a024-a860531b51c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981389178", + "DeviceId": "999dd845-fc40-4ac4-86a8-545755c33fc3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139715261", + "DeviceId": "083abf59-10a9-4b00-b97c-625604d89b68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678546001", + "DeviceId": "29fed257-688b-4e26-99e0-9909379a4056", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_783905000", + "DeviceId": "b41e23fd-7e42-49d1-87ec-28a391272252", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7dc479db-6a38-458d-974a-cdfd4b76035a", + "TenantName": "Tenant-7dc479db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746123557", + "DeviceId": "67a64af9-71f0-42b5-805c-55b7e5afc0a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938375240", + "DeviceId": "63fcfea3-b72b-4577-b6c6-b3fa36851205", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405682753", + "DeviceId": "f23f74d1-e21a-4410-823c-99365b735ef8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177667593", + "DeviceId": "430fb296-a98a-461d-8dfb-3c77417aac94", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424370205", + "DeviceId": "e068ac14-3945-48b3-b92f-ddde90709fd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_771698797", + "DeviceId": "34163531-f295-4eb1-ba47-4973195a06b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9f42e0bb-c394-4939-b1da-2563c1bd274a", + "TenantName": "Tenant-9f42e0bb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362444974", + "DeviceId": "08af8857-8839-4e28-93cd-7b7fe7f58f5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101771418", + "DeviceId": "4909fef9-b2d4-4630-b0fd-c6a6e047dff0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302311157", + "DeviceId": "0b190ca2-5d1f-46cb-9054-35b6005e5944", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_887588200", + "DeviceId": "19765587-dea0-4722-b7cf-7e52d79dafca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_345781211", + "DeviceId": "3cf83771-da11-46a8-87ef-f82b683ffe93", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_841022667", + "DeviceId": "f8f3c786-4df0-467d-9708-a01e7ba0db4c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b73e0e64-2b0d-41a8-b5ba-2d5190842508", + "TenantName": "Tenant-b73e0e64" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_660307572", + "DeviceId": "21c50b95-c8a8-4af5-b9c0-5d1ebbd2bde7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428994344", + "DeviceId": "10125d55-f210-4682-9f22-6b93128b7ce3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_268225837", + "DeviceId": "2cd37120-dbe2-4b03-81d9-9458f67ca8d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956249057", + "DeviceId": "0a53fc34-2cd2-491d-99e0-117f9ce539e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196885857", + "DeviceId": "645a1c99-f590-4814-8932-925c5772cc26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_690172702", + "DeviceId": "4ef11678-25b2-46d7-9dff-3489ff9d5dfb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "60a17090-8bca-4f8e-9613-67659730faad", + "TenantName": "Tenant-60a17090" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975642548", + "DeviceId": "489247aa-111a-41f1-8f81-5fa932e7574a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412981167", + "DeviceId": "29331ec1-7494-411c-8c50-b7a3602a2fa4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192864482", + "DeviceId": "ef4ab59d-79d2-4bc3-a735-21e4a592fc54", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896656510", + "DeviceId": "e54062cc-2bb3-4540-8155-f0dc9784d485", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411925704", + "DeviceId": "7a0425e0-22fe-49dd-8f94-c08546390514", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_612908495", + "DeviceId": "03377710-1a18-4d7d-a6f7-f7e5abb58707", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80357257-cf3f-4cad-883e-12ea1458cf27", + "TenantName": "Tenant-80357257" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922939375", + "DeviceId": "cfeb1633-b93a-43b2-88ac-8d5f18fe3866", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227360137", + "DeviceId": "7f7cb1ca-7a88-47aa-b5a6-ac12968765f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_953401625", + "DeviceId": "4933ec97-8d89-44d5-98c4-608c8d3287b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771681830", + "DeviceId": "9a5308ac-8edc-41b4-a3fe-def19bfbbd31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772120786", + "DeviceId": "834f469c-5edb-4e6f-8e29-74e93844f24b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_363517890", + "DeviceId": "035ff801-68e8-4677-b930-61e9aad154f1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "24bcd381-b90d-4333-9cc4-b21858e23065", + "TenantName": "Tenant-24bcd381" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550376567", + "DeviceId": "ccdbf47a-2a6f-43e4-a657-4f534e41e196", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139972908", + "DeviceId": "352cab03-97e9-4bed-9a7c-86ffbdde8fe8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223090170", + "DeviceId": "7280c6bd-58be-42ae-8189-7a0ca263629c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557049255", + "DeviceId": "77c1ecba-0b26-4816-85fa-7f985245b54c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_934664528", + "DeviceId": "7ce9b30c-766f-4ec6-be61-a7a1e75859e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_951506489", + "DeviceId": "989f4c40-bbc5-4ac3-9885-1c398d27b3b5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "45ee1c4f-f104-4489-a004-34bb36b9ba03", + "TenantName": "Tenant-45ee1c4f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513770109", + "DeviceId": "a9a5fad3-84da-46ad-b8db-2c096b24dbc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762103439", + "DeviceId": "53ad117e-0b80-4f23-b698-56a46df6da21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575803243", + "DeviceId": "eef5b043-da54-458d-a57e-1487a32e2273", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940854539", + "DeviceId": "78a09280-3c37-4bc3-8e7a-f7c5dc68f2fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665035017", + "DeviceId": "517856c1-a764-4eee-84dd-a9dfce7be109", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_959760398", + "DeviceId": "e437b0cc-19b3-45a3-a3a5-0500c9fad63b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c14bbabf-de94-4008-a2ed-e30cc6a23ef9", + "TenantName": "Tenant-c14bbabf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_988199834", + "DeviceId": "6f76efaf-dffc-4a24-9180-9c386d6f90ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152298823", + "DeviceId": "5ad66c99-376c-4b29-9587-a165153a7499", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916295309", + "DeviceId": "83aa112c-925d-4da8-8d55-6a4e27588f84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582731896", + "DeviceId": "39b9b276-21cf-4168-865b-58f0adbf9c3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286281102", + "DeviceId": "293b3341-a1b3-4d77-8b67-d9200582a771", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_258299439", + "DeviceId": "565efea9-0290-421e-9a72-ba6d2197d506", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "23522740-4a3d-4ec1-b3b2-5f98c2f38905", + "TenantName": "Tenant-23522740" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_593785380", + "DeviceId": "d32419f1-fad2-42c8-be03-69539c68472c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166909344", + "DeviceId": "9992ab52-8945-4b57-8aff-2f9c7cd4eb08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292689005", + "DeviceId": "a415796c-4c59-43fd-a355-a4a4c27df19f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266393927", + "DeviceId": "ddd47971-d156-4db3-9a13-0f3bd47ab92d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266487595", + "DeviceId": "9dc1bdf4-02e2-4921-aba4-cc15377e1855", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_151291491", + "DeviceId": "ce283911-2d0d-4085-9128-1fbf14d5443c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2019c970-1e9a-43d6-816d-51397b6695fc", + "TenantName": "Tenant-2019c970" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_805837310", + "DeviceId": "46fd9855-1513-4a83-8e46-22cafe6283ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_805427516", + "DeviceId": "e2aa3403-3adb-495e-bc20-a9610838a350", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613932792", + "DeviceId": "654b6e7b-5029-4888-a232-2fe44a6cacfc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_605482782", + "DeviceId": "3c915f6c-bd89-4b2b-bf4c-b51a3d49d162", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989432535", + "DeviceId": "c9bb0a43-4835-4305-bb2a-1310c9e2d2e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_693547674", + "DeviceId": "94ad1f3f-6c24-47cd-893f-6f6fefa0e97d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "62ad41c5-6ced-4c2a-a3f1-b842abe8885c", + "TenantName": "Tenant-62ad41c5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182423205", + "DeviceId": "8f8f8cb1-527b-4555-a27f-a215e45ea725", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_189794799", + "DeviceId": "9e415c79-34d5-4d47-853e-52e12b775e2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474280614", + "DeviceId": "fc76fb7b-a5c0-4634-a135-abb371470660", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158812566", + "DeviceId": "01837215-1633-44ed-9b82-7aee3e804e96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574161596", + "DeviceId": "d87633f6-22ae-40bc-b987-625e5a051912", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_231702336", + "DeviceId": "a42df440-4344-4f4d-b0c3-8fd062cfbaf7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed77c5ef-d5e1-419a-8b04-0172e5c91e58", + "TenantName": "Tenant-ed77c5ef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202941946", + "DeviceId": "0b98317e-a6b9-43e5-b3bb-ef62f6c155b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885415027", + "DeviceId": "5ab3c5ae-16a6-4778-9a01-16cd5288a392", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_460654443", + "DeviceId": "3452d57b-3ebc-4254-8194-9091b9ca202b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137761886", + "DeviceId": "7ccf7fcc-4401-4c42-a8b9-0b05e434eeb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_895564377", + "DeviceId": "b552fede-9bea-4792-97ee-f2fe0468437e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_340671365", + "DeviceId": "7a088a60-fe31-423b-91b2-49142798cb7f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3be80453-9b57-42ac-ac3d-d9a02a082246", + "TenantName": "Tenant-3be80453" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540173906", + "DeviceId": "3680ec6d-ed88-4046-b613-a82b653546d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407161443", + "DeviceId": "2422dbbe-747a-4f41-aba7-f2d033d696d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148203724", + "DeviceId": "2731722b-c58c-4805-afc0-099707fe485c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556344546", + "DeviceId": "41826e3c-f3ef-4d9d-8705-605517c993ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425857203", + "DeviceId": "3d185e39-9c7e-4b2b-90f4-084139f00d62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_797861033", + "DeviceId": "7fbf6c99-f948-4f14-91ea-4edbba325977", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9072be71-6340-494a-8408-f4d408d3be7a", + "TenantName": "Tenant-9072be71" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154863363", + "DeviceId": "79d07a45-7c70-45d1-94a1-4240df559492", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559376654", + "DeviceId": "d80d4d5a-ba73-4e2c-8517-062cd1bb0280", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225172108", + "DeviceId": "582320ea-c9bb-4848-8145-329580e31647", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956632332", + "DeviceId": "80d33d89-0b38-4e43-9ed6-0039f2718d0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_946248060", + "DeviceId": "8e1c8aa0-9804-4e10-a1a4-8f326d5e0a2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_129676225", + "DeviceId": "2c4a3aff-3689-46dd-b44f-95cfb661b64c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d418fd73-59af-40ef-bccc-b6fd7e2a37df", + "TenantName": "Tenant-d418fd73" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_711204234", + "DeviceId": "1ecaa1b0-7e3c-4efd-a72a-13a82db367b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619634389", + "DeviceId": "02124eb2-1d07-4560-9d9d-1e46d525cf83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227265442", + "DeviceId": "a42d27c2-37fe-4e1a-b9e6-7970e00e4ca1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171419445", + "DeviceId": "85e494ab-af0a-49e5-9cf0-5d12ebbb2ed8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916932296", + "DeviceId": "64a09722-6f30-48d1-bcf5-2e762dca3cac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_769419568", + "DeviceId": "f5c81399-c6a5-4002-9fef-46f19c7a677e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4ee24114-f659-43d2-ae5b-5176c489c27c", + "TenantName": "Tenant-4ee24114" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532524908", + "DeviceId": "6b67ccfb-9e7c-4734-9191-d4b1a785005a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_501559813", + "DeviceId": "b5a05c13-3f43-46cc-8281-d9bef968efcb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_614020841", + "DeviceId": "a001304f-9a17-4e81-a862-5e0b58c69e46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273192778", + "DeviceId": "62a02f16-8257-43cf-ab40-99cf4670d426", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_371618972", + "DeviceId": "08868be5-3ef4-4b1f-9f18-d2ad5c081e90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_532948489", + "DeviceId": "3bc61430-638c-44dd-8d48-ac6644d1c265", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9fa96ad2-8a80-42bb-b6a3-a5f1561327a3", + "TenantName": "Tenant-9fa96ad2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876329102", + "DeviceId": "d3ca8faa-533c-4d7b-96d5-cd52d3da91a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207667971", + "DeviceId": "40fce02f-0dc4-421e-accc-442e7880aa2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286991505", + "DeviceId": "25b231c1-bf31-4ae8-b871-411d9e74a94f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925000861", + "DeviceId": "61b7dc13-b311-464c-9f5c-3cbfea68f8bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432275401", + "DeviceId": "28218c48-1b7c-4684-abb3-d08a720619cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_883735469", + "DeviceId": "8be32477-5016-486f-9bef-338481560a22", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "472251d3-833f-4e30-a276-7b2c8b9a757d", + "TenantName": "Tenant-472251d3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_586707183", + "DeviceId": "22c1c647-85f4-407f-b97c-9ece90a6e770", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_472627225", + "DeviceId": "21989a95-a64a-45b9-b4cb-9713eedff9e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131482705", + "DeviceId": "fcbe198b-f736-4a88-b4f7-dbd0f14f37cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400056170", + "DeviceId": "5aae7940-8098-4a6d-9da4-15a2fbbabc17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374468217", + "DeviceId": "ad825bdf-c4d9-45ec-a552-738cf54827ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_623742621", + "DeviceId": "9e342998-4b9b-4f7b-8e59-bc0c8f9f6780", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2e0887bf-1d94-4844-babd-f6cf6d72f688", + "TenantName": "Tenant-2e0887bf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_179834990", + "DeviceId": "7621afe9-f191-46f3-b215-4c998f4b94f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690373978", + "DeviceId": "4f4e4984-6a36-45d3-82a9-a039479b0775", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_932908134", + "DeviceId": "d3318633-a608-4b40-a755-382bda00179d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777445864", + "DeviceId": "4a398e5d-82f7-487b-a679-c6082a4ccba0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_617619988", + "DeviceId": "764f254f-4f15-4c46-8e1a-0a49081157ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_447937367", + "DeviceId": "c8827249-6091-4bbc-a64d-4963cde62f4e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "46935241-35ac-45e5-b7cb-da6c4ed2be04", + "TenantName": "Tenant-46935241" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638642019", + "DeviceId": "43d7e0d5-d614-4804-87d1-89bfccff505b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242108189", + "DeviceId": "87f87a93-86ce-4c71-be71-fbb8d7d0a84e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199451100", + "DeviceId": "0c81e714-29b8-402e-b8cd-4eae43bd761a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_404976181", + "DeviceId": "e4a191a6-e766-444e-8023-f551df453ef1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831548931", + "DeviceId": "d42188ac-4bd0-4082-9f54-2f1288c82c39", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_644191621", + "DeviceId": "f668ca94-a3be-4a83-ab0c-6bb048407032", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e9b533cd-560b-44bf-b189-499952e834cb", + "TenantName": "Tenant-e9b533cd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879700712", + "DeviceId": "1c3de2df-c24e-45dd-8f6a-c5969a1f6663", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_723958971", + "DeviceId": "866dcf50-530c-4fef-be45-dae7f79e91ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786323620", + "DeviceId": "80afaf82-45ea-4194-90e7-61f9e0988b9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659869224", + "DeviceId": "c34cefbe-69d7-4cfb-8b5e-7c07fc5fc45e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809835531", + "DeviceId": "ab200120-9d4a-43a0-a899-aa36d688f8f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_557569986", + "DeviceId": "a30da958-991d-4177-abfa-1916b80765a4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a4765d7-e1b6-446b-97b7-59c5edcbf0c3", + "TenantName": "Tenant-2a4765d7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892271565", + "DeviceId": "6a35f8bf-b97a-4959-930d-626a4783f971", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_344351237", + "DeviceId": "819c175e-926a-4f5d-bdba-26e16d713eab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_590652642", + "DeviceId": "cf622907-914c-4720-a067-232291ca84fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851428709", + "DeviceId": "bd0fef1c-7ccb-40b2-a7c0-458dc6486b8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939239655", + "DeviceId": "8f5995a2-4dd4-4b5b-b19d-a1487a1a549c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_731717434", + "DeviceId": "b6f28124-a877-4165-9ec0-f952c925e066", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c35add37-0e2e-467f-84e6-56ae16d4a716", + "TenantName": "Tenant-c35add37" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761526996", + "DeviceId": "0f60d43f-3c04-4f86-9b76-10e32e6a740b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553651015", + "DeviceId": "0d894804-62a1-4e5a-8e22-f1170a559699", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617454218", + "DeviceId": "0fc14201-dddf-4f85-81c5-879863ea63cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815861161", + "DeviceId": "bbf0694f-631f-4c08-a27e-8b34f0764a21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989773243", + "DeviceId": "95c0df4a-286c-41cb-852d-2f28bf2c8a8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_933610453", + "DeviceId": "bbcd4174-5c5a-4a5d-9a2a-5ab03a1d4b70", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9a52f648-9641-4258-980c-7b28ee743ef7", + "TenantName": "Tenant-9a52f648" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845092075", + "DeviceId": "9d49882d-7976-4d5c-9643-1cd7fe821bb4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116981420", + "DeviceId": "b7e6cd35-eea6-4478-bfa4-81f41a01a3df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_552088097", + "DeviceId": "e052ceaa-13b2-4fe7-96ee-54a89551f244", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826247175", + "DeviceId": "35dcc142-5a92-42bb-b4df-d7ae62bfe8e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321929596", + "DeviceId": "74b46306-b4c9-44dd-812b-70f1ef4f4bbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_203909446", + "DeviceId": "3ca2b07b-70a3-4837-a7aa-a972356d517e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7684d88f-2f97-4d2c-b866-353b5e8cb264", + "TenantName": "Tenant-7684d88f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985841024", + "DeviceId": "c21ccc4b-0f50-4db5-9d0b-d2d62ae9592e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_406235927", + "DeviceId": "a1a5c460-1d3d-4ac8-aac1-6fee6ff4010b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665053694", + "DeviceId": "f2c4af53-dfb7-4b83-b62b-bfc73dcb1b8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838937734", + "DeviceId": "ec5a847b-2548-4fb7-a3c6-d941013623cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110565490", + "DeviceId": "ebee0a12-a95d-4a03-abeb-866fe3ba81ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_251867398", + "DeviceId": "8ed381cc-03c9-43ad-9fb8-b41c56bedfbb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0c828b79-386c-4a7b-82fd-61b72c14b388", + "TenantName": "Tenant-0c828b79" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141530139", + "DeviceId": "affa7c60-d291-4555-83bb-39c42e7b155c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_335862761", + "DeviceId": "1c4514db-3151-4ad8-9f3b-bf3e9b1fd767", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827304820", + "DeviceId": "6382067d-902f-454f-bb6b-faf045a26ce8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512509399", + "DeviceId": "dad0d012-8391-415a-aa60-1a55676ef1ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956071165", + "DeviceId": "88e007e6-61ca-490a-b33b-37c8ba81711e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_549279263", + "DeviceId": "b520b853-9d4f-47cb-b653-43927fb423e4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80070caf-3264-4136-a7e5-651840ff1dee", + "TenantName": "Tenant-80070caf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926957749", + "DeviceId": "fc094dec-689e-41b0-9bec-6eca94912b60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262222893", + "DeviceId": "8cf1a679-fed8-422f-a016-345ae9819fd5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159734864", + "DeviceId": "7bcc083d-fac8-4362-8fca-82fdc5e51a01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_194874103", + "DeviceId": "6e51a88f-4c52-45f0-a333-50e4e74226a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320446124", + "DeviceId": "2eba724d-8f1b-410a-a59d-2c4e122075ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_562566274", + "DeviceId": "f9c1a7d7-21c8-4767-8c78-1b05ca44b35f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "29c900b0-7550-4dd1-8b63-fe81ac10de9a", + "TenantName": "Tenant-29c900b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608934835", + "DeviceId": "55008fdf-5e61-4872-a7b3-53a7d46f7b73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979615497", + "DeviceId": "58b8e6ea-0101-4764-9b42-1e653e7eba71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790048279", + "DeviceId": "e24e80c2-50db-4390-9193-75d87d8f89d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505245875", + "DeviceId": "0a75bb0a-0663-43c2-9170-561829ce94d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_579810799", + "DeviceId": "7d088fe6-5027-4486-8a66-be4f39b0072d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_473648053", + "DeviceId": "72362452-e9a7-4434-8758-08d5f2a41909", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "29e850f9-bd47-4f69-8f7e-b260ce8194a4", + "TenantName": "Tenant-29e850f9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262886019", + "DeviceId": "4997019d-89ab-4b5d-bd69-9ba222c8166c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933253402", + "DeviceId": "1c238c7f-f81f-4670-974b-09b85479c053", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644017199", + "DeviceId": "315c5bd7-043c-4123-ba34-549a0c3ffd45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_912794856", + "DeviceId": "ff2647ec-0738-439d-9c40-17bec425f445", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512756911", + "DeviceId": "423a8868-e225-490d-b332-68693014db9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_523453276", + "DeviceId": "2a895b4b-a072-4310-85c3-fa3a44792ae9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "192c74cd-d6bf-49fb-a2e5-ca59434fd60b", + "TenantName": "Tenant-192c74cd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572934900", + "DeviceId": "0c1e2241-9d7d-4eeb-84c6-a055d4dbd47f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275919688", + "DeviceId": "13f6af74-1558-4d1a-ab1d-588eea0c1be1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951014229", + "DeviceId": "8f5974d2-eba3-4fbe-8597-b8a611b281af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255377737", + "DeviceId": "8adf70a5-3b70-49a4-ae90-b16565442c38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542977800", + "DeviceId": "6116c573-26c0-48a5-8db9-173011f4cfe1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_765122258", + "DeviceId": "49f6ec89-1f2e-409e-be97-4b542a0f09a0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1aa5f885-f46b-4829-ba5f-3d71b2df8da9", + "TenantName": "Tenant-1aa5f885" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585053671", + "DeviceId": "96e2ed1a-1ffe-43bf-861f-630f99f7ed40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_178499464", + "DeviceId": "0164a5fa-a082-403c-8060-b8d74522c70a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316913668", + "DeviceId": "2f7bc235-6432-41d7-a9fd-97e546593e40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697937003", + "DeviceId": "083bf4cf-f087-4903-beeb-4e5b7240537d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225969176", + "DeviceId": "6c84b072-6813-4544-9417-8d7e01fb206c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_225302409", + "DeviceId": "2671d191-6b22-45bd-bce1-e0904461c099", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed846301-8d9f-44a8-91b1-709be9290816", + "TenantName": "Tenant-ed846301" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468801816", + "DeviceId": "6a01c784-c5e3-4b38-b8cf-132cc3149844", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309482559", + "DeviceId": "fdbd16b0-8ec9-41ad-a65f-d60ac5068083", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701309598", + "DeviceId": "d9cdc280-ff38-40e2-b11b-d049a6dd74ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714806931", + "DeviceId": "acd661c0-33a7-43f2-965b-45c6459315bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_746772079", + "DeviceId": "0dbe04f8-c2f0-44d0-8169-e9ba74dfceb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_284269805", + "DeviceId": "75e75456-78e5-4e4c-a83b-b7c201747bbc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9d6c78d6-f903-4063-ad52-c00d9a6b4a15", + "TenantName": "Tenant-9d6c78d6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441102697", + "DeviceId": "eb43c97a-e1af-454a-9dd1-73349d19b603", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439876657", + "DeviceId": "a6a9adb5-caab-4efc-93e1-da3e199c434c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633413641", + "DeviceId": "7f4e4bdf-8149-49df-8a90-be60318e1b99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809859320", + "DeviceId": "6d684b78-b70a-4b01-9ebc-ba3e4ea17b03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_690691360", + "DeviceId": "ae5bcef0-aa6d-4a66-ae19-d5ae7e7f2f99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_918527641", + "DeviceId": "0579f897-40ef-4e60-89f0-4678251b3049", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "815de04b-9553-476d-89a4-ca4940c09e7c", + "TenantName": "Tenant-815de04b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_243492828", + "DeviceId": "c9ea1128-1a51-4143-9523-335a4bd515a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547565297", + "DeviceId": "34f26280-9d3e-4ac9-9bf4-2b4aa29eb5a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_361337740", + "DeviceId": "3cdc4a3c-93c3-4045-a24a-de575e28a9b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_967109234", + "DeviceId": "a02460db-2c97-4c26-8e7d-cf918bdfd331", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798808582", + "DeviceId": "b71f84d7-4bce-476f-813c-757e2868cc08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_597242981", + "DeviceId": "0bae70ab-e7bf-49fa-bbff-54e529b160d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ab416fe-15e7-432e-b6db-1b019f4c40c4", + "TenantName": "Tenant-2ab416fe" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_871804402", + "DeviceId": "e4c0050b-1c1f-49b1-badb-fd692942f530", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876486492", + "DeviceId": "759d6106-7b5b-4ca6-9969-6b5b17d2e842", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_737058622", + "DeviceId": "1220118d-3207-420e-9bdd-ed1ca3cc37f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806411670", + "DeviceId": "881a3dd2-6342-4547-ade2-2623dd31c9f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688239529", + "DeviceId": "58f0a83b-c86b-469e-bc4d-9afe4bae7b71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_632176333", + "DeviceId": "c5675b6b-1aad-4038-8c0d-7c5e631fb17b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1b571c6f-fa82-4888-ba6f-2e9b1f909f80", + "TenantName": "Tenant-1b571c6f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736678090", + "DeviceId": "e61dc6aa-43c2-42ee-9bfb-3552e44b2b3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_749597568", + "DeviceId": "5df1123b-62b1-4745-87c7-001bf1f09a84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_898875146", + "DeviceId": "ad94008a-1e14-496e-be3b-ba9cea32e202", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_949787649", + "DeviceId": "f99d7db1-844d-485c-a2f2-8073c0b1771c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935525373", + "DeviceId": "9dac5bb9-3f37-4747-a6f9-5c4f274cd693", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_555864964", + "DeviceId": "318e2979-dc00-464a-a05c-d588a5298f17", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "745daf21-2db3-49ff-8028-918b41840e4e", + "TenantName": "Tenant-745daf21" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_473016641", + "DeviceId": "98430e80-0010-46c4-9ef9-c660cbb9dacf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845991958", + "DeviceId": "59131c64-f16d-4b08-a641-fd5614488146", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187770521", + "DeviceId": "c02027c9-dd20-4bf0-a7d5-b5c1993d78b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256759653", + "DeviceId": "43b680c6-6644-45d6-b859-acbda63105be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_179311935", + "DeviceId": "d95a4fc0-ce08-44a4-868b-3f43c2077b83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_201332126", + "DeviceId": "a93997f5-4fbc-4755-8b95-171912157423", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "20caf704-f352-487c-b5f8-48eb103e317f", + "TenantName": "Tenant-20caf704" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241285645", + "DeviceId": "448e0e32-7cb0-483a-937d-90c06af85e2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109996777", + "DeviceId": "4b412cd7-9923-4357-adfe-af502e91852c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568232368", + "DeviceId": "91770e8c-423f-4da7-8c6d-c65c5c4aadc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508143188", + "DeviceId": "f103eec7-7bdf-48e6-bcd8-8ed9c1cc9c66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953184807", + "DeviceId": "f3b7ac5b-5417-4474-a1fe-75a728424d48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_256232461", + "DeviceId": "e5052b00-1c78-43de-bba3-2b47b282905c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "89150dae-5bfd-4682-8292-d3c37dfdce7c", + "TenantName": "Tenant-89150dae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626773749", + "DeviceId": "b030cd04-3ad5-408d-b16f-aa464116e0fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312530974", + "DeviceId": "ddc02180-0497-4013-a187-cd06c91f2734", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_456325864", + "DeviceId": "3ba62a30-8e90-4ca3-b90d-b250a6ce1eff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386076695", + "DeviceId": "cd4f2774-d161-4992-85c6-25962e44ee81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306294883", + "DeviceId": "bb2564ab-0b16-4ad3-b996-32ad1c2003ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_342309748", + "DeviceId": "aff2324e-0d7e-492e-9163-c8103f78d8f9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b1d97471-ae3b-4a2a-9dc7-cfbe45f879c0", + "TenantName": "Tenant-b1d97471" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228930353", + "DeviceId": "10b134bb-3836-4449-922d-18eb1e78a2b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_868178013", + "DeviceId": "7892f239-8824-4589-9026-2c7f19c6068a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633957890", + "DeviceId": "81c10418-9687-492c-945e-9a7f88e19cf0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810936035", + "DeviceId": "debc6415-bb04-4b3d-a273-d6bb370af6b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954867197", + "DeviceId": "1159225e-b793-47ad-a2f6-33d0ebbc4e06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_906303077", + "DeviceId": "cbc85319-5dc9-4aa9-9314-8f4a743b8e60", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a6b995a8-1e6d-4d18-bfa2-b46187e10276", + "TenantName": "Tenant-a6b995a8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954044632", + "DeviceId": "d54e4c8e-525d-47c3-81ab-ea0afc9f3244", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757358047", + "DeviceId": "716d6336-b974-49de-9dd9-99a571012d6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640928018", + "DeviceId": "ba553554-76b0-43af-b0a1-db5b298d9576", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642398022", + "DeviceId": "6e989120-a59d-4724-941a-796b12a10915", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930384240", + "DeviceId": "33d0a08c-4568-43f7-9dd0-8fa521f144a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_350807228", + "DeviceId": "5e69ad69-e575-4998-a761-aea627fc9190", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "78ee12b6-baec-4d22-bdd1-56592680ab51", + "TenantName": "Tenant-78ee12b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539247566", + "DeviceId": "3f8c6426-e4d2-4990-a61e-e366282e31e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718595881", + "DeviceId": "f27b3f8f-7972-4535-983d-eecda7c6763b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668565663", + "DeviceId": "d291abbc-9f2e-475e-8aec-11887e7ab901", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_179686591", + "DeviceId": "a5a1de97-a068-43cf-8d5c-f46e90cec247", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574717552", + "DeviceId": "4382070b-4521-463c-b31f-de716fbb7677", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_569642395", + "DeviceId": "a72ee822-c302-4910-b7b0-f7de1d67ed59", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8c6da2ae-e3d7-4bf6-b58e-43a294719074", + "TenantName": "Tenant-8c6da2ae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248954434", + "DeviceId": "df9c6ea4-ae13-4762-b6dd-6d3a7f3724f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_209975731", + "DeviceId": "74659332-7e74-4ce4-b445-97e2ec4adb03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928711979", + "DeviceId": "dc501502-244c-4de4-b95b-221a5173f3ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382742027", + "DeviceId": "b227a282-fe90-4162-ae8a-637fc8fca5c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_298800527", + "DeviceId": "5018dd39-058e-4cb4-b9fd-3c9e144f3410", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_885701613", + "DeviceId": "acdea86b-93bf-4e4b-955a-c40f3c83a67f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e786a9b0-44b5-47d2-a6d2-aa69defc5257", + "TenantName": "Tenant-e786a9b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_324932956", + "DeviceId": "b05b7301-d467-46c0-9e26-588d583bfd11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969314872", + "DeviceId": "ef5e9ef2-a49e-4270-abea-ed63938eb2e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736522826", + "DeviceId": "43342186-ed3a-4bf6-b53f-93143c60ab99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_461457417", + "DeviceId": "f2afcc02-c896-44ed-81d8-6cd3a23d92fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208430453", + "DeviceId": "afc16a2c-728f-490d-b2c1-4e15d19c3bef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_554253801", + "DeviceId": "eb49e6db-a6c7-4d7f-8322-ae98facc479d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3e77d674-ee4b-4907-9b95-562fffdf078c", + "TenantName": "Tenant-3e77d674" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_396034420", + "DeviceId": "345c8451-65ff-4498-bdf1-87cfa364b668", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_172578101", + "DeviceId": "d0b07c00-0418-4111-810c-0cfced2fb531", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_910547345", + "DeviceId": "12bf7dc2-0df2-4650-8b13-156d22f1169a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614092839", + "DeviceId": "c59093a8-79ba-4893-9413-5c0207d7a3d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681136441", + "DeviceId": "fa873e97-b776-4715-bb14-07258d023101", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_458509180", + "DeviceId": "c2f7cc83-9aa3-4a69-9d8f-5a6fe98b20e7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "16830bd9-d5b7-47ed-b391-583765f4e577", + "TenantName": "Tenant-16830bd9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643940686", + "DeviceId": "77d5c022-c1ec-4b1a-947d-3a9ac00d5e2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568161908", + "DeviceId": "5136717e-6872-4a66-a001-70515d7111df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401322332", + "DeviceId": "8eb3942e-ba8e-4694-8f05-db7a78382ab1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137557353", + "DeviceId": "37bda8c8-5008-418a-be14-9741e7b84d74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_387693835", + "DeviceId": "f4aa9e43-349d-49b9-86d0-2c5066151bfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_653768361", + "DeviceId": "68545286-ed14-4d96-82d7-05c7bf165503", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aae7f57c-f59c-4bbd-9723-83e7f22caf52", + "TenantName": "Tenant-aae7f57c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_452071626", + "DeviceId": "27c0b9a8-92e5-44b4-bf7d-db147b85458d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_923424047", + "DeviceId": "a5b56973-75d5-4745-acef-d69805e3e779", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468696807", + "DeviceId": "a8860fe2-e762-4629-b581-2126cd43d4ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181250761", + "DeviceId": "651da465-b03c-4666-a08f-a896c3855351", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299839702", + "DeviceId": "3e0a422d-59bf-41c0-ac9e-f815a87cbd5e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_961290234", + "DeviceId": "c2e6dee1-7fbc-4039-9ecb-8344757cd461", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c7632c15-c107-41fa-b5e4-9f6e4be0f339", + "TenantName": "Tenant-c7632c15" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548213097", + "DeviceId": "88da67d9-c082-48bd-a8f2-55c9ca3beea2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_967249085", + "DeviceId": "4a60869e-a948-48a1-b91b-71b8eb7fa498", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139661114", + "DeviceId": "d9951790-47e6-4cb0-a9a9-a27546a84fdf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121659884", + "DeviceId": "587b181d-f47a-490d-b674-da91d0a31584", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857777346", + "DeviceId": "52dfc20f-5a58-46d5-a8c1-54677553e317", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_101896387", + "DeviceId": "ca69710f-75a7-48a3-88b6-8dd9dd621cfa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4627affe-5ada-4914-96b0-8c521d34737f", + "TenantName": "Tenant-4627affe" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_907827439", + "DeviceId": "35154ab0-ac08-4d54-9193-f20c763fcfca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812795988", + "DeviceId": "012e23d6-cc53-4b71-96c6-5ed960a94a7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490446815", + "DeviceId": "108055ad-0718-4006-9ba8-f68e3ef00b7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649007424", + "DeviceId": "f96c7c3d-2aaa-4bce-9e01-f0a55099b271", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312774976", + "DeviceId": "139b9f5f-a19d-4325-9447-25a7ebaebdfc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_878150987", + "DeviceId": "74b51b3c-4b28-4d08-8d31-03f669fc1255", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8e3926d9-8ac6-4cf4-9f12-336dee0836c9", + "TenantName": "Tenant-8e3926d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142569150", + "DeviceId": "91589b14-bfd8-489d-9ec5-49946f683bb2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_150730736", + "DeviceId": "7925c6cf-9311-4d39-b473-20137c6f834e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602529307", + "DeviceId": "fd7c09bf-9ec8-4132-8a19-55f71a04b09f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531238166", + "DeviceId": "68045146-88a5-41fc-9c97-ca41718fbdf9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945127797", + "DeviceId": "d9f3c7e8-d29d-484c-a8df-de216435d057", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_278447368", + "DeviceId": "3cd9a981-d99a-4c61-9bc7-ce77bb9fca04", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "84bebb0d-1fc1-4e15-9f50-7b2c1c0aca61", + "TenantName": "Tenant-84bebb0d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_823185456", + "DeviceId": "0f62de2d-f2bd-45e3-af09-ce03bbe3b220", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_898879500", + "DeviceId": "62f320a9-65e4-4d49-9622-bd4a309e84bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_469623515", + "DeviceId": "4a4e3aa5-2e96-4d02-9c30-224649781c8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442500634", + "DeviceId": "76dba7a4-12fe-400e-8ada-086e5231432b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866224565", + "DeviceId": "47271b9d-2db6-467e-94de-91330dac77a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_306871134", + "DeviceId": "40d21584-7ae4-483b-86b2-2ccd5e975a88", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "076debef-60b5-47e8-a7fb-24ad01315e98", + "TenantName": "Tenant-076debef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267443796", + "DeviceId": "ced3e780-b024-463e-afc6-92b1c92b41e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_735200301", + "DeviceId": "8e1cb37d-6845-4eef-b02e-553262d59072", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215761572", + "DeviceId": "93283649-e2bf-4843-99ed-a58a268dff04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274269753", + "DeviceId": "d053ff5c-c5ae-4833-af99-ad045f970124", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848524383", + "DeviceId": "9e27db8e-9806-4b53-8e51-699009918acc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_142370017", + "DeviceId": "c2cfff8f-0b0b-4e8a-b6bc-7563770cc77c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7252f8c1-ce8b-4e20-b722-dbe9b99da2fc", + "TenantName": "Tenant-7252f8c1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_749984872", + "DeviceId": "4eb5910c-61d2-4959-b04e-c78008029a8e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_955420008", + "DeviceId": "e867b54b-2f13-4be0-a3c8-afdb224880bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317247544", + "DeviceId": "8fe1fc3f-a684-4d97-b6bf-5ae3aa12a9c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744145234", + "DeviceId": "14cf0c9a-e4e8-4c93-9420-bc16fc78ca74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907432045", + "DeviceId": "16e5a211-a603-4a92-a59f-98fc00085142", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_814067268", + "DeviceId": "2f484cce-95b2-4dca-8530-53282fb34173", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "88ba883a-582f-4bea-a2a0-349f26de55b3", + "TenantName": "Tenant-88ba883a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245294961", + "DeviceId": "fa07b375-aa23-4314-82ca-0a668e07fbce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601962164", + "DeviceId": "2d0345bf-269a-4103-b0d1-160a68f554e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824351311", + "DeviceId": "d4bb3ba1-9a63-4cf2-9931-8a6a39685a19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235984745", + "DeviceId": "7324f123-40a9-4b73-bfcc-1e847b5c97ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512413867", + "DeviceId": "5ef56480-4796-485a-ab5f-0d7175ebd4fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_262086347", + "DeviceId": "250ddc0d-963f-443a-a3b3-9d8ae4bd4140", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d8a8e2b8-8ef1-4c9b-ad94-eba52f649d64", + "TenantName": "Tenant-d8a8e2b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278540248", + "DeviceId": "5f9a66af-64e6-41c2-afae-1a1cccd5ee0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587058005", + "DeviceId": "f340b1de-aeb9-415a-927d-811b324402a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964921141", + "DeviceId": "ebac4100-a751-47bf-944f-4688d48fb945", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_503348896", + "DeviceId": "2899008e-541e-4baf-af78-f7d35effe13c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953849701", + "DeviceId": "9da8dd30-c2ac-4a55-ab80-e58b0e14c5af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_936396425", + "DeviceId": "93fd2220-7f62-46e2-a3f8-b90f7f9f3bc1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6a1c1b02-654a-454c-8739-7d802868e7bd", + "TenantName": "Tenant-6a1c1b02" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_427262177", + "DeviceId": "1e91f34a-49f4-4a2c-874f-957bc4586390", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973711821", + "DeviceId": "e7a4cb03-b0f3-4ffc-a75c-b47115349dcf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_645803128", + "DeviceId": "ffda1c57-57d1-4b2d-b510-c1b98cef89f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875439939", + "DeviceId": "e3946085-f0af-456e-9e54-f8850f8a8ed9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554478718", + "DeviceId": "ce4ecefe-3019-4f42-b6ce-51002494b353", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_348206847", + "DeviceId": "89706544-7359-4e7b-8a27-0373e2ea0468", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bb1388b7-bb4d-4316-8992-4a3f22a73e5e", + "TenantName": "Tenant-bb1388b7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450412274", + "DeviceId": "8a32bcc7-06df-4cd7-a3f1-a0d3e5597124", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789210611", + "DeviceId": "f261ea89-52b2-4c5b-bd77-8234c8a6d32d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938067405", + "DeviceId": "c74674c5-d994-47ef-b97d-ff1e30f631e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964850106", + "DeviceId": "212a59e5-b689-4330-b375-3119f31eabe7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_992870376", + "DeviceId": "b7cdf39a-993e-408e-b64e-b8c0ea8cf761", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_116765527", + "DeviceId": "b2f12383-3f4a-4dde-bb0e-ea06822face3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e683216c-cb15-4d1c-96a2-204ec93065af", + "TenantName": "Tenant-e683216c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_105654038", + "DeviceId": "2dd03e29-61e3-4b1a-9f01-64c569eb4abf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546910293", + "DeviceId": "cbe52def-45c7-4687-9c03-37246b302993", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366759094", + "DeviceId": "7178ee9b-80ce-4b98-bdfc-ac7eff5e39eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875681276", + "DeviceId": "67091ad9-5941-4af8-ae3f-6f8ff2813e70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_134270786", + "DeviceId": "5c808063-d1f4-4e7a-a69b-57a71321591d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_324887949", + "DeviceId": "a5218e5b-2b47-4da3-975e-0fe54650ea4a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "beb549ae-c52a-4c91-8d52-101eddc37f2f", + "TenantName": "Tenant-beb549ae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539041117", + "DeviceId": "7435837f-daf9-4db5-a233-63ff1eccbb20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_427761069", + "DeviceId": "c69eb320-4479-47ad-b035-8b35ea1518b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_211286817", + "DeviceId": "cc06a137-be0c-42e6-8e33-60bf26804c8e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_269379298", + "DeviceId": "18fd15c1-d17c-47d5-aae2-945ff56023b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_917576634", + "DeviceId": "e4f4cf8c-f72a-4a35-bd58-83a78488184b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_988275432", + "DeviceId": "3288df38-2f8d-4067-90c7-944f788c02c0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "22382783-9ad5-4281-ae86-355d323dfb10", + "TenantName": "Tenant-22382783" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292156957", + "DeviceId": "0ee7bd4e-5e13-4bab-bd64-5c5cf5359130", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_519005411", + "DeviceId": "07ef7586-596c-433f-9d01-db96c0889af2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957254191", + "DeviceId": "12500526-9246-4e84-b6b8-04c5ea56cfae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_548112651", + "DeviceId": "49e72635-a11d-4a25-8387-5e7a9bc9e083", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_479404748", + "DeviceId": "d6ada43c-a28f-4a83-a24e-d6236711e217", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_935571331", + "DeviceId": "04293904-84da-4568-b2b9-08e1f4884215", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0a6d31e5-38d0-42e7-bbd0-d1ece5873191", + "TenantName": "Tenant-0a6d31e5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488404591", + "DeviceId": "2f5f08d2-cfd2-4f9b-a6ba-868527b9d217", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_188249276", + "DeviceId": "af79593e-4ebe-481f-b8fa-09e13d290149", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529014296", + "DeviceId": "ff6e7db1-4b99-41bf-8c0c-7599c50963af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564081911", + "DeviceId": "9551f1df-94c8-49b6-8019-9970a4e6bc1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688121291", + "DeviceId": "911dd826-da3e-4116-ba59-fcf60ee3d51f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_254561735", + "DeviceId": "df355dd5-372d-4a06-b6dc-922ee2628caa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a780d32-e54e-498b-845b-d3cf07459c39", + "TenantName": "Tenant-2a780d32" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398449722", + "DeviceId": "9bbfae3d-d323-4bfe-b187-0dfb9eaf69f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_852760722", + "DeviceId": "155f33db-fafe-4b22-b8ca-fa13eca9b1d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843848528", + "DeviceId": "e2f59aae-b0b6-4fe3-8afc-f137a3e45a16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815722140", + "DeviceId": "f7d21a14-1707-400c-af7c-d8ebcb6ce4cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196260423", + "DeviceId": "afe8187d-622a-437b-a13e-616465c6953c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_537959799", + "DeviceId": "2f34397c-8618-4ae4-aa4c-77e5cd250280", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3fc8f4c9-c9de-4359-aec6-14e411b04824", + "TenantName": "Tenant-3fc8f4c9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_191094003", + "DeviceId": "07003bf4-3987-4e97-ab6c-0aa41c2d5c18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980809523", + "DeviceId": "b2f9ce6d-c24e-4d8b-8bf3-2da94cf72cee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415762585", + "DeviceId": "e6ef3243-4432-4a09-b9ef-6854d959c4c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_551513548", + "DeviceId": "22177f9e-bc25-47c7-891e-ab1082f26c07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865194866", + "DeviceId": "d6dbc219-56dc-4fb7-b9f0-0809678514db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_532042426", + "DeviceId": "665d20cd-5a86-46e5-b048-593fa454f585", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "723e939b-5b7a-40d3-8768-fc2d9cbad5dc", + "TenantName": "Tenant-723e939b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184287225", + "DeviceId": "0a0bd1ac-7785-4207-84fc-a6b4fc082538", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288945008", + "DeviceId": "d0334fff-4e6f-4048-8af3-bdec3e6bd3e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563224552", + "DeviceId": "c6153329-cda3-4f1f-8ff0-70173bc0ec04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703842763", + "DeviceId": "00364cf9-918a-448d-bbe5-7169db631d3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462639537", + "DeviceId": "8959db1a-b72b-4628-8ad6-1dfe9bb0b7ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_863095521", + "DeviceId": "47dcaf1b-8ae6-47e0-8419-07fefd4203b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6da27962-dd32-4c30-9052-83b786eaea11", + "TenantName": "Tenant-6da27962" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982473232", + "DeviceId": "a65daed0-63ff-473c-95f5-a7bdbe761d91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187655095", + "DeviceId": "2579db90-d539-4dde-9e4b-89e6c5d22984", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753510754", + "DeviceId": "27f1f5bf-0d77-4b31-bd94-f0ba34e79204", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677209521", + "DeviceId": "7bc74af2-01f6-48d0-8607-84782c634a26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997783827", + "DeviceId": "bc199fd2-7e20-4f06-bf8f-61ba2f904e06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_811516073", + "DeviceId": "80ea0b52-d71e-4791-a559-eb8da278769a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "99c5df27-0b20-4956-9143-f4e662dc8196", + "TenantName": "Tenant-99c5df27" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241267604", + "DeviceId": "abc8b625-9d3b-4fda-9033-fa4e1058a01f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742529821", + "DeviceId": "f119c558-ad40-4b9f-ad9c-c159b3331474", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_418691653", + "DeviceId": "6a190001-5726-4ea1-8d90-d337960a3490", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386289355", + "DeviceId": "ea337a46-74ef-46c6-85e8-389c6c89a72f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_243057687", + "DeviceId": "e384f804-d0bb-469e-9d54-455bd312c473", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_809682115", + "DeviceId": "f7a2ec7e-8e13-4824-a875-46b6b1bd7906", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a158ada1-ff60-47dc-a5c9-7f8f8f97bc00", + "TenantName": "Tenant-a158ada1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621781113", + "DeviceId": "bd3b3746-453c-4c9b-abd0-0a756512818c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808954293", + "DeviceId": "a4c72d9f-fade-4dcb-baac-2ea7bef0e7f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987471155", + "DeviceId": "50c26cfa-9808-4283-8fcb-97ff145c3589", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383515524", + "DeviceId": "b3b98ee0-a97e-448e-80e9-b77a49557b59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594165406", + "DeviceId": "8e48d0ab-0929-4d57-9b0b-d4e5d48af657", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_934278192", + "DeviceId": "ac219335-0797-415d-9270-2325a2099821", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8fa8580b-5c27-457b-801c-67e9fdde956d", + "TenantName": "Tenant-8fa8580b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997571821", + "DeviceId": "fbf6fe65-f43a-42ae-9090-f730515e0332", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_754281924", + "DeviceId": "7423dee9-583c-4d25-b2ae-52d5f10dcd89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_615050195", + "DeviceId": "ce2f9362-535c-4a37-94b0-23c156d4a372", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_967214964", + "DeviceId": "4878d36d-eef4-4d0d-ae7d-537a0798c916", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_775893670", + "DeviceId": "b5883d25-c4f8-4f45-a502-1fcb79cb2411", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_894590219", + "DeviceId": "db874d2b-d79a-43f4-a59d-2c047088a739", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ddae8d62-c952-4c49-8271-7d009f0bb266", + "TenantName": "Tenant-ddae8d62" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993187474", + "DeviceId": "84781b94-ff44-43fa-818c-4623580ece99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668341065", + "DeviceId": "85b58f23-e788-4f37-bcdb-5d77fba128ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704392014", + "DeviceId": "7c1c0d09-692d-4572-925d-aa7b9cd99451", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281405466", + "DeviceId": "75b40754-bd2e-4e8f-8193-35e8fe6ba710", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_460328969", + "DeviceId": "d29763e0-1cd8-4cd9-9ab1-f31159e67082", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_853192302", + "DeviceId": "d29cfe9a-8fcc-4f7f-b970-6394a0e43858", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "51ba9950-07f8-4add-9742-b5606785b337", + "TenantName": "Tenant-51ba9950" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249775063", + "DeviceId": "f44fbaa4-8591-4b40-9682-873774198067", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757000458", + "DeviceId": "2c276253-ede2-42e0-8515-c0ad331ccfd3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151710328", + "DeviceId": "e190057f-bbf0-428c-887f-903bb09d5621", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232952581", + "DeviceId": "7348dba1-6884-4429-a472-38af2e8357fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972498412", + "DeviceId": "780bee79-94de-4f13-ac5f-8cb538bff3dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_184606992", + "DeviceId": "36101bf2-a8d2-4b06-be69-74bdb7f33753", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "102245bc-17f8-4878-8612-5ba36c559975", + "TenantName": "Tenant-102245bc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_440320996", + "DeviceId": "242151b0-02a9-456c-87db-119a9505a806", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127798728", + "DeviceId": "38ac66e0-9b2b-410e-8968-637fa3f9bfc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881370395", + "DeviceId": "b8f7893e-15f3-4b96-bbc7-1f31882c16ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_538036289", + "DeviceId": "eb616749-72f5-4718-bccd-1a39480e3716", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948723838", + "DeviceId": "71589049-ae49-409c-a82e-777cc1783347", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_952370312", + "DeviceId": "c258c609-88c1-432b-9c6d-940fa7de104b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "068d62bc-b39b-42bc-a787-d7e60e8a386f", + "TenantName": "Tenant-068d62bc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548730606", + "DeviceId": "09f3a1a5-4e38-4444-ace3-0df18025e35e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334002412", + "DeviceId": "1c23c485-9c10-4cc3-974b-f53d4f47b01e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184304465", + "DeviceId": "602ac30d-f3aa-4313-85b0-15cfe761c551", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_197443048", + "DeviceId": "ddaa4ac2-9f90-4011-ac92-4e6483dea88f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_507617340", + "DeviceId": "d9d15745-5625-4587-85fe-6582a9cc4261", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_705458342", + "DeviceId": "aa03487b-81e9-484b-be35-2ad35e437ce0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a3f440f-4af4-4d7d-9ccf-b3f49d9af6c9", + "TenantName": "Tenant-2a3f440f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325623332", + "DeviceId": "ba509bf2-ccdf-4738-bc6b-fff15c8613a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879738513", + "DeviceId": "f46da9b1-4e17-468f-9a9c-bad54241d298", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161389481", + "DeviceId": "7cb848cd-ccad-4a7c-855c-8b9989e3c3e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146933491", + "DeviceId": "51b83526-24e2-4c72-9527-678d94be1ea5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_587362999", + "DeviceId": "47e837d6-8475-46b7-8495-a5a19f4e1635", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_525735687", + "DeviceId": "b783b313-697b-4557-9155-9deec4636a9d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed8871e4-75d6-4cb1-b3e7-9ea46f13e9a9", + "TenantName": "Tenant-ed8871e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_118181854", + "DeviceId": "31e8e6f4-9e2f-4641-b95f-b24833db415b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_375866631", + "DeviceId": "02cdbcea-4ba4-4a27-b5cb-9a234301e2c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294712118", + "DeviceId": "92c8ec11-73ec-4e2b-8e56-f9225d2b8838", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452602556", + "DeviceId": "905cce45-dded-4cb1-8494-561899fb9870", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_371346669", + "DeviceId": "9ec10e98-dc58-41c9-9229-0e4c1c12c3fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_519422777", + "DeviceId": "7154b379-5d34-498f-8193-b98f19b89ab6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "92fe34ef-572b-4cfe-8f35-38818dbbbff1", + "TenantName": "Tenant-92fe34ef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141996756", + "DeviceId": "67998a82-35a8-4cb7-93ca-78fb0fe3f8e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_889461385", + "DeviceId": "85b630df-ffd5-4fa2-9a44-de684ab41693", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_395425159", + "DeviceId": "c787edf5-ef98-4249-9452-3fba6ff6b27c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_732561890", + "DeviceId": "f7729480-56c0-40ee-90ef-b5c84c4e8ee7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988936873", + "DeviceId": "527d635c-8c48-4706-bfd6-cba26a2ed699", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_426894800", + "DeviceId": "54c945e7-c096-4502-9268-84744cbfc92a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "45d4dc03-8eeb-44d6-9486-9910a99620d5", + "TenantName": "Tenant-45d4dc03" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621380852", + "DeviceId": "06eb907e-8ae7-4f06-b8dc-9fd0535b9593", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442677382", + "DeviceId": "ac8436f8-4913-4538-abe8-bc59952214d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504102343", + "DeviceId": "b31b617e-9e63-4fdb-90f3-738fa8abc151", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556750924", + "DeviceId": "6faadffc-fb01-4aeb-80bf-d35b72f43d3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862040143", + "DeviceId": "22ee3309-f370-4d08-b222-9f6d7d376102", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_513083435", + "DeviceId": "837db794-103c-4e5c-bdaa-b56442b9caeb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2e81af56-d693-4c99-867c-29107d88ddd3", + "TenantName": "Tenant-2e81af56" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651803372", + "DeviceId": "b38fa31c-190a-42ec-8ba2-43355cc68697", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625560058", + "DeviceId": "dd5f1cad-8d6e-4c91-ac0f-3160532d4014", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348251897", + "DeviceId": "0e300a47-3570-4eec-9219-42f632b917ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564862267", + "DeviceId": "1b08638b-dcc5-44f0-b6ae-b4d839e2ff23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480624755", + "DeviceId": "fcb48207-effa-4d19-9dda-e882950bbdbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_155629657", + "DeviceId": "faf65ca7-9e58-4515-9d73-c00b4c826559", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ae1a378-29df-4581-8157-64c7a4159b45", + "TenantName": "Tenant-6ae1a378" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_907086790", + "DeviceId": "e941ae92-3e5a-4e27-a365-a2c262179c67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922819466", + "DeviceId": "8acb57ab-4bde-45df-bb08-d1c699f363a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262012301", + "DeviceId": "63b039f4-71a3-4de6-8c73-ab8d268ffe60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517530573", + "DeviceId": "7616ae1a-83ee-4b77-969b-71384c6129ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_780897647", + "DeviceId": "23caa330-f26f-43b0-9e4a-f4aab66236c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_475750218", + "DeviceId": "9d708252-5a88-46ba-b374-a256b736f7bb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7f14650e-ae24-4fbf-8a2b-aece5462c111", + "TenantName": "Tenant-7f14650e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423555545", + "DeviceId": "b97040f7-babb-4c45-a80b-02ab91f216dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682008874", + "DeviceId": "30ef23c4-8b3d-457e-b112-1d1cf3dcaec6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708701357", + "DeviceId": "d35a17ff-9445-4045-a50d-3e8714cf805a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_147317025", + "DeviceId": "b6aa2351-de50-4f73-bad9-7b2b01d76982", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_565403410", + "DeviceId": "ea36408e-12ec-4de8-a98b-1d55ca6b50b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_817932190", + "DeviceId": "8a933b28-7573-4161-b0b4-bb24f8218dd2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "28468a0f-87b4-4bcd-8bb7-e5e8e82fb92a", + "TenantName": "Tenant-28468a0f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772980663", + "DeviceId": "1fbf16ac-6963-4b19-b597-44b0d60b09be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949272172", + "DeviceId": "daf22fea-2208-41fd-be44-bff6224f947a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506528323", + "DeviceId": "3e212bac-8b37-4b39-9f07-7724bb522305", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_140507326", + "DeviceId": "079cc4c4-ca62-4172-80a8-ba2ebcd74800", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_543952822", + "DeviceId": "558b2c6f-ffdf-41bd-a408-1ab46672ce0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_296314896", + "DeviceId": "e3b1fbe5-b956-4423-8acb-24a78388ffdf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a4aedc00-bb81-451f-ab5d-8f0542ba4359", + "TenantName": "Tenant-a4aedc00" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732684260", + "DeviceId": "a4d10c79-cebd-4d83-9065-8554a4577ec3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643430609", + "DeviceId": "5c93c798-faca-430f-80d6-c3757d9febbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934216113", + "DeviceId": "49b62b1e-5a94-4404-b522-4b66ebf90629", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_265586883", + "DeviceId": "87f04422-49cc-49c2-aa6c-fd9957e27bf4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615554881", + "DeviceId": "eb91dba9-acfc-4c85-b943-9761b932de55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727457422", + "DeviceId": "49733e91-28c6-4d08-b3b2-5c6f3123be0d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96094ceb-c772-40ea-8d40-e81d3f16d6e1", + "TenantName": "Tenant-96094ceb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109226442", + "DeviceId": "98b20b62-8178-4a4d-a542-b6287284a2c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305795636", + "DeviceId": "1424c87d-4a2d-4254-a4cb-641a4b8b6b6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812916937", + "DeviceId": "dee70a94-765f-4cc5-8068-d0e44ce64355", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736930555", + "DeviceId": "f0c902e4-af4a-4d43-9540-88b93032cb73", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898019168", + "DeviceId": "8bf79699-dfb4-4d21-8a49-0d7fe4317fae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_507108434", + "DeviceId": "0ba0baa6-30f0-4d5a-bc73-ff8d6e5e4195", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c2cd45cb-77c6-49f1-9484-9dcdddbb48be", + "TenantName": "Tenant-c2cd45cb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_614536717", + "DeviceId": "8a98aad6-2015-4d54-b157-9293a68586a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351956035", + "DeviceId": "db16e5b4-1d72-4fc8-8759-32b60bc66f5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872708185", + "DeviceId": "3a817987-2716-41b2-8db8-f8fbcc445ea9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649640384", + "DeviceId": "3420e7f1-7bb3-4a04-bba3-0b3b11e054fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199669059", + "DeviceId": "278e31c7-4231-40f0-8d23-5be5e25769aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_172079606", + "DeviceId": "2468ec4d-bf62-4267-b11d-61af9807dff7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1cedab68-d808-4ada-b15a-45a315b33d99", + "TenantName": "Tenant-1cedab68" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_456251975", + "DeviceId": "f0b2edf2-69e6-4aea-bd70-b0648d701a65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_146203926", + "DeviceId": "e6888caf-255a-473d-82b1-261cfa26fab3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578045738", + "DeviceId": "2144d27c-a886-4e77-b3ba-1b1e44124dfb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157027641", + "DeviceId": "54319cd0-482d-4e01-9436-37ecda0175fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677128444", + "DeviceId": "f235d023-4a18-4773-98ca-5df341ea4f3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_657993062", + "DeviceId": "a3ffdbc3-6d84-4507-a0e0-6468a38080fb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97abf9bf-a160-4bb2-9682-1699a1541d5b", + "TenantName": "Tenant-97abf9bf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_480296917", + "DeviceId": "fc48a9a6-4f1b-4394-927a-25b2eb690093", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540570398", + "DeviceId": "1fae429b-8189-4f89-a490-379a06d56759", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123403268", + "DeviceId": "5cc22736-bb7e-4bfb-b7c2-1bbc1056aa7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358262639", + "DeviceId": "6e3a91f4-6cf5-4887-8bb5-ac762dfff870", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636433292", + "DeviceId": "44b22d2f-43b7-4546-9c33-35a727974c9d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_717508687", + "DeviceId": "baa7a00f-965e-4100-aa5e-6414e91ccc9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7f1a7bb9-e18f-432a-92c7-15fc73b11e28", + "TenantName": "Tenant-7f1a7bb9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352658488", + "DeviceId": "e704b51c-d254-4713-8ada-b5d565109529", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819578768", + "DeviceId": "578418c7-acc4-4cd1-a59d-6a16cf6eb7b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992911806", + "DeviceId": "ed8bae1e-df46-46c9-8e90-f440831b1a28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645818951", + "DeviceId": "ff2e2812-8a5d-4f39-834b-0dd045556dfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701710719", + "DeviceId": "42875ed2-b2e2-43c4-a84a-8a63915e2803", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_549180068", + "DeviceId": "76722aa0-c09a-4dd6-995a-a9bf82264a3f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6cb6ef7e-c5f2-4543-9f2c-88dfe54dbd85", + "TenantName": "Tenant-6cb6ef7e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346104606", + "DeviceId": "edeb3387-a6ef-4e56-a1ab-744309a030ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963917249", + "DeviceId": "c4a1d3c7-17f8-4d6d-b23d-6e03368c385a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450402365", + "DeviceId": "3c8084ea-6065-46c7-bbf6-2c37410987b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_385204481", + "DeviceId": "2851565c-3475-411f-8880-48e64980d55a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_839024113", + "DeviceId": "f0c72888-412a-471c-9c54-27c5a4f63ef4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_520470090", + "DeviceId": "81044cdd-6e52-4d78-a669-a03b8b9d7e23", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d59185d4-88a1-439d-b262-d355fb02641c", + "TenantName": "Tenant-d59185d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532690476", + "DeviceId": "3442354e-c8cf-4103-8eb3-ceac86140f07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612051754", + "DeviceId": "4398ec44-4bb8-4d5d-8ad5-c08ff11fe855", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_173317039", + "DeviceId": "15100d33-42f6-4ca3-9858-016784bdfc8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244994908", + "DeviceId": "de8e6c7a-540c-4981-a5b3-3a1dab1c2a4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546962426", + "DeviceId": "edec4020-717f-4720-b930-749e8df41652", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_653401812", + "DeviceId": "0e0fecd1-d735-4b77-a64f-115710afdea8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8a19cf24-12de-4d17-b9dc-79cdab2a06ee", + "TenantName": "Tenant-8a19cf24" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753981618", + "DeviceId": "35384457-bf51-4bc0-8802-25933bd2e8ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368110288", + "DeviceId": "54dadb55-7879-475e-a147-8f4cf796c0eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_603986794", + "DeviceId": "895842ed-05ee-4738-b1bf-ca8975a2dafb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_240047198", + "DeviceId": "9281ac3f-aaeb-4431-ba12-a279995ceed7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_413034956", + "DeviceId": "371cb3ad-4554-4258-b7ac-44a5fb7237ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_477305406", + "DeviceId": "50afadad-9b61-4e31-94ba-77ce5c3e43c6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6019ba9e-9bec-4e05-b4a5-56c99929c031", + "TenantName": "Tenant-6019ba9e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843155119", + "DeviceId": "78ffd0b5-d8b9-46bf-aef1-f51f4aecd4d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314713399", + "DeviceId": "3a75f6b8-8286-4039-9add-506fb22b178b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876858552", + "DeviceId": "1e665cb5-ac67-4a83-a77d-e01356f09f87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_315011974", + "DeviceId": "4fd95d1c-86af-4d00-a3d8-b1825ddbd196", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_764073056", + "DeviceId": "df812bd1-b612-4f22-a607-18d8f5f11384", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_362428305", + "DeviceId": "f7046912-d837-476b-8a30-89de3fa1e593", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "92f49a9a-a05d-4736-97f9-6b88d7df9eb9", + "TenantName": "Tenant-92f49a9a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575550973", + "DeviceId": "39b0b9c5-8e5c-4aef-b3e1-627a95db79ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273084750", + "DeviceId": "9f968f6b-921c-48f8-b242-ca4a72d99e6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332154762", + "DeviceId": "577b35d8-2328-4864-a088-d60436b64028", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763211939", + "DeviceId": "b7f2a945-f933-40be-9697-d18afdfc2a0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450494673", + "DeviceId": "25126b30-d13d-4bc4-ba94-5e0db82058d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_341256465", + "DeviceId": "838023f6-9224-47e7-9ae6-7fa0422d8094", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "700677a5-b97a-49d7-b43d-e1a5d1e77b7d", + "TenantName": "Tenant-700677a5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114022372", + "DeviceId": "668db7fa-9a82-446c-86ff-e3b41bc33962", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455400333", + "DeviceId": "970909d4-1a55-4fb7-98cb-ba7507f2d056", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158462248", + "DeviceId": "3851db94-d417-4e0d-a36a-4a1c6887ca07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103582093", + "DeviceId": "13a35569-9ad5-40d9-ad8e-ef671a5f5781", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709230161", + "DeviceId": "2c758aab-66c6-4c54-97cf-a65e49b73628", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_295715664", + "DeviceId": "5d4a250a-c5de-469d-9c0f-0d10f82970f7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0ae15e3-6c1f-4630-8a02-d2e5c7cef52f", + "TenantName": "Tenant-e0ae15e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142947513", + "DeviceId": "85d02011-79ce-48f1-8527-9c79f4fa2aa0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320071255", + "DeviceId": "cebc06ea-5a55-4717-a72f-d9394d57fd85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431510471", + "DeviceId": "0545224e-76bf-4ea5-a6f6-0495e889c0a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114599697", + "DeviceId": "6a7dd4a6-1910-49b0-ab12-3e72d9fee451", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540324045", + "DeviceId": "e24725f5-384e-4f22-bd9d-603229ebe078", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_215702316", + "DeviceId": "dc8bf565-0498-4b90-a540-72749be25d88", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "449f3208-8a78-47d2-a99c-1dda390e0848", + "TenantName": "Tenant-449f3208" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875341103", + "DeviceId": "de2d5c50-acbf-422c-8be2-57f88f8367fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539524370", + "DeviceId": "060d1990-b113-466e-aa76-127a9ac902bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_363116025", + "DeviceId": "a2849e0c-faed-4f81-af96-6dc400588762", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_912550995", + "DeviceId": "e0f42726-8d9b-478f-a10d-563d66d577a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254242656", + "DeviceId": "9758bd2f-1645-4568-9f12-a618d28a8b7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_302815102", + "DeviceId": "cc74c687-2607-4970-8c5e-4a45bcf11ba8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2224f349-5679-49f2-9867-865d7b571cab", + "TenantName": "Tenant-2224f349" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358550889", + "DeviceId": "f30e4053-dc1c-4897-ab98-a5cc599cb499", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_886022860", + "DeviceId": "d28a2442-c704-4b48-9a8a-458826c22cc9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234239073", + "DeviceId": "807cf006-b254-4ffc-b48d-c32fad4bf350", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491173058", + "DeviceId": "6ee30b38-42e2-4206-9b7a-c79c3d9da835", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549566618", + "DeviceId": "54408c09-9a44-4ff7-ac82-23d6fde6ed31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_612224041", + "DeviceId": "5ec93839-4120-4d0e-a182-fd1adcca2776", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eb8bc7f7-c6c9-491d-98ee-d2a91ff8f33e", + "TenantName": "Tenant-eb8bc7f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278325246", + "DeviceId": "b363d352-dda9-456a-bed3-bea2a8b046bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542679864", + "DeviceId": "45ea2083-409a-4f97-963f-818f7e003a96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964402000", + "DeviceId": "c15b64b9-31de-4208-ac64-da0040b05936", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_353631169", + "DeviceId": "4d205b82-11ab-463a-bb6f-3795a80f8e43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956219882", + "DeviceId": "6ded7c29-c426-47ed-8316-ab8abdc6d042", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_852338168", + "DeviceId": "af0a7a1b-59a5-48ce-b5cb-d288d56213b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0c492db3-988e-457a-85a5-32ef121f545e", + "TenantName": "Tenant-0c492db3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_654869559", + "DeviceId": "bfe13718-fff1-40c7-bb31-5233b2ede63b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318378864", + "DeviceId": "f90e0131-da95-4ffd-b7c6-d4effd1304f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_133879205", + "DeviceId": "da05c0cf-58bb-47d1-9534-255d35b081e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_184633667", + "DeviceId": "b1b9d526-7ff7-4522-ad10-affaa94b5fff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307431817", + "DeviceId": "e2c0ab8d-5c74-4f0e-b9a7-3820ba996679", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_133927573", + "DeviceId": "df595061-5898-4da9-812e-657ee6811046", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6cb6167a-ab58-4c5a-b407-d565bd46bb84", + "TenantName": "Tenant-6cb6167a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_470790594", + "DeviceId": "e84a743d-f038-4e64-a8a2-985415d618af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400021262", + "DeviceId": "c5377dbc-389f-48d5-95b6-0e21a106459d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668010132", + "DeviceId": "8018d700-9bdd-415a-9653-0ea2a462ea36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485397268", + "DeviceId": "06f4616e-a689-4711-a247-5207a439a4c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850630072", + "DeviceId": "84fd9e2d-3248-4c6a-a946-2be822d5401e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_198209801", + "DeviceId": "3828eae6-854c-44f2-a83c-92c38bb89fda", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf4b85f4-0b24-4763-aae7-318fa7ed5bc5", + "TenantName": "Tenant-cf4b85f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_453440373", + "DeviceId": "372faac3-fdc0-42cf-a6f2-f5f9585fbeb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851603653", + "DeviceId": "327e44af-1f24-425e-a2f4-4313f9c634a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591261222", + "DeviceId": "f8f684da-83ab-491f-9bcd-e3ee867b229a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879111754", + "DeviceId": "97bcf068-61da-4f2a-aed8-265bd228faea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389611293", + "DeviceId": "bfd07601-3419-458a-afe5-b056374f2fbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_303881000", + "DeviceId": "2c323b97-3aea-4ffd-bb85-4ff95c42de20", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5d4de689-b72e-45aa-8f62-a85358ff041c", + "TenantName": "Tenant-5d4de689" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113102532", + "DeviceId": "c111b023-fec3-4525-9c24-67d623e793f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_289217842", + "DeviceId": "304e503f-029e-4184-a662-aa4dad6f5a76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878901367", + "DeviceId": "c71a1494-46fc-4bc0-a581-082a7485af7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952298453", + "DeviceId": "228362a3-338a-4891-8823-e9ea36de82ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_682308566", + "DeviceId": "90f49ebe-fc75-41d0-85b6-c0054c9347fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_659222362", + "DeviceId": "4fbc5e8b-eb17-4a62-a86c-00e765a4f29a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e9346a9e-1b34-4891-80d0-09263cb00cea", + "TenantName": "Tenant-e9346a9e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413598968", + "DeviceId": "75c433e3-7310-4530-a788-c90a22435281", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_823042601", + "DeviceId": "d5b1309b-c3f0-463c-829c-515c144a602c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436457772", + "DeviceId": "27bec091-c360-4a3f-a256-9af9915d278f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677679756", + "DeviceId": "a8d0242a-ff7a-4906-a91c-a8fcbea8358e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994628356", + "DeviceId": "a4141cd3-fb24-4c7b-a5d9-8ef8fe383438", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_976440142", + "DeviceId": "15066fa0-fe94-45cd-807b-0ec6a8f9bf72", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ca83de4-95e0-47eb-abde-c737e3d27205", + "TenantName": "Tenant-6ca83de4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993667721", + "DeviceId": "7fc97c35-0a94-40f5-9bd7-c59dadc08ec2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207180730", + "DeviceId": "bbe823f2-a4b3-46a8-b0a4-896570c4f5e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_863728524", + "DeviceId": "f890cb2c-336c-4ef3-a2b5-145b1306b62b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_604260291", + "DeviceId": "ba72158f-0d2a-440c-8685-7884edc6e75a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944551274", + "DeviceId": "256b8c99-4974-4c8a-98a4-84e7e3383924", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_121715920", + "DeviceId": "53390086-11af-48ed-a160-1441b9859a8c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11dfafb8-d30c-4107-b7a9-9039da31b842", + "TenantName": "Tenant-11dfafb8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162270511", + "DeviceId": "dfeab78b-af0e-4fdc-8e20-f21abcc6711b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_817308671", + "DeviceId": "ac4ff1c0-e63e-4ceb-b878-8606f66265b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625767821", + "DeviceId": "11e48bca-f714-4ce6-b899-105c7200a720", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480881264", + "DeviceId": "97ea8997-7def-4e96-bb51-9f4ce9ed2a3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148638127", + "DeviceId": "837a2edc-7eac-4535-b257-150a6abd8086", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_912417985", + "DeviceId": "86e08afd-b935-4626-ad00-c82e9bf8e238", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "558d54d7-aab7-4824-a4ad-56d6ec9791bd", + "TenantName": "Tenant-558d54d7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560381161", + "DeviceId": "579b4ade-a538-486f-b6d1-bdae68034098", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525905045", + "DeviceId": "0b080273-096d-43c5-9ca2-f8b2ffae0314", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182107041", + "DeviceId": "095cc423-53b3-4961-8ff3-386c8a734d61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418887028", + "DeviceId": "2c68c890-251b-4b26-9dc1-0ef85f7f6c84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881815790", + "DeviceId": "6a92b5b0-67c5-4edf-8775-f29d9ae9ca48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_274058199", + "DeviceId": "315e887a-2a99-49b4-a4ed-8540ae083bf8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4e9a5b36-54e9-42fc-b76a-9d59c424163f", + "TenantName": "Tenant-4e9a5b36" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786892742", + "DeviceId": "ac428e74-723b-4d45-944a-e7c272689cca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_587175674", + "DeviceId": "87ff24ad-3134-4c04-8e16-f5f9ebaf1179", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131043793", + "DeviceId": "d3da473a-e8f1-4d10-a922-1093fb58f276", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737619403", + "DeviceId": "40c79b51-52a6-4b77-9bee-a4f8770b5821", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760273393", + "DeviceId": "b876fb2f-9777-432f-9c2e-485f74f6d817", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_130097674", + "DeviceId": "d23fd16d-7849-4715-a348-918082f8dc63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d9c568d-b5c0-4100-94d6-743e4201bafa", + "TenantName": "Tenant-2d9c568d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_395765455", + "DeviceId": "5af9ce84-9884-405a-913c-a6a337f88cf5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437502546", + "DeviceId": "666f9bc2-1b85-4889-8cd4-be096a468d91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582569938", + "DeviceId": "0e07dda3-e4b4-492c-9d3b-6d2ae7148a55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_212317199", + "DeviceId": "166fa7e5-c865-42c8-9f4d-322e47a4de9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_991559043", + "DeviceId": "b4b4eb9f-652f-4751-b5c1-8f1f26d7182b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_223792114", + "DeviceId": "402927b8-74bd-48ed-ba70-c9b4be9a90e8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "25ed0dce-62da-4ad3-8a25-657af180820b", + "TenantName": "Tenant-25ed0dce" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822396676", + "DeviceId": "554b428e-195e-4f36-ad0c-e98c589a5dca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241419234", + "DeviceId": "f3a74cec-b493-40ff-a53a-c682b6a85649", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436360203", + "DeviceId": "6342fff7-8780-4007-bdb7-9d230c2bafd2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651771265", + "DeviceId": "693295d4-8b1d-45e7-9948-a97c7ca1fe27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714348223", + "DeviceId": "431c3729-e827-4342-b257-90948f16af40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_612421271", + "DeviceId": "f264e9e2-92ec-47e8-a693-9aec1297437f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "50c70ee3-2a28-4c90-b66d-325458784f63", + "TenantName": "Tenant-50c70ee3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_854671844", + "DeviceId": "60670648-f2b6-4dc8-8d8f-a719c840a12f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350277195", + "DeviceId": "b6789328-e3cb-4eb8-b6cc-5477d19b5881", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_630120053", + "DeviceId": "ba42a4a0-fe7c-4e6c-939f-c4d6d67d374c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290880269", + "DeviceId": "0baeb3fc-0e54-4ed7-bc52-1e6f34b701a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208831098", + "DeviceId": "50a0f262-d813-44b1-930b-237a726d689a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_736228850", + "DeviceId": "fc1503e4-81c5-4078-98f5-887ad50bbc9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7a8ae6cc-d864-4837-aacc-62803910626a", + "TenantName": "Tenant-7a8ae6cc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844866174", + "DeviceId": "c2b486dc-d01b-4d70-b678-313735666104", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536812237", + "DeviceId": "8c08ca79-a112-4cc2-a8b6-8f60f4604f4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836400102", + "DeviceId": "917242b8-e607-412f-b41e-cde1073f7dc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_567595031", + "DeviceId": "ed500b05-4b20-468a-ab14-057f6c53ab79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_162135333", + "DeviceId": "0a3af788-bc5c-4afc-b1d8-9438ac6e7025", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_412955229", + "DeviceId": "94befbfa-eb92-4837-aab8-c768f4499466", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bab08e11-429e-4c9f-95a6-84ee3147dda9", + "TenantName": "Tenant-bab08e11" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657672984", + "DeviceId": "ab4158a9-18a6-4e1c-9d68-6ec165cee5cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202406523", + "DeviceId": "cfb12ca7-02a8-4610-a409-aa59a87ff1ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810352254", + "DeviceId": "df7e9ede-799c-435d-bafb-699c41ffc2dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760157025", + "DeviceId": "0c0afe6c-a035-426a-9ff7-6a344eb00a96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380491842", + "DeviceId": "74bd8343-57f8-4004-8c8b-40b0a07c3bc9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_684529385", + "DeviceId": "d6093e5d-7f3c-4387-bbdf-88539c69bb2a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6b22426a-5111-4e41-a188-ddece99c07c0", + "TenantName": "Tenant-6b22426a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802964422", + "DeviceId": "6e503c7e-e06e-45fe-bbf8-88ebb1a07e93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_326761958", + "DeviceId": "2812c663-8e16-41b3-a3b9-e3fea6f858e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_520272207", + "DeviceId": "eb8634cc-ae81-4406-b122-268ec3f2d54b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997034350", + "DeviceId": "a6d3d2d5-7ac4-40c4-8713-6bde4e16f2da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618400292", + "DeviceId": "1ce58b5b-5cf0-49b8-bea1-f6ead88ebda3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_632082951", + "DeviceId": "b3601cce-4c1a-4bd5-a750-71c57088602c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "86021a69-b231-4af1-9495-ffdb4edab50d", + "TenantName": "Tenant-86021a69" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330527929", + "DeviceId": "ced6e1c1-fbd5-4ff2-8ba4-b931cc9f5648", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286581915", + "DeviceId": "851bc861-0837-495d-a78f-4df3b96fa121", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712197930", + "DeviceId": "296a8f77-8847-453f-b3e6-f7dc77bf5a1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_304576128", + "DeviceId": "5af6bec5-1f26-4d16-ac1a-6c6e8fa76552", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_980935531", + "DeviceId": "5e2704a8-363c-4587-808e-afb1c7085408", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_929313321", + "DeviceId": "966b86fc-2c32-42c4-b5a0-439ee31b791c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3e1f975d-4e6a-4376-9f7d-a0ccbeff2d79", + "TenantName": "Tenant-3e1f975d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176737359", + "DeviceId": "a42338af-346e-4d58-8ce2-9c7935f20dd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_447456412", + "DeviceId": "b5b17fbc-5dc7-4bbb-821a-9e206a0b2f26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779308729", + "DeviceId": "a6ab99ec-1656-47aa-9574-9bff10d59b91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_460637892", + "DeviceId": "86ffd671-00d3-4d7c-bd96-7bad451f2656", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231087591", + "DeviceId": "d9a7e55f-5539-47d5-98df-26c5d50a79f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_196572500", + "DeviceId": "951a42bb-a9f3-4837-a6dd-957b09bec3c8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "742610b2-6b9c-4f25-b1aa-5ff42e12401a", + "TenantName": "Tenant-742610b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231678412", + "DeviceId": "0eed16aa-660d-43b9-bf98-a85fb152dbf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242168948", + "DeviceId": "5ecac96f-62ff-4f9a-9d44-d6b795914483", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328518443", + "DeviceId": "d56fe8ea-8941-44d7-945e-33346b2cba81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395088270", + "DeviceId": "868b6307-848a-439f-8e7f-2846359bb6a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375104786", + "DeviceId": "29a11bfc-f78d-4b7f-b441-d1ef08f684ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_832207041", + "DeviceId": "473a877a-57ae-43f5-b915-2dcf189db12f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bee962f4-99a9-4411-8463-0484fdae047f", + "TenantName": "Tenant-bee962f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298207434", + "DeviceId": "4222f17f-d1b4-4c40-8381-5643292262e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257771393", + "DeviceId": "7228aa45-1d19-4788-bc75-34aba891b60c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663232927", + "DeviceId": "87e40394-8c58-4748-9125-42ab24ebd865", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_832085465", + "DeviceId": "35a137f0-eea9-4dc4-a725-1e4da7f4488e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_228184372", + "DeviceId": "e063cf3b-0f9b-43ca-b7a0-a573d0d79f4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_274006883", + "DeviceId": "59dd0909-757e-4160-acc5-1fb6c31a70d2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5ea75299-2bff-4372-b131-24e3786927f1", + "TenantName": "Tenant-5ea75299" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602592845", + "DeviceId": "6a33ecf2-c52b-46ac-8b91-3c685ddf8bd5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290250690", + "DeviceId": "950bc808-a3d0-42cc-8de8-2ee216ac64ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533174153", + "DeviceId": "4cf6b719-1d0c-433c-909d-e8e0e3657e57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556115761", + "DeviceId": "12ecef9e-f25c-4424-a901-6767b1460d49", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580469624", + "DeviceId": "9fdf872c-0e96-45df-8ea6-e8b192d4204e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_724482362", + "DeviceId": "19ba04e9-8192-4958-bd2e-6adc365eea3a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a483efdf-1375-4f1e-a50e-0b866960e050", + "TenantName": "Tenant-a483efdf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873891441", + "DeviceId": "7734848e-cb67-4bd1-b766-6e048f8b9e67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320969527", + "DeviceId": "96da35b3-a3b1-40f5-aa4a-72c26b66920e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328385134", + "DeviceId": "3cd62d04-c8de-421e-9536-40e0b3211535", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105962678", + "DeviceId": "cbb4c5c2-3c09-4a87-8d7c-818dfc5b2c55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566069965", + "DeviceId": "db13c266-0b5a-4174-8f64-dfba4a66b0e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_182746432", + "DeviceId": "e8d3408e-9a9f-4f69-9a38-dc37aeb8ebb2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11bb69f4-bd0a-4088-b7a8-55efbd547762", + "TenantName": "Tenant-11bb69f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606101761", + "DeviceId": "1a1b4691-865e-469b-b30b-b37f0509ec75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397949238", + "DeviceId": "fc93a43c-5ccb-4246-b494-d06a4d377784", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_583212575", + "DeviceId": "7c173158-6250-49af-808b-f62a0abd1d42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708791500", + "DeviceId": "edd4314e-20aa-4441-84d7-9efc49a2d6e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612079601", + "DeviceId": "af58f035-2fa3-430c-9e7b-c13c7eccf7e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_634620614", + "DeviceId": "07fb1b58-3de9-4810-b8f5-3fee781d27b5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d035b3af-e9f1-4a39-b15d-bc8c9fc2376e", + "TenantName": "Tenant-d035b3af" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341387927", + "DeviceId": "01ad6764-4d47-4694-a34b-d46b9b399cf7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981565847", + "DeviceId": "855662b2-e412-44fe-adaa-a0a64ff9b7b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768255524", + "DeviceId": "5c8c87ec-7138-405e-a492-4764ff240266", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787275406", + "DeviceId": "cb73e042-f20d-4884-93d1-d094fad67519", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_942550682", + "DeviceId": "8194706c-d1d4-4c69-a6c3-79d9b6a12034", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_684215199", + "DeviceId": "02b1b2cc-f2b6-4434-ac09-fe708bcd9536", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "65c336c3-d6bb-486f-a7ab-b924b8b9ad71", + "TenantName": "Tenant-65c336c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_754281644", + "DeviceId": "c284cd30-3988-4955-bb89-b27430e58ec0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559254111", + "DeviceId": "0ae4b320-31ff-4be2-9f37-5b71f7cee7d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_177039426", + "DeviceId": "d6d324f7-60a3-4b62-afc3-9cd5576b94d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454718173", + "DeviceId": "f2de4731-42b0-4d5d-a52c-8df2e847d784", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146487494", + "DeviceId": "9de74d7b-ea89-4ea7-bdec-3c6ac97d8493", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_108836317", + "DeviceId": "054f7a19-e23b-4ecc-a950-e89a42910e25", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "299adbb5-0494-462f-b103-dc1b696c78a3", + "TenantName": "Tenant-299adbb5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192143341", + "DeviceId": "8e72f12f-2cca-4111-b879-10dffc833cb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842660872", + "DeviceId": "46efea1a-4916-4edf-bad8-23be893d5567", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115582562", + "DeviceId": "d0b7abaa-78b8-4938-86e4-bf36c53cf072", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152819269", + "DeviceId": "eb28515b-6bd5-43e0-9acc-74a591fb60a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915272012", + "DeviceId": "270888f6-75a7-4819-8965-a971ac67e1f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_292361053", + "DeviceId": "0f26eeea-5910-4e9c-ae04-b6ec93c7f22f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "09ff750a-fe4a-42d9-a5c9-0c984febd0f8", + "TenantName": "Tenant-09ff750a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936300626", + "DeviceId": "892e86de-a9a1-441d-bb2e-b55e2eba428a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893135817", + "DeviceId": "f901d94a-d1b6-4342-a810-c8992a634e60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_266513351", + "DeviceId": "453e4d54-4791-4894-856a-0e70275050e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490802720", + "DeviceId": "6b16174b-d178-46ef-9d49-c59a8069770f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837973986", + "DeviceId": "1e8d5f9b-adff-4855-b2a1-721416467c74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_681788074", + "DeviceId": "4bf0b74e-e77f-462b-ab82-ad1e5fef655e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5454f51-3eb3-4ad3-88e0-78a203514977", + "TenantName": "Tenant-c5454f51" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690807656", + "DeviceId": "6db1f49e-1d0a-4f57-ad7b-41828f76fc7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_478387238", + "DeviceId": "78ad4efe-2f64-46d8-b2b2-49907847ade1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682942671", + "DeviceId": "0b0482b9-d4e9-4662-8273-8776b0d8c20a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_194983465", + "DeviceId": "ded3e07d-534e-457f-b98a-a74b637ecce2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_811342345", + "DeviceId": "b5568455-9174-48c7-bdd3-94fc13b4f99d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_146169121", + "DeviceId": "8bd43f68-4236-48de-9008-614e56b8072d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2518f640-5813-4ca3-a999-366f80753b92", + "TenantName": "Tenant-2518f640" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261105.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261105.json new file mode 100644 index 0000000..9157c81 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261105.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_219844013", + "DeviceId": "a417afe3-79ef-4ba0-8bb4-91c4444f72b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743477748", + "DeviceId": "7f51ad43-a0f9-40eb-b924-ea513ebdb17d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922911939", + "DeviceId": "f2221177-a646-47b2-9ec2-e840333f1ee5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_690993884", + "DeviceId": "940810a1-d6f8-47d4-9f69-78e44de27493", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697206546", + "DeviceId": "cff776ba-1dca-4d89-b11d-e7f91875f1b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_213738464", + "DeviceId": "a747886c-9b8e-4b8a-8e8d-4c483cd3ac48", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be1d4580-e81f-4197-991d-c3b57bdbd834", + "TenantName": "Tenant-be1d4580" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944946209", + "DeviceId": "52b1ffb8-e34c-429a-8855-ae92eb2ad9ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_243825604", + "DeviceId": "7c1906dc-aec8-4590-b681-6ed6f3dcad16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_557176075", + "DeviceId": "a9ce4551-025f-47d1-8a85-5934f491ff86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389433990", + "DeviceId": "6f9375c0-37aa-4433-a290-26076e9c299a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313401284", + "DeviceId": "a6251e54-369d-4887-a27e-81079b29f4e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_758181477", + "DeviceId": "fcdff728-b558-4514-86dc-777fa27883ad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "88cda3c7-827a-42ac-9b04-533ffce09415", + "TenantName": "Tenant-88cda3c7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992327242", + "DeviceId": "a7b0a096-c8db-41bb-9857-eec7548b1d09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679216641", + "DeviceId": "4bf42687-46cd-4d7b-8108-ca67db8a9900", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618433885", + "DeviceId": "aa170b9e-95f8-4b6e-80bb-986fd65a10dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_186170310", + "DeviceId": "00ea320f-6801-43ce-9153-b68cd9db968f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164771808", + "DeviceId": "7a2fb65b-170f-4834-b660-b0c87c9dd311", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_650579471", + "DeviceId": "dc17932f-b5da-4afb-973e-52fdf1cc9bce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "112c912f-090a-4870-a16e-46132f99982c", + "TenantName": "Tenant-112c912f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_456022485", + "DeviceId": "e88c62ee-d466-4d8b-bcf1-72d4ecfbe3ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858664355", + "DeviceId": "78b6cd50-d3f9-4c65-88d0-0946f8274f9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765949233", + "DeviceId": "45474f42-b51b-4749-9049-b03fb0baa20c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190243752", + "DeviceId": "533e2498-423d-4445-b168-84c9818e682b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_565748548", + "DeviceId": "db5f0080-fec0-4f4f-980f-9057af024691", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_686933681", + "DeviceId": "957769fe-bed3-44ea-9a19-a349ac23419c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b6b8de60-d3ae-421a-8d9d-f5656b5ee081", + "TenantName": "Tenant-b6b8de60" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_569962738", + "DeviceId": "cd9de83e-7b23-4ec5-ad43-feab45dac57c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703550390", + "DeviceId": "321b6901-8aa1-457d-8845-82dd05da8943", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362829659", + "DeviceId": "bf951b57-af4f-4202-83e9-47d26c4cf1a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673471185", + "DeviceId": "b729a1bc-bd6a-49cc-a4ff-e3c7c25cc7ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533416222", + "DeviceId": "3dde3909-57b3-43c8-931a-10afa2a58f21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_317311331", + "DeviceId": "ac860718-0d66-47b9-9a33-12bdbcab029f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "db0f7c20-090b-43c2-a93d-8fbeab7e410b", + "TenantName": "Tenant-db0f7c20" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900984886", + "DeviceId": "3a90e977-734f-491e-91fe-6ef595c157da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881586547", + "DeviceId": "8f612d83-bc99-4c4a-ba84-6c800c0f2aa5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232602196", + "DeviceId": "9bf3af55-f16b-461d-929b-78922f3bf9a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930419058", + "DeviceId": "5a185d3d-e003-4a6c-b630-9cd0c1ddc16f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_746424326", + "DeviceId": "46ba2889-5b4f-4375-bbe8-b0da4145754d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_239418041", + "DeviceId": "573efe40-b018-4fe0-ac82-5b894483ce2d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c61977e4-e8de-4940-b76e-f5facac681ed", + "TenantName": "Tenant-c61977e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740059537", + "DeviceId": "0a1e9880-657d-440f-851a-5e1464ef79c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_406776434", + "DeviceId": "d8b079d3-3c43-4978-9a86-689aa9f62653", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_396927597", + "DeviceId": "edb45eeb-01c2-4c8f-b62a-66484cf0b438", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_710555391", + "DeviceId": "2c20959f-4748-4573-b079-e15757a5084d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_262453900", + "DeviceId": "a5092146-56bb-4bb7-95b6-c81f6a730876", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_921193005", + "DeviceId": "9d603e91-76fd-450d-9b82-72e7197e7280", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "13a2bea0-08ce-411c-9e26-643e314cd801", + "TenantName": "Tenant-13a2bea0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422949666", + "DeviceId": "9b520eaf-62c8-49d0-af76-d9f6eb28aa48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713455314", + "DeviceId": "902a9549-d6a1-43c6-a8a6-3910365395e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416309275", + "DeviceId": "eda51363-3ce6-4881-b87d-ffc329f7466a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546402512", + "DeviceId": "08470aea-70fd-4694-a809-c4e55ce11c72", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721461419", + "DeviceId": "147e8301-ed72-4a7b-bd50-d249edc6f734", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_199786418", + "DeviceId": "51a9a933-d1d1-4def-bea3-0f279b340274", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0e567c12-133e-45b8-9f27-a02917d5c750", + "TenantName": "Tenant-0e567c12" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525316700", + "DeviceId": "579b2ca3-fd56-47e3-9e94-abb766b65735", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412546035", + "DeviceId": "4bc7aea6-39da-4cb7-b2e8-8beddde9de40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263902953", + "DeviceId": "69ab4d78-7fe7-4121-92a7-e92dab7361ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913290770", + "DeviceId": "7420c3ee-80da-4cee-8e27-71d5aecb2428", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281884556", + "DeviceId": "960a5a51-acbd-462e-9aa9-27b2b3e578b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_738493035", + "DeviceId": "0f737c3c-eeac-411f-9f28-c9bf15837d30", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f70071bf-e09c-46c6-b5a6-1b219e9305a4", + "TenantName": "Tenant-f70071bf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906073268", + "DeviceId": "373f1af6-0a1f-4e3a-9167-95b38730f5fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_615994061", + "DeviceId": "608ad660-a820-47f4-bc5e-4b7824f1b5a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_528025694", + "DeviceId": "f8d4202a-f614-4f28-9bbc-9e5fd074a99a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703184689", + "DeviceId": "3b39f128-b81f-4119-b511-acd0b4ee2c5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429663175", + "DeviceId": "25ed3830-af06-41f0-ac0c-8710fd5c5ad0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_654742521", + "DeviceId": "6158e30e-d3f1-4656-afab-eb943e71185e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "839f07a1-c601-4002-b66d-b27eb1257819", + "TenantName": "Tenant-839f07a1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488982676", + "DeviceId": "96bca391-68e6-453a-b424-f7bbaeacd9db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257680773", + "DeviceId": "70073fa5-fd49-4cad-92b6-00b4f4cfbbf3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998525138", + "DeviceId": "c6c46176-f0d0-455c-84e0-8d234c0fba3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374533696", + "DeviceId": "29b067ef-84c1-4f9a-a82e-c5a536b872a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295758098", + "DeviceId": "3112d47d-4d72-4b14-a272-f5f9110eb05b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_739484805", + "DeviceId": "d8affc46-bc9c-43d9-98e0-158d74b5d420", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8c3fb21d-1e24-401b-b03e-1ec14eeae85f", + "TenantName": "Tenant-8c3fb21d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227347199", + "DeviceId": "d40290c2-315b-4c97-b579-0b0e8ebe0c58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_932326119", + "DeviceId": "8df434d4-7d02-4cba-b679-d69f925edef8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_497576182", + "DeviceId": "8fbf89b6-3db2-4b58-b69e-9605f4de66e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364611867", + "DeviceId": "53399169-de70-4d45-a061-739e7a038c63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432780451", + "DeviceId": "e613f5ee-aad8-4ba0-b5ee-45e8dfbbae11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_950525303", + "DeviceId": "392a0937-d46e-4b33-b6e6-12acd3fccca7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b063eff5-b933-4020-8e38-2c077c695725", + "TenantName": "Tenant-b063eff5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633151331", + "DeviceId": "2762541e-7f9d-452c-baf5-4f5efe22423f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134888004", + "DeviceId": "9a21ad42-77a4-4b71-8d7d-b3a1b52ab5cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419549727", + "DeviceId": "0aa6ee65-df6e-45a8-8ffe-110d57ca39f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679397881", + "DeviceId": "7bf3f4bf-3816-421a-ab08-94d1a8e91b05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902715884", + "DeviceId": "dc280628-8390-4a19-8586-664a189e34fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_777219506", + "DeviceId": "aa614dc1-0f49-4355-89ce-8b13a75ad40c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bfa5c946-f09a-44db-8d86-f37fbe734812", + "TenantName": "Tenant-bfa5c946" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_463011761", + "DeviceId": "5fcea1ac-0091-4fbb-9232-22239ebdcaf1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752408059", + "DeviceId": "06ad1204-9484-492d-a4db-1f95ca4dcc49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_811874465", + "DeviceId": "37b3f24b-bfcc-4b3f-b2e7-bc8773112a79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_949708743", + "DeviceId": "8bcd8ec4-9c41-4b0e-a7a9-70359112286d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_536865300", + "DeviceId": "1d8f351b-f49d-4467-aad3-3b5811c05c70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_821054520", + "DeviceId": "45998682-5f29-4c58-907f-431843182e80", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97c1e598-cebb-4309-96bd-b81694f90943", + "TenantName": "Tenant-97c1e598" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_820345935", + "DeviceId": "9f8d1eb8-90aa-4b4b-9d18-a28a54348577", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319277099", + "DeviceId": "5f0ff746-231f-4a76-9470-d28b828a47df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424353711", + "DeviceId": "29b7b206-d38e-4408-ab11-59ba2e8da372", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292757229", + "DeviceId": "85e8dbbf-b887-41b3-8ef3-a68e72cb834d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457711513", + "DeviceId": "c56b4517-96b9-4713-8a61-0a7f4a78b247", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_553956542", + "DeviceId": "2da6fe77-7858-45c1-87bf-f0748f17c443", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d84e8b9-d14a-4d22-9323-e2117bab1c0e", + "TenantName": "Tenant-2d84e8b9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487915056", + "DeviceId": "3341bab6-2a25-4bb9-b03b-b9fd68376e43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734950626", + "DeviceId": "c86c8f4d-e0cc-4548-9742-b9fcff0494fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_266453233", + "DeviceId": "5d00e7b4-6d40-45d3-af2b-a15eb42f9fa2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440557089", + "DeviceId": "b82f2369-6164-4062-b438-e25c19ef6d65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649106920", + "DeviceId": "ab1e06de-89eb-44d5-b2b8-cb34ecb7b1e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_758256258", + "DeviceId": "007f6d2b-882d-4b71-ac59-8d1e3c191e1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "94696b0a-fd06-41fe-a31c-17fde7d9a93e", + "TenantName": "Tenant-94696b0a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_189903461", + "DeviceId": "847b4417-9f09-41e5-890e-dda5a7873780", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574877851", + "DeviceId": "947e6086-020a-489e-a00e-161c58166309", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917144192", + "DeviceId": "24c5e705-9ffa-43d5-bf43-9618911e1792", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_367840277", + "DeviceId": "fe572a5c-fa3c-4ebb-97e0-3b35e3fec117", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_630792561", + "DeviceId": "1bcd7ed6-619a-4ef5-9cf7-1ee9202f6e5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_344130449", + "DeviceId": "4b3ae0ca-2534-41f2-9637-660c41db897e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "82cc0959-2d28-4dcc-ac5f-6d6279891e6f", + "TenantName": "Tenant-82cc0959" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526095250", + "DeviceId": "f6e012e0-72d8-446a-bbb6-232d318f3ab2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218993797", + "DeviceId": "8f86faed-f884-4d65-ab4e-df891ab6574e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929440634", + "DeviceId": "563df8d7-bb5d-4116-96b5-821881577fa9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_734008434", + "DeviceId": "9b686caf-4aea-4bee-9079-0e06d6b134f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381487305", + "DeviceId": "7d2d6e33-3a05-4cb0-8b62-0162c7784b22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_388114071", + "DeviceId": "e367814d-e680-48e0-a1b2-717c0fb0d547", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b94595e2-5cb6-4fd2-a9cb-ddc8ff03523d", + "TenantName": "Tenant-b94595e2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346349971", + "DeviceId": "e13d701f-8f41-4913-ac35-d3043a5c4594", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888061255", + "DeviceId": "03d29a9b-3a6e-4f6b-a11b-809aa7a23672", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409119735", + "DeviceId": "fdefb792-aa96-4b72-9776-52d129118810", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_482288855", + "DeviceId": "4b0ba654-622f-4ac8-acdb-7448c1e78087", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820937009", + "DeviceId": "19204fef-dd40-476b-8f42-54abce5ba184", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_592380566", + "DeviceId": "829dfc37-01b5-4ced-b0f8-c4015001d4b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a2058810-cc5a-4862-88ed-2224c369e717", + "TenantName": "Tenant-a2058810" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_667621164", + "DeviceId": "1af506df-0894-499c-8654-96ce0032b6a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_170833542", + "DeviceId": "9a3ecb46-c19d-49f7-8e9d-1084e0722280", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314706077", + "DeviceId": "70447b6f-974f-4a6e-b672-34200ce017c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309837584", + "DeviceId": "71180fff-d5fb-47b2-aee5-3df03d0fc0d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_593677007", + "DeviceId": "9db24374-9595-4590-9d62-faf529575a22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_397922468", + "DeviceId": "119d1922-301b-4951-9046-cbe6c0a7666d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1d41afe2-058f-4407-a33b-496f0ad35d60", + "TenantName": "Tenant-1d41afe2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_698302753", + "DeviceId": "0c9fb892-a326-42c2-8e74-cf7d7da204cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588132862", + "DeviceId": "5d5a71d4-8d87-4488-a348-0d2b3e698b71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_607435064", + "DeviceId": "68a7f5c3-e9ea-4b5f-b6e9-a7aa46b1e17a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_563158884", + "DeviceId": "88f3be78-397a-4b39-b157-3209caccc5d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_180599180", + "DeviceId": "0389da3f-737c-4ac5-8b3e-653ae0871d7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_153510897", + "DeviceId": "0b3008a8-24ac-4312-9eec-cdc0e716ea21", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05034751-66c0-4883-9106-c050e35b4d33", + "TenantName": "Tenant-05034751" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525392072", + "DeviceId": "9b54aeea-6808-4c2b-9128-3f0344b8bbfd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438133530", + "DeviceId": "7ca0f8ed-c94f-495a-b6e1-5f1196e3d385", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516303886", + "DeviceId": "081d2f4f-3358-42b2-811c-ab5d397564ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966346245", + "DeviceId": "7497d251-8cbd-42a3-a72d-13e81c1ad773", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455728365", + "DeviceId": "7f9edc8d-d690-4bfb-aa6c-c45c4ba870f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_409961982", + "DeviceId": "aa862096-962a-42fa-9bdd-2aadf26d15de", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d7f409d9-07eb-4889-bc9d-61f6a88034a0", + "TenantName": "Tenant-d7f409d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985961792", + "DeviceId": "c7c37902-e552-4f61-be73-1236b2b2ce43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741686874", + "DeviceId": "ce2acf55-254d-44d7-9e34-8d154d5526c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185433177", + "DeviceId": "f21933da-c388-470c-b6f4-abffd2679c59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286474661", + "DeviceId": "51ea1cee-0228-4405-a962-8da171794b33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973234759", + "DeviceId": "03e73dea-1b64-4fb3-bee7-1f10899d9a7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_832521628", + "DeviceId": "a11ed486-068b-498a-b369-49409b3bfc0d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a444bf8f-bd02-4c04-85cf-4de91ddf0c9e", + "TenantName": "Tenant-a444bf8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897988726", + "DeviceId": "a6686395-e92f-4f59-bce6-512b46e746f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_648668946", + "DeviceId": "e4d21b5f-ddba-4914-9aff-89bd12817ed6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679091936", + "DeviceId": "12cd708d-983f-43ca-a0bc-03cdae4092cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665386657", + "DeviceId": "b796ac50-2153-4fd6-bb97-3c95c05eb7a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815373995", + "DeviceId": "666db9ce-9933-485f-b53b-220920826f25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_126101420", + "DeviceId": "1a36f5aa-70f4-4f10-84cc-82229021de55", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "284bef93-4015-4692-b3ea-459bca2443b5", + "TenantName": "Tenant-284bef93" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606199366", + "DeviceId": "3ba5c1ed-4e6e-4c6f-8283-b3347987f88f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_966971669", + "DeviceId": "f089b251-49e4-44c7-ae5d-c5f0a0cc9f4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249879112", + "DeviceId": "3723ae13-0537-4544-908c-66f2c55543b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264468696", + "DeviceId": "0a9236e6-bf60-4983-b796-1ce6601701ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_521702910", + "DeviceId": "62062fa6-146e-42ef-a50c-a6019f3eb3c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_144004681", + "DeviceId": "7cdfbf67-4990-49c7-bfa5-2fc9c28dbc40", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ee501c1d-2509-4592-890a-78d51bbf67dd", + "TenantName": "Tenant-ee501c1d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368592907", + "DeviceId": "d58a78aa-3f47-47a8-be1d-ec1f605b8d9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878656809", + "DeviceId": "e83c9cb9-4eec-40d5-8fc6-38087e99a3b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803566305", + "DeviceId": "5bd8a06d-7b61-4b7a-b10b-341af34fce4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201472117", + "DeviceId": "24c362ab-2b11-4a1c-ad31-b0b57b3631f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_675575082", + "DeviceId": "0c75cdbb-948a-462f-b747-bc279e3dcb6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_659195047", + "DeviceId": "2905b1e5-8a3f-4557-b529-a3d38d47ad48", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c0eb1a7f-e8bb-4149-9f3f-81aa07d2ceb8", + "TenantName": "Tenant-c0eb1a7f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640279334", + "DeviceId": "5e5ec74b-eaf9-4448-89a5-28433990bdce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_937296422", + "DeviceId": "dbcabb5b-ee6d-4249-a08d-5c35e7dc65cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_132838183", + "DeviceId": "5dae7968-bd93-4535-a16e-92c9e0d85512", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559735347", + "DeviceId": "327fd215-a398-441d-8ce6-b9e15d32a0b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_732416044", + "DeviceId": "d3d8a0d0-fc31-4980-bbc6-b1218270b2d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_142208053", + "DeviceId": "a8564573-e355-4b2e-a99e-7bceab8090a3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "16f878a1-7b73-4116-87e0-c961fc6926fe", + "TenantName": "Tenant-16f878a1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387373771", + "DeviceId": "459311c6-d3bc-4975-afc4-0f6071679f1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582301198", + "DeviceId": "c5138c66-f6b8-45d4-8e1b-e95688cb8de1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_861258728", + "DeviceId": "5ce5adb0-4489-441f-b9ea-2809731422b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455311114", + "DeviceId": "fc3e7941-acb7-4767-87bc-0cda803c0e07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640470347", + "DeviceId": "02aff835-2181-4756-aeb5-2d2db5cfaeb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_505156404", + "DeviceId": "bb9f6af2-45fa-4595-9c86-a2ed09392f59", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c8517624-aed6-4807-bc04-84ca542c1126", + "TenantName": "Tenant-c8517624" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622519495", + "DeviceId": "1ca225ef-91f0-4ee3-93b9-a1b81847e421", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_758828156", + "DeviceId": "921cd756-428a-45c1-9557-b006f576dc09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175478932", + "DeviceId": "500d8e70-b349-44dc-9f79-2c1c7702378b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_634140404", + "DeviceId": "6c34376f-18ad-476c-9143-e4fad631ac38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103172595", + "DeviceId": "f2702437-14f6-4a10-9093-824a9884f3d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_390555176", + "DeviceId": "d499ac62-573e-484d-9641-edf95f248bbb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a3782c2f-171e-43da-9d1a-6e5345b514be", + "TenantName": "Tenant-a3782c2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_656507095", + "DeviceId": "1e3e2ff0-59f3-435a-af26-4e51037f959f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626369658", + "DeviceId": "0612de98-2fa4-4a78-8c1c-4f6dc9df189a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600015152", + "DeviceId": "4bc655d1-8e4a-428b-8a1d-e8daa3d54b96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_722814004", + "DeviceId": "cf4f72eb-5380-4238-be45-b6ab66ce8ce7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631407009", + "DeviceId": "55d5aaaa-54d9-4f43-b100-7a75f3b3afd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_424602649", + "DeviceId": "ab710706-c933-4c68-a7de-b985605bcafd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2e9aba8c-ef54-477f-ada4-28da66194124", + "TenantName": "Tenant-2e9aba8c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223318619", + "DeviceId": "69b39263-1417-4b2b-9d59-e52f7350409b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_253213895", + "DeviceId": "9e44d62b-5341-489a-b7d3-7cbdb9302d8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949400603", + "DeviceId": "efbf4b1b-617d-4a62-b498-1fb2c2def751", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351341739", + "DeviceId": "9cfc260c-30ef-4b4b-a2f2-02f95a424728", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_776339144", + "DeviceId": "a8d24814-4871-4e37-95a8-c53eefaedb02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_670841846", + "DeviceId": "62dc1afb-f8af-4376-b758-c5507e9089c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b3b2ae7c-2dec-467f-9329-ddc6baa623a3", + "TenantName": "Tenant-b3b2ae7c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849198950", + "DeviceId": "16b9322f-c3ce-4eb5-b522-d61104291289", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850379453", + "DeviceId": "d600d4f5-fcf5-414f-aee6-dd957d88495b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913941189", + "DeviceId": "a775bf33-bcf2-48ca-9eec-df3248d1fd31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392125716", + "DeviceId": "82d35627-6881-4b19-9149-7135e57fe60d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323684549", + "DeviceId": "878d05ff-d99c-4d75-a453-3712e97279e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_279822776", + "DeviceId": "d1b8f916-55cc-4e48-8b84-5004b3bcdf5c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "570e8a0e-79fc-4236-b7f8-6950b949b0fd", + "TenantName": "Tenant-570e8a0e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_569043491", + "DeviceId": "8ee7e4b9-edeb-400c-8daa-cbb6532c4193", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139442012", + "DeviceId": "f79bb7b7-cfcf-4a7d-9f84-b98c3bbdbd82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302380563", + "DeviceId": "e1a2a536-9875-476c-8342-29c1cbda9b32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_805691206", + "DeviceId": "70722e13-8bd1-4f5a-9d9e-f7a3e175176c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_893911805", + "DeviceId": "5229c1d5-474f-4ab3-9900-c597d5e92640", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_374867968", + "DeviceId": "27a7577a-212d-4f23-ad83-342585cc3988", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f48f02dd-3a85-4c31-96c0-286c0180d798", + "TenantName": "Tenant-f48f02dd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_299397444", + "DeviceId": "eb5b9ea6-1d23-4bb0-9d53-0d374cb225ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533973293", + "DeviceId": "697cccf4-fb1d-4484-a246-850e4abd96fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_459176706", + "DeviceId": "bba11224-3b12-402e-bbf7-35a628b54f7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701297442", + "DeviceId": "f7491766-87c7-4999-94d1-460f3046ab1d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_797842556", + "DeviceId": "fec20d43-79fa-4df5-ac67-f0b060d675ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_712608491", + "DeviceId": "8e46c990-e287-4cde-a716-37b9122087db", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9c12095f-164b-45ed-9463-bae70a7bc8cf", + "TenantName": "Tenant-9c12095f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458267388", + "DeviceId": "bbcf4a6a-4aa6-4952-9386-33f5ac944ff3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516682442", + "DeviceId": "7811ad39-4ce9-4d61-bb8d-6c20da9bdf4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847754211", + "DeviceId": "736f0f04-9091-428b-b06f-278d8e42f75e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860519260", + "DeviceId": "6efe1b48-d6f2-40bb-ab04-cc26aa712974", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_604934350", + "DeviceId": "ee4a345b-62b8-4bd7-aad7-f753cddfae89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_366244230", + "DeviceId": "27835657-d66a-487b-b8c0-2e03044d5c63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f4c7811e-1100-4721-b8d2-5211e4ee1cea", + "TenantName": "Tenant-f4c7811e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487469825", + "DeviceId": "d685bcd1-f26b-4a89-ad04-be0152ade711", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534705854", + "DeviceId": "7fbeafd3-76bd-47b6-a415-aea0dfaecbbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786223677", + "DeviceId": "8bb25cc3-68b8-4b07-9eeb-6154107595b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_315549462", + "DeviceId": "57c839f0-4a92-4e96-be99-0b76ec8328ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_502880214", + "DeviceId": "f1287b30-8400-49e8-9c25-d353c2da96b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_111424545", + "DeviceId": "a0f5942a-00c2-4ae8-8677-842ffb885399", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a0c81a17-8eb1-4e4d-be0f-ca2b2f2791b4", + "TenantName": "Tenant-a0c81a17" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271141557", + "DeviceId": "26c632a5-77f5-4099-a5d3-d8a97d6d1536", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_291205714", + "DeviceId": "a95a026a-850b-4b74-b6d4-3a5cbf13313a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970745513", + "DeviceId": "4b47c493-b807-4712-b7fa-819480533057", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_272174846", + "DeviceId": "94b6ef35-4b3a-4311-a3b9-7cd34393333e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491265345", + "DeviceId": "29cd2c2c-568d-4b33-a757-8df7484276ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_428782144", + "DeviceId": "c52bcc74-ce93-4354-a4f6-35eee8f167f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a8a1d225-98e5-4567-84d5-fae25e84d974", + "TenantName": "Tenant-a8a1d225" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325630111", + "DeviceId": "e9c1c97e-df69-4b84-b8b1-f925688a26bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513023108", + "DeviceId": "82e2072b-84d1-41a1-9cce-acfe35960861", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605639804", + "DeviceId": "148e9fed-e330-4695-b89b-c9f0ab20693e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956519160", + "DeviceId": "a1e27218-ffc5-402a-9512-cb7a763994c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591749483", + "DeviceId": "f96d5c38-93e6-4586-819e-b07929825518", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_562607102", + "DeviceId": "0164aad2-bf99-4c0a-9f73-2728ad508fce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7b2e88ca-fd9c-4a2c-93c2-05e7a58b5e79", + "TenantName": "Tenant-7b2e88ca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736584923", + "DeviceId": "600b30b0-0fc9-42a5-bed9-dedef715e07b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730731214", + "DeviceId": "edf59a38-3a3b-4b87-bdae-43bc67fce62a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_359364588", + "DeviceId": "cef7602d-7991-4796-ade3-47107809eb9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595581140", + "DeviceId": "4494a4a0-704a-4577-bf5a-ab48b45b8a26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769909541", + "DeviceId": "f668e643-4aff-461a-8277-02209266b363", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_390023904", + "DeviceId": "c0d7a82d-2f26-45c7-b9d1-2b6e0cd84324", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "278f6aac-3041-434f-aab9-a4cd5ff9fdf3", + "TenantName": "Tenant-278f6aac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288034410", + "DeviceId": "a1c9440e-eb7c-49d1-84e0-3dcf507e545c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287919890", + "DeviceId": "de5f36c5-b419-4f6e-8e8a-ae9976d10164", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_280639261", + "DeviceId": "4a2fc96d-fcf5-49f9-8874-e49d409e30ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945403754", + "DeviceId": "bcca03ec-3795-48b9-8e04-9dc14f630b9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727123621", + "DeviceId": "4d942d93-9ce2-4a9a-8c9d-0a788102e07f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_782643294", + "DeviceId": "80c69b83-8711-48ca-a247-1cabaeaa92e6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "caf36ce6-f375-450f-a74c-29d4c1c54efe", + "TenantName": "Tenant-caf36ce6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432722635", + "DeviceId": "de948502-987b-4289-bbe8-3c27a6ec071e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979735772", + "DeviceId": "b5d93934-3f34-4867-a6ea-a09868879b85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221880902", + "DeviceId": "b101dcc7-1a33-484f-a457-98103871f756", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_160634040", + "DeviceId": "19c8df74-aff6-4f4c-8c8f-c42cc9f8e20f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_788792256", + "DeviceId": "0ff24aa8-1dcc-4da2-947e-cf347884a769", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_613041013", + "DeviceId": "db049eb6-b55f-4042-a3d2-85eb6882f8c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b8d8eb24-5ef9-46cb-8d6d-d669522df913", + "TenantName": "Tenant-b8d8eb24" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772336878", + "DeviceId": "fe8d79c1-e83c-4c55-ba06-854759773a71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541995497", + "DeviceId": "bfa5c08a-e52c-4bc6-a2ad-f38ebcb7f8cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264753818", + "DeviceId": "d59a9f81-9f58-4fa5-91d1-bda4c5759fe2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672493046", + "DeviceId": "5e1127e2-ea5c-470b-a05b-41592c20bee6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981351260", + "DeviceId": "008b01c0-f679-4454-a78a-926310ebb32d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_280244651", + "DeviceId": "cf93e985-16e1-466b-906a-da792a30ad0f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "60480121-25c2-4efd-8d1e-20c7a877aae4", + "TenantName": "Tenant-60480121" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420650185", + "DeviceId": "546ad661-ea36-4023-a1eb-041d8b465396", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307698722", + "DeviceId": "2eb1f764-fa3f-401c-bfdd-114cf9f57ddd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_209560922", + "DeviceId": "6f016e43-9ad2-4937-b891-0000a4f7242e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577256684", + "DeviceId": "aba233ef-da6f-441c-8926-e0d24ec5d605", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452795621", + "DeviceId": "4b0e70aa-baef-4341-9dcb-ec78b12f4b34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_661922475", + "DeviceId": "74289b49-3eaa-47d7-aa14-814dab992f3e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0f8098dd-49a8-43cc-9d44-2d5b39692561", + "TenantName": "Tenant-0f8098dd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706400932", + "DeviceId": "a8fb259a-ca98-4334-be1a-1333d137ea5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408931626", + "DeviceId": "3e76d45e-84b7-467c-8090-0adbb464a6df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_460166334", + "DeviceId": "1ae4fd9d-7ac7-409e-b12f-a20b071a8483", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105339011", + "DeviceId": "3581182e-7504-4a0e-ba79-ce2ed365842d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860570766", + "DeviceId": "a3ef20e6-1798-4893-97ce-8e8d4bcbc4cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_329816248", + "DeviceId": "23eb3c7b-b74a-450f-a79f-92aa4b03c83e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bc88229e-3893-4ae7-a6eb-42cf01ac8408", + "TenantName": "Tenant-bc88229e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_961871905", + "DeviceId": "dc071da9-6f94-43e1-9b8f-0d0f7d068e20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812277883", + "DeviceId": "f7b7781e-7ab2-4891-91f3-579112daf6e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_537739301", + "DeviceId": "c053c09b-7d25-441a-bda4-b4c579261777", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234958770", + "DeviceId": "d114766f-3085-4526-8d6b-67f66d7fa964", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_669103980", + "DeviceId": "b0571b58-2d02-4bf0-b62e-0949536d3895", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_272401255", + "DeviceId": "13b8da1d-9120-45aa-ab96-86d66fc1f37b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0b5a6fdb-706f-4582-9ba3-e221da32b762", + "TenantName": "Tenant-0b5a6fdb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417563783", + "DeviceId": "c9d36ceb-f579-448a-91fc-29232a246a55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_269328223", + "DeviceId": "57e409fd-d91d-4587-ab83-020581647d53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391899539", + "DeviceId": "5a6b1d4b-43fc-42e9-8b61-a166d8aedeac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364725546", + "DeviceId": "9628725b-6268-4901-9ed0-80649c75cdf0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868939051", + "DeviceId": "4501dfa2-a050-4ffe-8a8e-10de707a23bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_319401007", + "DeviceId": "d75e7990-56de-40e6-8b4f-ee1156d0ccc0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "675cf6c7-a3b2-4ed9-9f7c-c5407513b94a", + "TenantName": "Tenant-675cf6c7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608682285", + "DeviceId": "93f70ecb-313f-42db-b496-327fc2dfd1ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927127419", + "DeviceId": "a31919d5-eaff-4624-9e28-eef9e753b628", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_355789387", + "DeviceId": "40e43067-2a67-4535-b847-5941da009042", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_690932593", + "DeviceId": "eb06c90c-dbd1-440a-b35d-e5ed641c91b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_529369348", + "DeviceId": "2c25b545-d180-4370-b355-680e7806ec14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_581759100", + "DeviceId": "357a9801-cccc-43fb-8398-4b5d7f377c83", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a033833-a7e1-4626-b830-4e0364887aee", + "TenantName": "Tenant-1a033833" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267269043", + "DeviceId": "0e9a8fa3-c247-48ae-8199-174ff1afa8a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931940320", + "DeviceId": "79faacdc-ea52-4581-aa99-38278391e639", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_830812031", + "DeviceId": "12821a1c-4042-4ad0-aac8-94cf0fc67e79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787044714", + "DeviceId": "ffde201b-5c25-4dbf-aafe-6b3d6cc7afe4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119835012", + "DeviceId": "925247be-876d-446c-a185-633687347ac4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_741096507", + "DeviceId": "cd17c94e-eaa9-42e8-a6df-e045859fae56", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed2fb8f6-094d-45c2-9e23-fb34ce16ec69", + "TenantName": "Tenant-ed2fb8f6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_224959853", + "DeviceId": "69a92f7e-7f90-4e45-926b-3475af307670", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963540968", + "DeviceId": "c76bc67b-ca79-43cc-a044-b0fdf91c9386", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826281729", + "DeviceId": "8fac22d0-c289-4666-b88f-c7b2d654e2a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817156022", + "DeviceId": "a95f2863-a524-4b68-bf90-b8159983e5a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948356115", + "DeviceId": "337ad7ea-186c-4c63-94a0-638bb926ae10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_422747146", + "DeviceId": "22da57eb-239b-43da-a897-3a1db2c29eb9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6637bb76-2f75-4a09-865c-8c6ddf883dfb", + "TenantName": "Tenant-6637bb76" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875372924", + "DeviceId": "fd11fd8b-3bbf-4b92-b9f0-cadf049b853a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103216590", + "DeviceId": "9524e5cb-845d-432c-803e-e7c21c68f984", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_299476837", + "DeviceId": "9e0aa47d-696f-45f4-bb07-09ddf52a75bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_437621966", + "DeviceId": "f2bcfbf4-86cc-422b-8545-093949846a27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944875996", + "DeviceId": "c3775d69-eb54-4ed7-b96f-219ea2bf8d0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_502206067", + "DeviceId": "93990074-797b-4842-8e71-83f4050a02d4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "39c37e25-cedd-4cbe-afb6-386fc9a416b6", + "TenantName": "Tenant-39c37e25" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_593347441", + "DeviceId": "9d3e188f-6ab8-4f9d-bd87-9f1aacc5dbba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635212377", + "DeviceId": "52b261b6-88f4-4399-b420-a31f94254aab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_654635184", + "DeviceId": "a2f0c5da-4d52-43a1-9530-53e4aae6a84b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_796229747", + "DeviceId": "ccb43320-90ed-469b-9e87-2432b2fda489", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636824131", + "DeviceId": "ad18ecf6-7a7e-4788-84ae-b4cc111795be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_217642098", + "DeviceId": "5dc3d80a-00fa-4138-a86c-87fd6fdd758d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e6c456a6-b1fd-4220-8978-b4befe3d765f", + "TenantName": "Tenant-e6c456a6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678654229", + "DeviceId": "0ed4347c-7978-4077-999f-ed56986f47c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536608783", + "DeviceId": "b2ff8005-53a5-42c4-bf79-8cc887ed2922", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818989139", + "DeviceId": "e55d0af1-3da6-49fa-8837-87dda818262c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425177515", + "DeviceId": "2d585762-8856-4225-a0a7-5421342a2028", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462262825", + "DeviceId": "0c7f1890-108c-48d5-85fe-ec36ff8ae060", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_659249226", + "DeviceId": "8a616371-cf4b-4664-b2ae-62f5f1bdca87", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "55afe8fe-8212-4014-b17d-23fb5aebddef", + "TenantName": "Tenant-55afe8fe" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901508384", + "DeviceId": "c8a386d8-8b43-4fe1-a829-e6dff80473f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892171610", + "DeviceId": "297783cc-bfae-447f-a61c-afa9b6b99e37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541193056", + "DeviceId": "257f32a0-a13f-40d3-a73f-9178a358a3b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569838488", + "DeviceId": "9bbd2f73-2e29-4ba4-9fb2-16791a72714a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_502052596", + "DeviceId": "a01256f4-a629-45e2-970c-6e7f35a01594", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_346844208", + "DeviceId": "538730af-aa7a-424d-a9bf-3c0fb8e9d808", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c2980240-55e6-47d4-aff3-0b3129f2f989", + "TenantName": "Tenant-c2980240" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679628159", + "DeviceId": "c1056564-36ce-49a8-88e9-d84fd814e9c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_735189687", + "DeviceId": "fd115c0c-a813-43e7-97ad-a569b9e9a0e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666979780", + "DeviceId": "0bc21331-fb2a-4218-9b0f-132861351d48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526177487", + "DeviceId": "147f7d7c-6525-4af7-8c98-0d2325d09bc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307700968", + "DeviceId": "184e1299-8e24-4c7d-89c3-8d3e8cdfc45e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_402748301", + "DeviceId": "ce57ddc3-1b5b-4b9a-9bb0-4c36835a0375", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c8a4f12f-b30d-4cc1-b169-58fb86f0b688", + "TenantName": "Tenant-c8a4f12f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529135141", + "DeviceId": "b325729d-98b8-42c2-be33-31bbae104537", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597270932", + "DeviceId": "e33d1d33-26c1-4593-ab2d-ac6d99fb5028", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605783781", + "DeviceId": "3bec7653-925e-464b-be40-70ec06cf85cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_100021569", + "DeviceId": "39c952f8-8ee8-4399-b521-436b41a95134", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439484319", + "DeviceId": "f15eb300-1dc3-47e4-99b4-5d9d5e3ea5d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_853117103", + "DeviceId": "71e9f9d8-52a2-4485-a015-edee7f07ee61", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "82a1f4d7-ada1-497d-acd9-9397a36e2e85", + "TenantName": "Tenant-82a1f4d7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_189244048", + "DeviceId": "05d4b77a-f766-4cd1-b62b-a719f3d062da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976451327", + "DeviceId": "6e30b581-daa8-4903-a0f3-a54119ea749a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_554734145", + "DeviceId": "683516d1-7a8d-4faf-b98d-0e729d912f73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_448429325", + "DeviceId": "82e5d7e2-0557-4308-bf9f-c04f8097499a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408303447", + "DeviceId": "262aa87a-1606-4d8b-b089-a52713082646", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_888335062", + "DeviceId": "1954f88b-d9e6-4cbc-ab3c-7aad88b26d8f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ff4ab07-d977-4614-8cd0-44eb564c5ac8", + "TenantName": "Tenant-0ff4ab07" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314259633", + "DeviceId": "159b57e4-f38b-411c-a816-3588fecc7e8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129354599", + "DeviceId": "69bb6312-d492-4d91-b9e0-c970d9997a55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_335499147", + "DeviceId": "e754b962-ae92-4f2e-8afe-5bc847cbdf3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_872950368", + "DeviceId": "96f4e0fe-5348-44a1-9100-d402d5e041e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695635693", + "DeviceId": "cde05d33-aa6c-4493-b4ed-51fb057418a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_261216963", + "DeviceId": "2bf4cc11-b44f-4075-b3cb-e206fece34f9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e04fe736-c85d-4895-97e2-730ff6564622", + "TenantName": "Tenant-e04fe736" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843215038", + "DeviceId": "afde6236-3e5b-436a-808b-ca87b676297e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_551272000", + "DeviceId": "9a280c45-c005-45ea-8620-1806eff4a2be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123067121", + "DeviceId": "e30fcc35-92ab-4cbe-9f36-249aadb72916", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_248620184", + "DeviceId": "26250f87-bd33-4ebb-ae8c-8afc31aa27b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938602849", + "DeviceId": "0bb3d90e-105f-478b-96a9-550dca5c0643", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_936207952", + "DeviceId": "b82c6470-67f0-4d3b-866e-3050dcbeb4b6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "41f30a48-6664-4170-86ca-7881c8cbd641", + "TenantName": "Tenant-41f30a48" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631250463", + "DeviceId": "4f64d0a0-0e1b-4491-b70f-bf760befbd3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_649603492", + "DeviceId": "1305e55f-70b3-42a4-804e-a43966e69685", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_959749640", + "DeviceId": "cbbdad3c-e0e2-454f-b254-490bedd92a17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128421087", + "DeviceId": "0702d29d-77c6-4bd7-ba8f-b1bd19dbd08c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416308570", + "DeviceId": "527c38e9-e3d4-4870-98e9-4d21370c1610", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_650781350", + "DeviceId": "880ed766-f748-4838-bd11-c6ef35168671", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f291d420-1a31-4e5b-b5a1-c3afe76b83bc", + "TenantName": "Tenant-f291d420" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202815107", + "DeviceId": "a1035c8d-2933-4378-8e2b-ee6281326456", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248996766", + "DeviceId": "a45407c9-2dc0-4605-92d4-32e308ce4349", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547358540", + "DeviceId": "3c6b5ea5-275b-497f-ab39-e570af674fe5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274450838", + "DeviceId": "83fc4997-b55a-4181-b781-0111149c0468", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347053043", + "DeviceId": "86801729-e3f9-4ada-ae48-b8b68c30e5fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_502419533", + "DeviceId": "86bf75e9-66f1-4ac7-a4f0-4d6e12570101", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f4f637de-0f6b-406e-be66-841592c06079", + "TenantName": "Tenant-f4f637de" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212526682", + "DeviceId": "1dd77374-244b-4885-bf62-9c3622072fb8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428298290", + "DeviceId": "b424a97c-2d64-47da-954a-8c7042ef08db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_269582177", + "DeviceId": "57ea139e-8be6-4997-b32d-77217940eb18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726490713", + "DeviceId": "ccbf332b-fc80-47a5-a5fc-f1db31ffbff7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438655412", + "DeviceId": "79483176-0ed2-40dc-bb85-b85457bfa26c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_213495576", + "DeviceId": "cd27296b-ac50-4c24-8b13-84eaa1785a05", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1d2b96aa-638f-4939-aeea-a67829315ebc", + "TenantName": "Tenant-1d2b96aa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835468957", + "DeviceId": "09d48e54-3afd-4774-acf1-8f7c1f5b3415", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985809986", + "DeviceId": "d07458c6-5e32-429e-9b6b-a6479ce10ec7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636858149", + "DeviceId": "15d3c234-ece5-48fc-85c1-2c0b2ab7b40c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_955154830", + "DeviceId": "db54207e-ae19-4757-83b8-336d14b149c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424632598", + "DeviceId": "76dbd9ba-0c95-4d4b-a521-4709ad7f14bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_511888845", + "DeviceId": "814d9cab-8591-470d-a170-e2664b700b9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c72f8ce0-bc9e-45a8-88d5-56a184a11fc1", + "TenantName": "Tenant-c72f8ce0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_291183932", + "DeviceId": "aa780e47-f6d9-409d-b21b-3d100317bab2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_653075773", + "DeviceId": "69d364b7-8dc1-44cc-a91b-15a9c31b99fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_459519002", + "DeviceId": "11793407-45d7-487e-bc99-7fb1d15883d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126664649", + "DeviceId": "a7e9baf2-3081-4ece-a551-fe6fdeeb7ef9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611070882", + "DeviceId": "c014e263-b8a7-4df0-916d-5b5c026a7374", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_475919343", + "DeviceId": "2faa7eb6-8eb5-4616-a5c2-5f2c2b5e439b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "70906118-82a6-41e4-9e69-0869711094e7", + "TenantName": "Tenant-70906118" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636130480", + "DeviceId": "e8224200-e94f-47c9-b164-cdb9289e301b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703056101", + "DeviceId": "dcddf4d8-ff35-44b4-8bd4-d878181c79ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409554638", + "DeviceId": "0cd19158-4114-4a75-8db4-9d8fcc7cb4b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310671732", + "DeviceId": "37c55e6a-b8d2-4f14-b03e-db12b58a220c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757763105", + "DeviceId": "80cacd17-3dc9-4278-b047-7af1fdecf355", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_282336694", + "DeviceId": "eeb51598-46b8-4305-a2b0-4e579c28a20e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f3810c3c-469d-475f-ba23-fc90ec8e77a7", + "TenantName": "Tenant-f3810c3c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677097980", + "DeviceId": "2601ef9c-9070-484f-8513-0a9d5eea4eb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_807965492", + "DeviceId": "153964de-6db2-47c0-9a3f-569c88367082", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136686901", + "DeviceId": "4352496b-3045-4074-8911-7c89ca393202", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429181926", + "DeviceId": "07dbff28-abbd-4f98-9dc9-9cae9482d775", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306287182", + "DeviceId": "7a609829-ce85-4a44-b9d9-e32380bc3def", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_909262123", + "DeviceId": "006fc7a7-978c-41ec-8669-31bd5deb51e1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e5e377ca-984d-4a1c-86ec-ce92a5bfc778", + "TenantName": "Tenant-e5e377ca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788524503", + "DeviceId": "c624bc20-2e55-482b-a4a0-bb83df32e376", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474392369", + "DeviceId": "a958775d-2991-400f-8817-c2a51274c8de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265264134", + "DeviceId": "615f1332-4f05-4be2-a5c7-6e7494398ab6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_336817652", + "DeviceId": "c6b772fb-ae01-400a-bd67-915e1501fcd2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657677953", + "DeviceId": "708b7279-0125-419c-a28d-104cfe1c9e56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_637460760", + "DeviceId": "2d7eeb19-d044-4df2-b4bb-dfc9ccbd7472", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5a76ef3a-75b8-40ae-82f4-b281824f44ea", + "TenantName": "Tenant-5a76ef3a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727984098", + "DeviceId": "b0030c12-1dc9-46c7-9218-681f40bdf399", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_716401098", + "DeviceId": "93ff3f86-bcff-4bdc-ad4f-c39799aa6be2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_251004044", + "DeviceId": "dcec2a5f-146a-4983-977c-349794da1732", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153769821", + "DeviceId": "6fada118-bfab-41d0-9931-e5416b2d2ac6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_167788274", + "DeviceId": "c351f1da-eb83-4dc3-91f5-8c744dc52f98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_819345473", + "DeviceId": "4c33d270-aa12-487d-b501-27564f835425", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e26a8ab-03c2-4316-b205-f2a820443b60", + "TenantName": "Tenant-5e26a8ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962139452", + "DeviceId": "3cbede23-407b-486f-85c4-e53587e8d743", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_698072465", + "DeviceId": "9b34a042-b8af-4d37-be78-ef70322b7583", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748883559", + "DeviceId": "03fef2f1-3748-40f5-becb-ac7c59bacd16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_387241697", + "DeviceId": "f961ee6e-8a4e-4eb9-b723-108ca866b820", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914474213", + "DeviceId": "7136500a-0e8d-4fbb-8651-a126d3139d9d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_558309656", + "DeviceId": "666f1b0d-ddca-43ef-bf65-14e254b4a0ad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7b852341-ad47-4bc6-8b37-83ce73a93e93", + "TenantName": "Tenant-7b852341" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483504296", + "DeviceId": "ffa2d340-d4bc-407e-853c-f4cf0da2b37c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935133126", + "DeviceId": "cbc423b0-d7d0-4848-81e8-397bef6ca162", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560416378", + "DeviceId": "7c5aace8-cd61-440c-9d79-4f5e1c60074f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410594931", + "DeviceId": "7cc6a209-6c44-4175-bd8d-b7694acd8b94", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989195679", + "DeviceId": "c4a99e0f-33d5-4e0f-b642-c9b22a0c0c4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_494379894", + "DeviceId": "b3179925-331a-4a1c-bdbf-28eedf681cff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0b8fcec9-55ce-445b-82e2-bac47f0a9f16", + "TenantName": "Tenant-0b8fcec9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944038681", + "DeviceId": "fa8fd254-f06c-43b0-a842-0bfb834f0998", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529606300", + "DeviceId": "ee41ddff-4bf1-458a-9323-2b65d6fbbdfe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597662011", + "DeviceId": "c7650d6d-a28d-4c96-9a39-ecb3d407cb7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698332617", + "DeviceId": "9613e41c-a777-4f68-9d0b-df7394e0aeed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_186676446", + "DeviceId": "b3b3ae55-9b34-4cb1-9e2a-fbb972a64df4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_137340560", + "DeviceId": "5247e4d7-cbe2-4748-9f90-9ef13feeda40", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d30fa2e-46fe-4c0b-82f0-1be23fac7e29", + "TenantName": "Tenant-8d30fa2e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223586034", + "DeviceId": "136fe7df-fbd5-4b5d-adfb-92662c88477b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969408592", + "DeviceId": "e6acf204-641c-4e62-a8b0-f131823c521a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665514539", + "DeviceId": "0e9afb5e-ef19-480c-9f11-83e57c52bf4a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204660806", + "DeviceId": "380a56af-6aad-4cd0-8bba-23669cf2da9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841689289", + "DeviceId": "0df10362-37bf-4c3a-8908-d047e38fd023", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_668111817", + "DeviceId": "346b3651-6255-43c8-800a-c4dd6a0a7fb1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bae7fe4e-fae2-4729-99b0-78d84222c57e", + "TenantName": "Tenant-bae7fe4e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288653030", + "DeviceId": "fb99c205-e336-4e29-9c6c-8916953f3ae4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708368343", + "DeviceId": "b24d0915-7d68-4147-9d47-a5fec16b50d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382688598", + "DeviceId": "e96dffb3-585d-470f-b2fe-f60a88b023d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_460181786", + "DeviceId": "39a7da83-e192-41f9-bd83-78d57779a332", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105649733", + "DeviceId": "f72cde3a-b820-4e2a-80a9-2156a9940cec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_705569121", + "DeviceId": "89e0fd80-e112-4be0-ab24-5d5a71bee0cf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a865a6ee-9d33-46d2-958c-37f3a8e63dd7", + "TenantName": "Tenant-a865a6ee" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781132697", + "DeviceId": "b5db474a-1871-4cc5-b975-8acfcd355e7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912671335", + "DeviceId": "e307d2b9-aaf2-4cc1-a3af-7a680cf0b396", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759360361", + "DeviceId": "0261f1db-c991-4d11-904d-6e2ade25f531", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647522368", + "DeviceId": "766bb8e2-67d5-4880-948f-937616aa7c4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818164124", + "DeviceId": "5b15dfe6-d855-4b96-88d6-8f52142e29dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_983289652", + "DeviceId": "b1f22ce0-9c65-490d-9586-86e9e964a300", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2fee3f2d-6b44-4dd0-8a0a-2b4374f77856", + "TenantName": "Tenant-2fee3f2d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104891081", + "DeviceId": "c09f3ab4-22da-4163-b3e2-897e68dc1dac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249075239", + "DeviceId": "7ff150d0-9fb1-4d6d-bb86-b0dd580e46c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_460469703", + "DeviceId": "fe987f94-afec-443f-befa-0b426bab6e9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_355519430", + "DeviceId": "741dc7d2-2460-454a-92af-c23c05a4d162", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597025168", + "DeviceId": "5ccb3bf1-c330-43c2-bfae-36fd8fe9421e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_751575064", + "DeviceId": "d09be216-2953-436c-8272-5d9cafa79be9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "209a6d8f-3fc0-418b-a1af-2548b2143494", + "TenantName": "Tenant-209a6d8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112339822", + "DeviceId": "a14cc5b5-89b3-4cc6-8c84-4903a47c79ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_544983000", + "DeviceId": "e14f3fee-e9bc-45b9-9509-cc010e73a9b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_737043624", + "DeviceId": "a247d348-f53a-4583-a20f-f0ee1ed63a62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989044747", + "DeviceId": "4a049081-dea4-4fe0-9b3a-07ae8f6bb4b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335632195", + "DeviceId": "2c1b12f6-d1cb-49a8-aab5-43e3efdc3344", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_105153163", + "DeviceId": "37f1a614-01e2-4770-8bd8-10768f4dc0b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8a583542-5090-4bc7-b9b8-7a2062d5c6d0", + "TenantName": "Tenant-8a583542" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319736056", + "DeviceId": "1e8537a1-115b-49be-b1a0-097dd02e3469", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200413964", + "DeviceId": "5c3281d0-1ff9-4033-b983-8a095f811987", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862973432", + "DeviceId": "80e5f255-fa9e-4ce7-9430-6dbfdb1ec633", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608850863", + "DeviceId": "652ad26b-71f3-4d13-b0b2-194d136dc018", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577214543", + "DeviceId": "01154376-2762-4f51-ae27-02c4660aad9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_364875724", + "DeviceId": "0b042075-3cf6-4d35-81dc-4c878a22dc21", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ddbd6901-b93f-41a2-84be-e649f33026d9", + "TenantName": "Tenant-ddbd6901" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_280648895", + "DeviceId": "4cfcc0ae-be8a-44ca-be5d-eb618bb5132d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798469670", + "DeviceId": "2e85835b-af67-4106-987a-b3bcf23285f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_723283849", + "DeviceId": "1eae1c9d-2fd2-473c-b722-d3343c8d51f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_567124384", + "DeviceId": "5278a886-b09a-46e8-a2fd-9846899a9589", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_245437029", + "DeviceId": "0248e851-e0f8-4820-881c-528ef8f63f05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_456982149", + "DeviceId": "aa8d05e1-42ff-4d4f-9aa6-66fac814d23d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e2eec3f7-2805-4e9d-9b5c-ada6ce3d408c", + "TenantName": "Tenant-e2eec3f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892409358", + "DeviceId": "33db167a-6f9c-4446-8c1f-d51ba529ff4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752161184", + "DeviceId": "ad054e43-ca18-4f68-bbe3-1a7526ddcfc9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237115534", + "DeviceId": "1435f27e-1ddb-46a4-b9c6-3265b52f335a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286630279", + "DeviceId": "0dd6eee7-0f09-4e8d-b891-f2c5f1a5e74f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_420265774", + "DeviceId": "5459b515-9e24-46ca-8224-e96364380c5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_139207018", + "DeviceId": "47b3b087-fdf3-4989-8dc7-ccc73db06ae6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b29d6f73-a512-4f19-960d-ae5e7d2e3eb0", + "TenantName": "Tenant-b29d6f73" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430347388", + "DeviceId": "9155409c-809a-41b5-907c-cdb66e5b5532", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425884461", + "DeviceId": "22121703-050a-4d55-87f2-2decf9ecede8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979131863", + "DeviceId": "b52ce91a-69e4-4c7e-a58c-323667c37f2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820343205", + "DeviceId": "3b466788-9e22-4fe1-b432-88d8320320e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621943412", + "DeviceId": "1145e866-5f6b-4e29-8550-278536a0ed37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_206768143", + "DeviceId": "79601c8d-c04a-44f9-bce8-cab2ef3678a3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7aa4406c-8d59-4712-a38f-8bd118333907", + "TenantName": "Tenant-7aa4406c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_620472516", + "DeviceId": "1eb4a8c2-bd44-4859-ba89-fbcdf5fdd52a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786554989", + "DeviceId": "145bab30-239d-44a8-a6c5-48bdd5c5358f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579528780", + "DeviceId": "ade148c6-f351-47c7-8a68-8c2a50398349", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662535849", + "DeviceId": "a1726306-82aa-42ba-b0dd-afff65bb0627", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794689695", + "DeviceId": "83aaf70f-f007-4416-abc9-43cf49772a4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_990442684", + "DeviceId": "c3ae0dea-7e56-483b-92f1-aea01a322f96", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7f103b47-b791-480e-b459-78278867f3cd", + "TenantName": "Tenant-7f103b47" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462445428", + "DeviceId": "c6f20392-854f-4fd4-a8e7-60efd700bd2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761567928", + "DeviceId": "567249d1-41a4-473b-b0b0-d701e98bee18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_953680871", + "DeviceId": "1c96634d-26fa-47b7-afe4-bcf4f097753f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177491046", + "DeviceId": "8fb30253-5468-4cbe-b191-fe6fcb4b594b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_221924567", + "DeviceId": "f4e8aae3-2d7a-4b18-8228-504e6115f203", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_205639238", + "DeviceId": "718201bd-35ad-4102-af48-ef639648a88d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4b72ee5f-54af-4640-8254-1524e1cec05f", + "TenantName": "Tenant-4b72ee5f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_590348973", + "DeviceId": "1e91b2ff-27a9-4017-a67d-d23a551be158", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568935692", + "DeviceId": "14d685db-3c70-42d2-8aad-7d16786f39eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927737463", + "DeviceId": "50b1b188-ff3c-40b4-82fd-67424f14b0da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_830327142", + "DeviceId": "68dfa577-c47f-49a5-a81e-9caf5a92e19c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145896919", + "DeviceId": "9f777fdd-6599-426a-96c4-3778d1f8cd78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_484449856", + "DeviceId": "b7622fac-7183-4969-8698-1e87c503eb3e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "19b2c80b-4c5c-4b4d-9a54-4b611904efe3", + "TenantName": "Tenant-19b2c80b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325792852", + "DeviceId": "706b2072-5d68-4b15-bc23-be1d3d036cf1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252998859", + "DeviceId": "b9357e28-dea3-4c03-b3a6-c605a52d63d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688114499", + "DeviceId": "6eae8951-ebfc-4fa1-96f5-f6732cae48ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953113747", + "DeviceId": "57c95581-c919-4787-9172-11a576a73c8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300229555", + "DeviceId": "ed18c447-b00e-4eb4-9ac7-af2a881f22f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_853719076", + "DeviceId": "3d5fa7a6-a874-4fd5-b541-fc350070053f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aee23eb9-1d97-4712-99e0-64cddd16d1f6", + "TenantName": "Tenant-aee23eb9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_902812153", + "DeviceId": "4717bd90-4d0c-49d1-9564-c00c1d7d404d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_870956113", + "DeviceId": "2f7115aa-15f8-4584-abb8-d8a7ca20a67f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302969302", + "DeviceId": "9000697c-a051-45ad-a248-536b3c3e5c22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_716295829", + "DeviceId": "2273d266-0f42-4486-a5b5-aba5ff62468f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_276205529", + "DeviceId": "b2ed9582-d83d-4c45-bd6c-ffc3286e7af8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120904115", + "DeviceId": "90afbc38-8797-4e82-8d2b-7d2aa315a959", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ecb5407-2f96-4b60-b681-d280ccad5af8", + "TenantName": "Tenant-6ecb5407" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376046327", + "DeviceId": "e22e6ac4-8875-4850-9359-3e8708e3f846", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112806973", + "DeviceId": "4846bb27-6947-4b6a-9080-b064b77d459e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414542106", + "DeviceId": "6bfa4809-3238-4778-b46c-8c18c1e38dd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487814062", + "DeviceId": "c74ab024-70f0-4d4a-9104-11b3ae9acae8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_762201228", + "DeviceId": "306535fe-77d7-450e-864a-98524699d500", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_587268365", + "DeviceId": "89a4323a-a501-4b63-bb56-cd8e15a21944", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "79926a9d-1ab9-4210-a5ee-60a7a3c50506", + "TenantName": "Tenant-79926a9d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413796559", + "DeviceId": "ee283332-5ee9-4b28-a623-7827cf100491", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756688636", + "DeviceId": "f067faf7-c79d-4c24-a891-d85b2810efb6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_859103292", + "DeviceId": "27c0352f-7d8c-48fa-9757-e8b28f1633d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_317948088", + "DeviceId": "f72f341c-43fe-4e06-bee5-c1b8e53c6f0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_796452141", + "DeviceId": "f0d442f9-6f37-43e7-91e2-97457e1ab5d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_419617830", + "DeviceId": "a815f29b-3e26-4126-96b0-56e69b3be9a7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dd5f21f8-8c2f-4281-9ce1-6b97ad276d06", + "TenantName": "Tenant-dd5f21f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336222336", + "DeviceId": "d3cae21f-bbcd-40ec-8d75-c51e425e28ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231631548", + "DeviceId": "1f9ddc8a-cd76-442e-94fe-a8f6ea32d2d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244973257", + "DeviceId": "27776952-1302-4aa6-a074-cc507ff64f08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_706570621", + "DeviceId": "936427f0-2442-4897-98ab-2f63697880bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_816999255", + "DeviceId": "09a4b34c-1f18-42c0-b811-7729005f5224", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_976695354", + "DeviceId": "cc148364-dd65-49e0-8a98-29e491c112dc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "60dd9172-c3b9-4860-9a03-dd01b9ca8db8", + "TenantName": "Tenant-60dd9172" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878880233", + "DeviceId": "16ad6c3f-b3c8-4365-8cf6-ac7d2131fda4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_254899103", + "DeviceId": "66812be6-f649-48b0-aff1-ff1c0b97a125", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928037218", + "DeviceId": "a919b5e6-eb51-4f90-9dc7-e7248bc519eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486156308", + "DeviceId": "ae4c50e9-ab74-4afb-b7d2-89bca492792c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999344457", + "DeviceId": "1277aae0-4f2b-45e9-9fc2-d779bd739537", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_172122031", + "DeviceId": "d23cdeb4-d099-417e-b3f4-357337e720d2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96ca1a37-db68-4dfd-977a-be5a98221018", + "TenantName": "Tenant-96ca1a37" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626749857", + "DeviceId": "8359d9d9-2d92-4e74-8916-b5163849dbc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_479302290", + "DeviceId": "893d753e-fe3c-4c34-be9e-1f76653a9e9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_369189787", + "DeviceId": "ca31fdef-66d7-4781-8b57-295f718f6f03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_717189401", + "DeviceId": "e47052bc-01c9-4cc3-96bd-3696fc6182a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772479242", + "DeviceId": "984ef8fa-dded-4ec3-8791-ef2d0265e7ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_119054497", + "DeviceId": "204e8cb9-8723-4cd9-bb59-3c77edeb7f40", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1b71b8a0-887d-4ad3-a891-8fcf39403a4a", + "TenantName": "Tenant-1b71b8a0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362872538", + "DeviceId": "d6dfeb38-9ba8-4d6f-abec-f57e9905dbdd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579636645", + "DeviceId": "9bab4114-c128-4f66-b4b9-aa9c0b574cfb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_331073345", + "DeviceId": "c78f937e-00d2-434f-80ed-39f69fff11bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_225644458", + "DeviceId": "b204bf13-bcb9-48d2-8401-7558501bc1ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499864804", + "DeviceId": "ba5283d6-02ea-4104-af09-b4dbd36d3087", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_347138761", + "DeviceId": "c8ae8222-8c8f-4618-bd26-9ee7048d097b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "920d7930-84a6-4a8f-8cc1-f7d8c59eead0", + "TenantName": "Tenant-920d7930" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808417706", + "DeviceId": "14459185-b95b-40de-947f-eecf3568a9c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788733020", + "DeviceId": "6abd3b76-135b-4b22-a638-558a02a1ed5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650050533", + "DeviceId": "fa579af8-1503-4115-a868-5ab960682590", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_717391379", + "DeviceId": "1538d66a-54ee-4d91-b50b-2347dd3fb22f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787837261", + "DeviceId": "3d1f12a7-a691-4a6d-9aa6-7276b07682a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_965413913", + "DeviceId": "340366ad-028a-4507-89a3-63fc69135bfe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be80dbf8-8d33-4d27-9300-d1b8041f6f83", + "TenantName": "Tenant-be80dbf8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347391271", + "DeviceId": "dc05bd48-c7d8-4b51-afa6-09894ca5f786", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278061129", + "DeviceId": "84a10cbe-c91c-48e5-aef2-6ee1a3d09bc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408898185", + "DeviceId": "d916a6f2-e5a6-44fd-8a6b-0198ef8b212a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828497464", + "DeviceId": "acb6cc54-4200-4d4e-8ac5-250a01d9f550", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_833663674", + "DeviceId": "86884035-6b77-42a5-b6db-8addab8e2475", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_222167906", + "DeviceId": "4e62d703-40ee-4a5c-8c59-81af845ffc48", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "75f4c242-ec80-4042-9103-a3ea9a76c2ad", + "TenantName": "Tenant-75f4c242" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_174727989", + "DeviceId": "c886b92e-9635-4cdc-bf01-5d76e4764e98", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556877054", + "DeviceId": "a6177fc9-e590-42d7-a420-811487e4eeda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759759438", + "DeviceId": "58ad20c6-6073-440a-955a-b8762389c993", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_219200282", + "DeviceId": "c51bf545-44ba-48fd-92a8-93ad61f0acb2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_816205157", + "DeviceId": "aeff5c68-5f8a-4ae0-a47e-8ea607eab5e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_770507435", + "DeviceId": "43c967fb-5cbe-4b10-adb7-31696a0475f3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "28fbff4e-5694-40a7-a171-f00ff67e9842", + "TenantName": "Tenant-28fbff4e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495927965", + "DeviceId": "6e5b2711-6c3e-4a7e-a829-7d9ca609eab8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328949939", + "DeviceId": "ff690da4-9529-41d8-a0b5-8e8f02ba0a62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_955616833", + "DeviceId": "bd344945-b9c0-4360-831a-45be9645478e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_804768535", + "DeviceId": "f293089b-74fd-47c3-89ff-ecef6a515ec8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322164956", + "DeviceId": "6325746b-fb5b-4ceb-992d-7ed4d50b3e34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_275346967", + "DeviceId": "2b4376dc-fd03-4f00-b871-0023f9b95485", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "63b76d74-5cc1-4a3c-948b-e9311caa715d", + "TenantName": "Tenant-63b76d74" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187769125", + "DeviceId": "5729d355-6f9a-470a-822a-beaa41316dc7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924918155", + "DeviceId": "825be87e-b88c-4615-b736-e5d00d3a4f83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747892369", + "DeviceId": "baf6fa2e-5b57-4d9a-92eb-143311c8a8a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_349152670", + "DeviceId": "0c84c2ca-1458-4a4d-83d2-bd6f5e0090ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752853413", + "DeviceId": "47ddd5b1-d546-4d4d-9088-b0f146d9b783", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_480963014", + "DeviceId": "58de20cb-aa94-4d59-9f48-11d1457cd17c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "27cea955-cd46-4ebf-addd-49bc1d052fbd", + "TenantName": "Tenant-27cea955" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153391071", + "DeviceId": "be83bdf0-87a2-4ae3-9cf7-22849591bb77", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734174235", + "DeviceId": "c02720d3-9df4-4160-8fbd-61e137c3b940", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987036166", + "DeviceId": "bb8cdb18-e3a7-4fc7-ab99-23c5c0af3520", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193294401", + "DeviceId": "386a2c3f-c803-431c-91ba-cdf3bb11e370", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406240696", + "DeviceId": "c87ab558-4dbc-40ad-8894-c27a9267a081", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_206020150", + "DeviceId": "dd27d99c-046a-48ce-aad0-67bb12ac4f25", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c3c5bb61-5670-4861-b9bd-626c25ca4ea3", + "TenantName": "Tenant-c3c5bb61" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307885308", + "DeviceId": "49b4ec53-4df6-4bec-bf40-1f3e392139c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_573625467", + "DeviceId": "25467e34-8a33-402a-8378-abf89e45be81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901887467", + "DeviceId": "a1a83518-807d-4a1e-8ea8-8d8b373bc172", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644497867", + "DeviceId": "ef5634a8-e825-4db6-b515-7245600fcb14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_764961121", + "DeviceId": "2d248b7a-e327-4d9e-9d6b-4530b75c6abf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_791638840", + "DeviceId": "bf077b9f-f7eb-46ce-bda2-94b26c768277", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7980b80d-40b4-4954-9a89-a270586a15d1", + "TenantName": "Tenant-7980b80d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727645753", + "DeviceId": "735e85ef-0765-4fa8-ac43-6ef95ee43b62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_811756592", + "DeviceId": "6e1e42ad-e684-4485-b128-86de9f01d5c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264116050", + "DeviceId": "0f10ae41-b5b3-433e-b931-4e2bc02e1ad5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749166055", + "DeviceId": "44cf1137-e64b-4210-bd6f-443d99a0a849", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713710931", + "DeviceId": "ad6d05b2-97bb-4563-b217-fb6ec065699e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393626205", + "DeviceId": "1bee04ca-b866-42d3-baad-b306e45bc490", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e00867f8-31fa-40a6-a6b5-9516b37cc678", + "TenantName": "Tenant-e00867f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225908097", + "DeviceId": "51090ecf-582f-4c15-8c4e-3f3820d4b174", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345842755", + "DeviceId": "7ebe87e4-9af8-40a1-be80-67995a3e58e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206569522", + "DeviceId": "d9e9271a-32b7-4134-87f5-498061d3b2ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622417249", + "DeviceId": "c51fa217-505c-4e0f-affb-d2831b4bf8e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_134729901", + "DeviceId": "623a2dc3-bd7f-494d-bd66-83002eab93f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_712418132", + "DeviceId": "a0b324b5-e934-42f0-857d-b5bb0d8b72b4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "851b2d54-6cf5-4fe9-b538-06a0f2ee6cf3", + "TenantName": "Tenant-851b2d54" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332385273", + "DeviceId": "c885ad46-319d-4813-87ea-03bf98cf410c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858195519", + "DeviceId": "fb52ab63-de66-48e6-8dc1-a5f01e46a8cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619692127", + "DeviceId": "11f41165-a1c5-4cca-a100-d253ab5cf64e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898014629", + "DeviceId": "c1f21d6a-a2a9-4c60-b092-bccdac354e6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921244736", + "DeviceId": "7239e2be-d463-4eeb-a29a-df7e82103304", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_760348127", + "DeviceId": "a9e2bddb-4072-4fc2-9376-2c9fcbe766c3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f0b084a5-6bac-480b-aa08-640bf61ea398", + "TenantName": "Tenant-f0b084a5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659960948", + "DeviceId": "65bf8a5a-4c85-48c7-bf6a-eaf7022063f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561019756", + "DeviceId": "c697eef3-7396-4511-8d97-7b7ace3ea66c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734800949", + "DeviceId": "bb60add9-a8c8-4af8-8e79-442ad3c04112", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110614795", + "DeviceId": "07a68617-664a-4369-918a-53935641e1d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918888768", + "DeviceId": "d48da194-5ef9-496a-bb29-c48dc3fd2f52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_216908383", + "DeviceId": "d666bab3-870f-4ca3-9d8f-522e702edf29", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "494a843d-44ae-4c09-9787-03e5f1f0723c", + "TenantName": "Tenant-494a843d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392881929", + "DeviceId": "62a41a78-88b7-4de1-9276-ff32b923a70a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508527108", + "DeviceId": "2c74b7bc-a416-4821-95bb-21688167978a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438933154", + "DeviceId": "2ecfd6ac-03f6-4c23-bb53-002fbbc34187", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266747670", + "DeviceId": "49fc64f3-42cd-44a6-a69f-72b89effd4db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153803149", + "DeviceId": "6a3719db-f65b-4a19-bfd6-d4643ee61673", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_786034718", + "DeviceId": "17f307fc-d40e-43a9-8ca4-637aea6bdb3a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e8ba49fc-4767-40d1-a3e0-f752276936a8", + "TenantName": "Tenant-e8ba49fc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726388956", + "DeviceId": "8073df8f-4d22-4dbb-a34c-b53bc2e324fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239127531", + "DeviceId": "fd175ad1-244c-4c92-b7fb-6075e89a49a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864682798", + "DeviceId": "9f03c336-b890-43ca-bb94-542f597999f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_779775426", + "DeviceId": "40b13dfe-af42-4557-a731-5a086d46fee5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273742383", + "DeviceId": "b6bdd36f-5b50-435b-8520-2577b0d32c6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_176159885", + "DeviceId": "d8b23dec-202d-454c-a140-3d9016fbe6f2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cd44e6b4-3f75-4ded-8153-df549570a196", + "TenantName": "Tenant-cd44e6b4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856175625", + "DeviceId": "668f8fc7-f759-471b-814f-f7e314e732da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883925572", + "DeviceId": "8a8c9de5-f3b5-4a90-9660-7524a48a9a29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_554245550", + "DeviceId": "fe20bc15-a50b-4bb2-8dba-52bc2299f3ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820514616", + "DeviceId": "67c94300-9f5e-4338-bd24-e3a073d33834", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553333672", + "DeviceId": "a3c59095-4199-4489-883b-74e4b502d35d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_972874757", + "DeviceId": "c2503924-ce5b-4588-962f-c8da153d78b1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "858e1c77-7d2f-40bb-ba54-fab3bf65e314", + "TenantName": "Tenant-858e1c77" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958171595", + "DeviceId": "a7a75be7-8f4c-481f-89dc-556fc9fe9b2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445910573", + "DeviceId": "ee90f939-ad86-4872-b5c2-af220468d2db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275085868", + "DeviceId": "de87b67c-d9a3-4060-a422-f07d1ad85169", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_985182426", + "DeviceId": "4ebbe29f-713a-4ca9-872a-f2e0f858da44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973628471", + "DeviceId": "795486bb-4fa7-4717-b4d4-912dd2fc892f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_162447603", + "DeviceId": "39e26317-5c50-498a-9970-671a0bb715dc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2134cfa3-06d2-45a6-a402-3e81b6d60353", + "TenantName": "Tenant-2134cfa3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901999818", + "DeviceId": "7eb0186a-1618-4c1e-a4ee-9680dfc6a60d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570213107", + "DeviceId": "ce58a6ca-7ac5-4de5-97ca-adb432fe542c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482070138", + "DeviceId": "5626cadc-5a59-483e-be50-82c7c27e36ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_800740371", + "DeviceId": "37e13925-78c8-43ca-b57e-9c4e0b2de4c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198832006", + "DeviceId": "66e971c5-27af-4b7b-9006-053eee451feb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_191302948", + "DeviceId": "c71e8739-343c-4605-b962-104ede08ac24", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2998c22c-15ea-437d-93c7-075f855aa3a3", + "TenantName": "Tenant-2998c22c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372806300", + "DeviceId": "fc406b6d-15e5-4799-8a65-dead412d6626", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996310716", + "DeviceId": "06bbee18-8d29-4be7-a153-1d0ea62d035a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977096064", + "DeviceId": "6427fd10-a97a-4d10-9838-a5a72829094b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698648431", + "DeviceId": "92b3c02e-fb32-48dd-8485-786466135207", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547236273", + "DeviceId": "87b0f864-7079-4ad0-8365-1826f66f4a9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_392809901", + "DeviceId": "04fa833d-0803-4926-885c-d66ddce2485f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "19b39de3-1ba8-472c-8708-498d9b50056e", + "TenantName": "Tenant-19b39de3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606661896", + "DeviceId": "7560d997-9bce-4cc0-a99f-b7c5f9197753", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212678546", + "DeviceId": "848254e9-8f19-4f33-aba0-cee8917be8c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730407945", + "DeviceId": "1e31fb7c-e228-40b7-8b22-8a4e4e96bb64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933447436", + "DeviceId": "6891d33f-a815-4dcd-90dc-5c900b0894c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418765458", + "DeviceId": "42d6d2b9-fddf-41ba-9ee0-70f20196cf9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_871904665", + "DeviceId": "8427437a-0c15-4752-bb48-a824827c2da8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b1bff0b0-dc26-49c4-b39a-95c933f087e7", + "TenantName": "Tenant-b1bff0b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_344764357", + "DeviceId": "e04addab-976d-4347-aa65-581175116562", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_907527016", + "DeviceId": "1a7db20a-9cf7-4c8c-9b2b-4cbfa2825c70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789316750", + "DeviceId": "3b0859bf-a9a9-42e4-8dc0-818b5a320345", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557798545", + "DeviceId": "ae507e07-2bb4-47ec-83b0-fdba3c6b8a0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881133633", + "DeviceId": "4d8fee76-5fb2-409b-9760-870536fa9101", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_333216932", + "DeviceId": "097c753c-de00-4ae0-ba8c-769d92c2f63d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0803fdb5-259a-47ca-935c-86bf5db0b3ad", + "TenantName": "Tenant-0803fdb5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844213427", + "DeviceId": "777e22e2-4cea-4713-9eae-d5f5d8d6bc15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_604617317", + "DeviceId": "6eedc800-9485-4cb7-b0e2-0479f52c64f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_497232495", + "DeviceId": "515644f5-0b10-4e1f-a276-9aa65f97bcca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831178402", + "DeviceId": "cb387924-71f5-45c1-abe5-bf91b7ac4ae8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744697186", + "DeviceId": "4eb18bc9-8e93-4790-bc31-960bb2fe0e22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_650006371", + "DeviceId": "6501c69a-921a-40c2-b921-fea28ccb72cf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4c5fcd66-c7c5-4d43-bc4e-27eabb2e5281", + "TenantName": "Tenant-4c5fcd66" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348382976", + "DeviceId": "1eea74be-2ac0-46d7-a67a-7b22b97e5f38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518953275", + "DeviceId": "b385ed58-dfdd-4b30-9c6d-55c028eaa3b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303479625", + "DeviceId": "8619061e-1ac5-4053-a80b-943e993860c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673510633", + "DeviceId": "041291e1-a95d-4fe4-8fa9-120bab5b40b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_340270695", + "DeviceId": "b7884043-eacb-4713-9825-f09230c28434", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_781211071", + "DeviceId": "28888c24-4c90-44f3-acf5-ab2a34a21710", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ba1452ef-4495-47f6-b3d0-253b9ba09996", + "TenantName": "Tenant-ba1452ef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622282848", + "DeviceId": "7c7f7bab-abe1-46dd-8798-396ebb666892", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542450867", + "DeviceId": "24144062-b1c9-4229-9155-bd4616abd589", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352079525", + "DeviceId": "71dc7b96-d414-4645-863e-bde88168d914", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960725088", + "DeviceId": "60c2d310-8c41-44fe-b63c-fcb4a1cffba6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_184726039", + "DeviceId": "e19c0642-dda6-460e-9166-4ef27b51f840", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_913612540", + "DeviceId": "c2c1371c-7f83-4bca-a17b-5c7f2222d1a5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "07e05bbf-328a-4824-807d-78a667c37d63", + "TenantName": "Tenant-07e05bbf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596678853", + "DeviceId": "89eee941-16da-42b4-ae09-694c63b61eb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514692555", + "DeviceId": "555f5d63-821b-41b5-a727-ea351a65ecbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548007367", + "DeviceId": "905fa0f7-d41b-427e-a8b8-e9af061ee139", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114655461", + "DeviceId": "a8171a3e-7945-4458-aae1-2dc51870f950", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546644459", + "DeviceId": "7b110839-8fe9-4e05-88e9-f414702f2892", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_149481691", + "DeviceId": "9ba7dc07-1007-44d9-a7ad-ae69526a8238", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "27c528b0-36b5-487b-87a5-fd6852d34cde", + "TenantName": "Tenant-27c528b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794721041", + "DeviceId": "f0ebebf3-0ed0-4a84-8856-628a28a5ab8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610681130", + "DeviceId": "8a6fcf2e-937d-4563-9681-2cf8fc33afd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553156879", + "DeviceId": "cbf0c28a-a751-4344-9b5b-3c9ef941c1f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199671979", + "DeviceId": "27134dc6-c779-4e72-b14d-7b75eccbef71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599796138", + "DeviceId": "ee346342-b84c-4caa-b74f-54a7bdc8a409", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_611702151", + "DeviceId": "9e3e9baf-773e-4cfd-9125-fff747957e0f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "88057fe5-6ec9-4c83-9f3e-5850f6c801c6", + "TenantName": "Tenant-88057fe5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207286972", + "DeviceId": "db7a6bc5-7f9e-49bf-9f37-bc08a4044c6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_915902954", + "DeviceId": "bd3c71ef-e4ee-4bab-9b2c-2cb0e7096f64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_235086926", + "DeviceId": "887d5c45-27ad-4abd-a177-3a7dd02cf096", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485208948", + "DeviceId": "c8588ede-76e5-41b7-9d52-8218ee79cae3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596336296", + "DeviceId": "26f98d11-a539-4601-929c-8a0e7b0069dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_527988782", + "DeviceId": "3917cf6a-7a65-462c-8c60-cea30225253c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3a6aa585-f08f-4b5f-9b07-620b32f7ebd3", + "TenantName": "Tenant-3a6aa585" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438661142", + "DeviceId": "b4ae07ac-ecf4-45db-ad01-ca3914ea7d09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450217282", + "DeviceId": "2172e8e9-2bc3-416e-936b-e3bb309a6de9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550900842", + "DeviceId": "c8381f38-bb2b-4fed-9c88-809ce1b8dccc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_746196759", + "DeviceId": "1560be3a-f161-4023-9a53-ef076c5879a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370606825", + "DeviceId": "6b3d88c1-079c-4c42-8328-6c557421a0b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_832584901", + "DeviceId": "173a2e89-30b8-43c4-aa32-6a540780eb6b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "56e54be9-3534-49c8-9022-3c1f448b3a83", + "TenantName": "Tenant-56e54be9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675287623", + "DeviceId": "d14e8ac7-ddc3-467c-8eb5-201ddd5297fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876111218", + "DeviceId": "8149b10e-f2e2-4a91-859c-8694955e1b25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977618913", + "DeviceId": "e0aa775c-2fa2-4efd-b4b2-1656fc87c8b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_513075821", + "DeviceId": "5e424375-8753-4fdf-9d3f-201ebd0f6668", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255432519", + "DeviceId": "98ca9195-72d0-4697-a1ae-f3fb96275886", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_703813555", + "DeviceId": "4c858f1c-b6dd-4a62-bc01-cbd4be10b158", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b2370836-872d-4450-bf6d-a73df6731bfd", + "TenantName": "Tenant-b2370836" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_880812008", + "DeviceId": "ec111c77-6b65-4776-be8d-b2f4bb276f00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613701909", + "DeviceId": "0182896a-7d32-4093-9b23-636cb28152e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989783489", + "DeviceId": "5a63d165-27b5-44b0-aa29-10b190fe0c1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501221480", + "DeviceId": "588618ad-498a-4a60-aa69-4895726d3a25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_493099726", + "DeviceId": "8b46bf49-0ee3-45b0-845c-9e95b741c11d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_376014636", + "DeviceId": "c9a5d550-780d-4cf8-bd0e-5ead24f9d583", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3237708c-2e7c-4faa-84ce-039f9945d688", + "TenantName": "Tenant-3237708c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267534517", + "DeviceId": "b3a4b948-7ee8-4846-818a-8cb9a49ef8ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_795608135", + "DeviceId": "e6c6c61f-2499-4305-88a0-ea74b7db2276", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_406870975", + "DeviceId": "c24bc20a-52f4-4ef2-8409-6276561b6093", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964972700", + "DeviceId": "8589887d-ec68-4f50-9dab-4a06fc97de00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564691248", + "DeviceId": "cad1d2be-4f89-4e08-9f3b-5009313e63dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_718782123", + "DeviceId": "b08e213f-db4c-4f17-a8c3-0edbc31bd03b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8ca5d8f4-a910-41ef-9eba-5a60819d4d6c", + "TenantName": "Tenant-8ca5d8f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841089861", + "DeviceId": "50a17edb-5ba7-424d-9d4f-38069c5e121e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311928706", + "DeviceId": "27f90a37-44fd-413b-99d3-9a73b1ad9ca4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736601494", + "DeviceId": "f6842bad-9449-4563-8f42-43d6b88bd20b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301263387", + "DeviceId": "854c118a-92f8-4a39-a635-3d3b15ad7e14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_971217595", + "DeviceId": "0a2145f6-a9f2-400a-80f3-426fd370b6b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_291228902", + "DeviceId": "69f03635-c4a3-4f83-8f61-95aaf962720a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "69506a59-73f5-48cb-b401-0b2dc655a212", + "TenantName": "Tenant-69506a59" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246776184", + "DeviceId": "89ea07fc-ed42-4867-ba35-82deb2fd346e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_780649471", + "DeviceId": "985cea97-54f4-43c0-a640-fd54da8d07a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_448655972", + "DeviceId": "789f672b-4da3-4fee-ab5a-944cc18167d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_149357817", + "DeviceId": "677b77d1-68b0-4caa-8793-b4308bab4c09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654831616", + "DeviceId": "5b7f04a0-05ed-4770-ba08-5bd6b9ed55a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_867937890", + "DeviceId": "9a30184a-fb2c-47f5-85a5-a8ce0d28c069", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0bdfc781-d576-4281-b064-24c2bb96c943", + "TenantName": "Tenant-0bdfc781" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_183206446", + "DeviceId": "ffacc240-cc6c-4e17-8114-bd2f3fc0e4ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_359292836", + "DeviceId": "02a4aa54-9bba-485d-a920-7d21da932592", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_211082252", + "DeviceId": "ce23473b-2794-4a75-a612-bc1ceb516b6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249125065", + "DeviceId": "f01a2575-d50b-4e1d-9d3e-3985e6dc2dde", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597463035", + "DeviceId": "270dbf52-30f9-4eae-aa54-d5a7dcaae34f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_323260192", + "DeviceId": "439f17be-d577-47bc-97be-e31a3e188eff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96486b37-90e0-4c61-b7a9-38af6b5ada1c", + "TenantName": "Tenant-96486b37" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_385909142", + "DeviceId": "0a4120a0-7ce5-4b7c-8e3d-41c465ab8bf3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991537239", + "DeviceId": "a5c6c92a-acfc-4bb2-a538-78db68f5d489", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_641212407", + "DeviceId": "508fa2e9-6a92-49c5-af11-673430bf87e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146502984", + "DeviceId": "56a93cc1-dfd9-497e-b8be-6dff13dc4640", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531677759", + "DeviceId": "7727e05e-8af3-4237-bd95-fa604144bd93", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_756730652", + "DeviceId": "cf8269cb-a796-4239-bc14-13b3c169ee45", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e9f2f87c-bbea-4d17-8675-12c7e7482543", + "TenantName": "Tenant-e9f2f87c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302774231", + "DeviceId": "89794355-f2fb-40ba-bc3b-06e88296cbc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_664323760", + "DeviceId": "3bab9c91-aa08-4aa7-88d7-68ede53c13df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812787853", + "DeviceId": "5dc59e0d-d920-4b2f-9661-b73743af6bd3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250763449", + "DeviceId": "6a84a5e7-aebc-49e9-876a-fed7adf771f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577463139", + "DeviceId": "e7afeecf-6ffe-43a4-be4b-b9f9d516d016", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_226600046", + "DeviceId": "45c745a9-634c-48d2-8746-a221532c6565", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "30370808-e495-44f3-974f-5daf30081567", + "TenantName": "Tenant-30370808" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781503090", + "DeviceId": "dab3ecbb-acb6-428c-9cb0-2287af481c45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304834017", + "DeviceId": "d26d4250-0da3-4303-b589-4d712a32cfa5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_630219563", + "DeviceId": "0281a31a-fa44-4b56-9b02-40fa0dc7a47a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176190389", + "DeviceId": "886d9f39-16af-4f3d-b638-8ae4f4ec0634", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_589769921", + "DeviceId": "13c2c47a-0a28-4137-a78e-f2702f4bcb6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_310440318", + "DeviceId": "9f30bfd3-8694-410c-a49b-f98fa6bd2c5b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a0dbb8d6-71dd-4b55-871e-327a7bb02ddd", + "TenantName": "Tenant-a0dbb8d6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234966235", + "DeviceId": "c85cc42f-dd8d-458f-8928-3ae4dc8994b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218201971", + "DeviceId": "f8dbacbc-de65-4935-b034-41393b9f803e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831693035", + "DeviceId": "0d666061-6df6-43b0-8c4e-7a6ddde40d81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114197201", + "DeviceId": "dc421c39-bfc3-48a6-b872-094740299338", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487059252", + "DeviceId": "f7f0ecf8-26f8-4456-89c6-e8090f6a6b9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_301746170", + "DeviceId": "996e005c-1de7-4e7f-a52f-5f00d31e6bf3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "876e8def-9b96-416e-b704-0e48acf2419f", + "TenantName": "Tenant-876e8def" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521294969", + "DeviceId": "3a577078-87cd-4b71-b896-cca445894df2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_512211463", + "DeviceId": "cda7eb00-db7a-417e-9c7b-b774b6b54c6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_299962105", + "DeviceId": "d34cecfb-a7be-495a-9c18-20085a0001be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_603620295", + "DeviceId": "f8cf62e8-d5b6-4d5b-8bec-f76107a3a49b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718864715", + "DeviceId": "26e3373b-21e5-4cfd-9f54-535a804a12d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_153632254", + "DeviceId": "4496184f-7d0c-4a14-b1c3-ea59e94bd68e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a48106ef-6abb-4123-a15d-aeb8d567dec9", + "TenantName": "Tenant-a48106ef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_181001583", + "DeviceId": "9b165160-493a-49dd-b825-67a85ce78a3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_614860416", + "DeviceId": "a5a9340c-de85-429f-992c-2eb9b5e6ab84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938911617", + "DeviceId": "4c1ec878-c782-48c8-91e1-13adbe398e07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341574189", + "DeviceId": "f4271111-2f4a-4b64-8c6c-4c82f889e11c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476135018", + "DeviceId": "e2798699-bc55-489d-bbfb-c13d40713baf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_937890297", + "DeviceId": "a230793e-9f67-4e10-a6cd-f59526f5fce3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "756d962d-25ad-45d2-a38d-1eb634aec863", + "TenantName": "Tenant-756d962d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_607599277", + "DeviceId": "0a5ab6ac-c95b-4bed-a521-50bd195653f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283633334", + "DeviceId": "0d31d658-67d8-4b83-97be-8d129a45b096", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_293410919", + "DeviceId": "db2d5574-7ef7-48b7-962b-3e8e97f21cb7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_680504781", + "DeviceId": "2bf5d827-01b7-4d88-a1ea-fe1d7770e6e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495384295", + "DeviceId": "acf75eab-7616-4f5a-a0dd-52ab8507d751", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_854005960", + "DeviceId": "83514544-a525-4a99-9a62-e3fb5f1c2666", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "430f5388-07ae-423f-98f9-4c7b1b4905e4", + "TenantName": "Tenant-430f5388" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107660074", + "DeviceId": "6bd9bea8-c453-4f1e-a46f-626e2f52ed40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834435835", + "DeviceId": "d2b2dadf-7b41-4bfb-ab8d-1193546a7364", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_378226519", + "DeviceId": "dcc732b1-22aa-4917-8d1b-da369816135b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697645164", + "DeviceId": "6850b0b2-7073-4de6-9268-b56d7bf11132", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755948038", + "DeviceId": "ef80e7ad-523b-4a9a-979b-17a85d910292", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_402481358", + "DeviceId": "ce80f23f-268e-4353-a31f-b07c5749f967", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cae3b2c3-43c2-4be0-b404-3b494605c1b6", + "TenantName": "Tenant-cae3b2c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663134066", + "DeviceId": "14a071f3-b59f-4f32-a4f5-17bac0c3b247", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_453472908", + "DeviceId": "d4eb6578-6aec-4173-a5d4-2e49a8d6b633", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752814046", + "DeviceId": "1d09597b-3f71-4c3d-a162-a12325394542", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812457908", + "DeviceId": "60a16d5b-32c6-4b38-8898-969f61945cfc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410096169", + "DeviceId": "f5eb539a-583e-4859-b4d1-3e632f150cc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_807469164", + "DeviceId": "c54e54ad-1a3b-4de9-9db4-69005646618a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d828eef6-cb6b-4ea9-bf53-34d710634d3a", + "TenantName": "Tenant-d828eef6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676841845", + "DeviceId": "ff3e1a23-36ca-4fdb-b001-529a2f80cc08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_449623246", + "DeviceId": "7b7fb6a3-669f-4f22-9344-6352adfa66e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_247588047", + "DeviceId": "4b3192b6-80e6-4d65-9f66-c2dcd8c5368d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606213501", + "DeviceId": "33a9a07d-a9e6-4004-9bda-59684cbadb49", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534192884", + "DeviceId": "316f1da5-715c-422b-a3f7-85738c29642f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572554801", + "DeviceId": "40d9575a-4e19-4f2f-849c-103489bc0fbd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e438988b-caa2-4c93-88e9-2fc1aae8dda9", + "TenantName": "Tenant-e438988b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283269387", + "DeviceId": "d8de0f05-e794-4f24-bf86-bf43c2e79929", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534402860", + "DeviceId": "96d82731-38a6-4147-b90b-54f45591098c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152415330", + "DeviceId": "e362973e-984d-421d-bf1d-424c4c1d7d81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425423468", + "DeviceId": "b867bb80-c6d6-4be4-ba3a-ff6d554cb5b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590780251", + "DeviceId": "5136bd4a-6d53-4512-8713-3ee394deab8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_648190581", + "DeviceId": "2da8546e-5c80-4327-bf06-dc62b5da411a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0b237d53-888d-43c7-bfe4-1e72f7be4253", + "TenantName": "Tenant-0b237d53" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924238746", + "DeviceId": "73be3a48-fa62-4829-99f7-92ed1eea3bc9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441412446", + "DeviceId": "ba9f44ea-cc11-4d31-b716-78e1d9158220", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982830897", + "DeviceId": "291df57a-86a0-4489-ac70-911e0f96f04a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729328964", + "DeviceId": "f6f60b3c-3496-403b-ba1b-a8d9da7f03e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599110917", + "DeviceId": "2c07d680-26bc-4b26-8589-c871f6b3387d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_563365197", + "DeviceId": "4ee0845d-0f79-41af-9398-95daec8e7092", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9468c3f5-fb0c-4060-a169-f75fe1d6e33f", + "TenantName": "Tenant-9468c3f5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401030608", + "DeviceId": "9610d69a-7ef9-4a9c-8c98-2eca08f531cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495772065", + "DeviceId": "2c07aa44-12ff-455b-9a65-bdb523eb2a9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410826736", + "DeviceId": "4fb6d5b5-fb95-45af-8656-a3384a8b1df3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730205178", + "DeviceId": "ba3a325a-9f34-4d82-8ddf-a4e9c4bef4c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_890231046", + "DeviceId": "e30e02c5-8c09-4891-9d76-cedff5bac484", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_346664249", + "DeviceId": "c591f3b9-4a12-4388-a6d9-41bd741956e2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d45a42d2-d253-4b20-860d-88d6315effd3", + "TenantName": "Tenant-d45a42d2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531016234", + "DeviceId": "376f68fd-5796-4f48-b34e-bc255555704d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283630308", + "DeviceId": "b68afa80-ccf2-473d-8ecb-bf254d24fd66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144879900", + "DeviceId": "7fd953fc-547e-43d3-b306-e4fe5249d78d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769548219", + "DeviceId": "b018fad9-4fa4-4085-90eb-48bd82566916", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_473253214", + "DeviceId": "536a65b8-d9be-4352-ae66-53aba6a5c8b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_501850291", + "DeviceId": "00155248-f455-4f51-96ec-746768bae255", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7686c307-1a99-440f-a58c-39e1421ee498", + "TenantName": "Tenant-7686c307" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_523876567", + "DeviceId": "cc65d1da-1f51-4ef5-a390-b7a727ea8dc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466005525", + "DeviceId": "7a8fd13d-938a-44c5-b117-a267ca52eee2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738065570", + "DeviceId": "fe47edb3-1765-4db4-8f03-e4a77926cd0a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_398171076", + "DeviceId": "9a0bb08d-ade0-43dd-b5bd-3e3a978c9af7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853524597", + "DeviceId": "f771d41a-1e12-4743-a1a9-a0c63eb4c23a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_847364677", + "DeviceId": "f0b11c75-06a6-436d-9e40-6417bf50a1f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "027270d4-00ce-42c0-b759-153fa2e5d344", + "TenantName": "Tenant-027270d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379661638", + "DeviceId": "4e631538-005a-428d-ba10-cc58e1ee5103", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373290276", + "DeviceId": "cf8715c1-6951-44dd-8be6-ace2ab2e7be1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492955890", + "DeviceId": "47187317-15e1-4aa2-9a3c-08fd1ba181bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153617549", + "DeviceId": "0997f5b1-f087-42e3-9c20-8c52f6c00077", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703926867", + "DeviceId": "5ea76ca1-04d4-4658-b6d7-76607e67d329", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_161521218", + "DeviceId": "802a2321-0723-4253-b227-863d43811361", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "77d169e7-3b65-4d5f-9353-5a3d0e7dc7c9", + "TenantName": "Tenant-77d169e7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424677907", + "DeviceId": "236c8302-6f37-41cf-8372-2b54461ba01a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_282953774", + "DeviceId": "3b34ac0c-7727-4bae-b39a-0852fbd66aa2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495252387", + "DeviceId": "ffbc6bf2-10b8-482f-b5ec-4b40de411b97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432157336", + "DeviceId": "179b7295-856a-459c-a49a-b0e2d46b964f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_855939173", + "DeviceId": "2ababe16-2912-4f3e-bb92-c1412af67e70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_362979628", + "DeviceId": "ba6603c2-7817-4743-9c25-e586aee930b4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d235ac6-a3e3-4b20-ac13-0a95683c2fea", + "TenantName": "Tenant-2d235ac6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_911976859", + "DeviceId": "46f95a42-6b2b-440d-b972-6e83365c8491", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_729818505", + "DeviceId": "19bed81d-cd60-4247-abac-c6c355586c3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598607981", + "DeviceId": "75db4393-b2fa-4fac-b60e-1ad807c3f33d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853360135", + "DeviceId": "3dd82936-06a5-49d8-9b6e-c489004cea04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126786848", + "DeviceId": "4f7c85bc-69d3-42eb-888f-c98484d4c10e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_130068537", + "DeviceId": "71f6f397-8155-438f-9233-214670a1d4af", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d7557155-23eb-4a6e-b6ce-a344b7d73e5d", + "TenantName": "Tenant-d7557155" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334081929", + "DeviceId": "a8d80b40-f238-4498-a0b0-faa822eb42db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_434227296", + "DeviceId": "0ebb523d-6705-4990-a07b-851d0e4a9be6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475783923", + "DeviceId": "17ade0e6-0103-4b36-b6b9-a16978929b85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_839176892", + "DeviceId": "f921fc9e-3b54-41e8-bf02-7eff40cf04fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135122832", + "DeviceId": "227dc0c9-1b65-4217-aaba-23bd8df4aaf8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_652799286", + "DeviceId": "7e1869e6-9351-454e-9498-6ecb97900853", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97fb1ec6-2dea-41c0-b30d-36601412a40f", + "TenantName": "Tenant-97fb1ec6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334700971", + "DeviceId": "7f2cf15c-5979-484f-a130-68bd4d1b1c9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989620355", + "DeviceId": "f5423d48-9d0c-4f59-aa7d-fba443d8db0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825835343", + "DeviceId": "b1a9e6a4-1c18-4f71-a4f5-87a88756fe92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802510616", + "DeviceId": "4fe0487e-25ee-4324-9382-9439fc91281d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_340606616", + "DeviceId": "0a04555e-5ecc-40f2-bd5c-8b39fd44e281", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_887948906", + "DeviceId": "76b52878-c1ff-4c08-93ed-8807ae1dc3ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d2310797-a8c5-4ca1-8dc4-441798c16913", + "TenantName": "Tenant-d2310797" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236274259", + "DeviceId": "efa52ce0-cf02-4ea9-ab11-3141dfb22e89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270916678", + "DeviceId": "d4b4d2a4-88c2-489a-addb-67523ca5c229", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_496148999", + "DeviceId": "7d0a65a5-5e11-4f84-9d98-e72c074515d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170307545", + "DeviceId": "f1fbbf3d-a11b-4848-b896-a9d9c1d77e4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_664079193", + "DeviceId": "6a4a5a89-318d-4e1a-b824-9f59e4e5f1dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_462440385", + "DeviceId": "7f61702e-b2ca-4b3e-b06b-4bbb762d9311", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f2385a5c-5ba1-4cca-90c2-02c464f01e73", + "TenantName": "Tenant-f2385a5c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_448888610", + "DeviceId": "bf160379-3297-429b-8378-18cd9c1cc19d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163088056", + "DeviceId": "f5e6c196-d6c6-45dc-a098-14ae413d3525", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_915536580", + "DeviceId": "14581719-e8d3-411d-aeac-8b5980bdbe7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_293361657", + "DeviceId": "40363325-e5c5-4dd3-81c9-056f2c00b80d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973499359", + "DeviceId": "e49cea1f-9c3c-4fb2-a260-0fef3cff7e88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_208997348", + "DeviceId": "00700f50-9fb5-4f0f-a7d7-ab2cdf3c740a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "019d043f-b55e-4991-bd4b-eb9307f57c2e", + "TenantName": "Tenant-019d043f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969134646", + "DeviceId": "b2322b87-e8f5-472b-9a59-ca9fc7509c39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705821271", + "DeviceId": "674de79b-b208-4baf-a597-b21bd7121170", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605515402", + "DeviceId": "bb27626b-4012-4ccd-b295-8ee8bc256f8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790871563", + "DeviceId": "baa1c653-3b49-4137-8b7c-356b95a0db9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676720202", + "DeviceId": "8ea20cec-f036-4219-8896-fa31a3c6a30b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_662672603", + "DeviceId": "ad859466-d0da-4b2e-9b79-027edd0297ab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af95afa0-96cc-47e8-9c19-7df259bcf34b", + "TenantName": "Tenant-af95afa0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668754168", + "DeviceId": "7722b710-bb61-4435-b58e-bc2be224ba8d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531218688", + "DeviceId": "93e4a934-7e7e-4fbb-8b83-e067d2dd8ab2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909358872", + "DeviceId": "8e6ce5fd-dbb1-4ed6-8734-2300f0cd3680", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625451236", + "DeviceId": "5f016f4a-2ea5-4a8c-89d8-a71395215894", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747586200", + "DeviceId": "8683fa25-0612-4d16-91fb-2b12b5bdb4af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_660159328", + "DeviceId": "f02da7e4-b823-41e4-a566-5314f2f62d48", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c0bfe9ba-c505-4a50-b07e-c703133bd031", + "TenantName": "Tenant-c0bfe9ba" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151684871", + "DeviceId": "0a94ac23-53cc-4e26-a85a-8c95e67bd3c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608345924", + "DeviceId": "e08d4777-ca10-405f-8dee-3a1f84f11bb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_489325469", + "DeviceId": "76525571-b506-4115-b9cf-17307d424e90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550819173", + "DeviceId": "fd0fe8a7-9ec4-4511-9f11-042071096d38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637427754", + "DeviceId": "4b992c0f-7bb7-4e16-9932-4fda09341be1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_939948415", + "DeviceId": "842a542f-8daa-4a27-896c-2801d9d348c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a925be4f-81ab-4c94-9cda-88d1f34863c8", + "TenantName": "Tenant-a925be4f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610538346", + "DeviceId": "3bde9da7-4299-4e89-8a71-24458b6086eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422281929", + "DeviceId": "f0ac3378-a668-4ce1-aba1-925672907bfa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320942882", + "DeviceId": "f4ccab76-e26e-47cc-b45d-aa43408b0b62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486373625", + "DeviceId": "8a6ecde2-485b-46b1-86f4-2d462bcba0b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_101774163", + "DeviceId": "fb0f41c5-9f59-4067-8dcb-c0660a322671", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_249986328", + "DeviceId": "c8028abf-40af-4536-8070-6a29dfec8160", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "671a3e42-58a6-4d06-a8c7-84d607179d21", + "TenantName": "Tenant-671a3e42" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_269320022", + "DeviceId": "3bf2dd3d-ef28-4bc4-b0fd-86e25a7b6b9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651330031", + "DeviceId": "9a899cb2-2fc4-4f9d-b854-fa7209f8dd63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_378061966", + "DeviceId": "d59bf6db-f8ff-4e3c-8334-2d3caee00f76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763420777", + "DeviceId": "4e819b7c-4aed-444c-af43-f799bae5454e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_240628074", + "DeviceId": "28c48c1d-f84e-46e0-8115-391b7a452208", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_938231935", + "DeviceId": "cc1d07ed-8976-4487-bbac-07d7f9c981d1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0cfc96e5-31ed-43ed-8c90-f6de28311457", + "TenantName": "Tenant-0cfc96e5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678391805", + "DeviceId": "bcfbc484-f169-45bc-880a-09e81aa4d131", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249644196", + "DeviceId": "727aabd3-f15a-41a4-bee2-f48266f5e1d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_918721266", + "DeviceId": "64a4ed8f-a326-4e2c-99f3-007ff9980644", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491314972", + "DeviceId": "87c7ffb3-8a95-4da2-9842-7940c3c242e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187652666", + "DeviceId": "c2817a22-4fe4-4bc0-a882-2983e3e7583b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_945284593", + "DeviceId": "2b91fc05-d379-4d69-aa16-a30ec29facd1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ec2bccd0-6519-4fab-b2af-849b3fc70252", + "TenantName": "Tenant-ec2bccd0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271948235", + "DeviceId": "51450697-b9f4-4a1d-b548-977b07e98ee9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591965603", + "DeviceId": "e4308cd4-ebac-4623-9198-4b32b82db5eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742378793", + "DeviceId": "4f542991-bc3d-4196-9272-b1dfc07206fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_209643516", + "DeviceId": "8838afa5-59f3-46a7-8dfb-00308437f2e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_593715304", + "DeviceId": "3bf8420a-3a02-45e8-bce2-f49d4ebdff11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_514186852", + "DeviceId": "66273ed9-a859-42ea-9791-552ac91cc1b4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "463d8745-0f7f-48d4-8f99-e821a7d22022", + "TenantName": "Tenant-463d8745" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192262075", + "DeviceId": "d56be3c6-c215-4997-b634-e44a5853dc7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_161611765", + "DeviceId": "a73ad703-b634-4cc5-813a-1535c87fb67e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_907627200", + "DeviceId": "05d38c41-4436-4363-96bf-0599934228d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794680128", + "DeviceId": "3cdbfb78-614f-4e73-b183-c86864bdf3a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_998282495", + "DeviceId": "185e2ce9-670c-487f-bc15-12804330234f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_490332175", + "DeviceId": "2813fb10-cae6-47be-b59a-2e1b7b25472f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af7f2d2d-c050-4b55-8d10-0782a3eb992f", + "TenantName": "Tenant-af7f2d2d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_965415202", + "DeviceId": "65f35ec4-bf06-49a1-bfd3-8970a2672417", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483628684", + "DeviceId": "c9b45157-23ae-4668-89d7-f16f04ac11e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601418635", + "DeviceId": "a34acadd-446d-4cfe-99f4-54a83f2f52cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254764073", + "DeviceId": "1905df18-c900-4812-9c85-99ae84ec9067", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_285076360", + "DeviceId": "0cd24c41-e8b1-4af2-9b65-3750c555a861", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_315822678", + "DeviceId": "9696962c-085a-403a-8de7-d868ec3f91bb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ecdfd2cb-23e8-4a64-aed4-681a64cf29bf", + "TenantName": "Tenant-ecdfd2cb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599419692", + "DeviceId": "be214e8d-ba2a-4d09-ac3a-35296c6fad40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909206762", + "DeviceId": "81948845-73c8-4ee5-b36a-178fdf9f5ff3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772098518", + "DeviceId": "25e7119a-00b9-421f-8bdd-024d0025d97f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700251060", + "DeviceId": "fa2e752f-c70f-480c-b94a-712a30b0ee15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_179460264", + "DeviceId": "1710826a-a0eb-4a49-bdc5-7dc70d783b96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727107522", + "DeviceId": "36041f88-96c7-4056-b9b7-bd4b28f96955", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c2b14d4d-437e-46fe-a3e1-1a13f2e0cd8b", + "TenantName": "Tenant-c2b14d4d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891742521", + "DeviceId": "cf6ee331-e3d6-4096-8d37-c5d5736a1126", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542555628", + "DeviceId": "ad0bd34c-90d9-497d-af3f-1b15b2bb59f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413353672", + "DeviceId": "01504374-f0ff-4381-9464-4a0e24ce3dd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400662217", + "DeviceId": "04cd118f-e797-49eb-bc3b-7ce341892702", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720005221", + "DeviceId": "877178d6-d81d-48ca-bbd6-152108c60331", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_716152407", + "DeviceId": "02af5cd6-b15b-4928-8976-cb304b4ad532", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "166393d3-95b0-4227-9807-899d99bded06", + "TenantName": "Tenant-166393d3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547784948", + "DeviceId": "b54bcdaa-5c6f-4b06-be90-cb70b97bb651", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147520986", + "DeviceId": "bb146b1b-8b7d-42a5-a317-71470d3d13b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694708506", + "DeviceId": "fa152bb9-68ee-4a33-b66d-18d36e93e995", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_807491432", + "DeviceId": "7cf1b9cc-1b04-4a55-b612-960b6b600727", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246195065", + "DeviceId": "8db21593-0c3d-44c9-8877-10985123a49b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_583390539", + "DeviceId": "59693c63-10bb-4808-92c2-149914149f01", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c45e42e-0cb3-4e16-9fa8-000a9b6545ff", + "TenantName": "Tenant-1c45e42e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234543652", + "DeviceId": "d0376933-11d6-44f8-b388-22663b69475e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_594319620", + "DeviceId": "ab314130-e525-4fd7-a677-b3a694cb8167", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490358723", + "DeviceId": "10ba15ac-fa85-4dfc-8d89-da1b2fcc0133", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244516208", + "DeviceId": "f5b504a2-dd01-4fa7-9bdf-d8e496f6a663", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161689034", + "DeviceId": "0d9fcfba-b038-402d-bdd7-6e06466062ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_807280167", + "DeviceId": "ab1a206e-544d-4bc2-8afe-db84fd2ab6e7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "73c167af-53d5-408d-a1ba-1b7edd80233c", + "TenantName": "Tenant-73c167af" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377408032", + "DeviceId": "f2c8a788-e038-4814-8975-d140d7c8c37f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553202113", + "DeviceId": "61c45848-3728-4a39-8564-23523ef0532a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419255360", + "DeviceId": "3d1b729e-2f1c-43ee-8ff1-83ead56007e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721123088", + "DeviceId": "5471999b-3df3-4993-9f00-5147932edc85", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374753960", + "DeviceId": "f2d85d82-f950-4c44-834a-102e49fa2325", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_685731344", + "DeviceId": "bfc5d40c-98af-4395-9c70-33a9095d5904", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e2d75851-cbbf-43cc-aa55-2b87cfe8e829", + "TenantName": "Tenant-e2d75851" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261298272", + "DeviceId": "4e1181d3-b96a-471e-982c-3221085fed48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125131353", + "DeviceId": "4fdd3b4d-3c74-4ffe-8fd6-5cf894a39228", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867421792", + "DeviceId": "fdab2fd5-79bd-4f6b-9eb9-bded409b47a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348078377", + "DeviceId": "c579ca0e-65e2-4229-b0b0-0084ecf0315b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522354796", + "DeviceId": "454692e6-7e45-477f-896b-7e86e8618902", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_200125830", + "DeviceId": "157ca656-d544-43e4-b857-5093c4ebc75a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0c3113f8-3692-4b05-bc82-7aae1ea12936", + "TenantName": "Tenant-0c3113f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_719287520", + "DeviceId": "9725671f-ebbc-43d1-86aa-6866944bb78d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571692517", + "DeviceId": "c455e7b4-662d-4562-b344-29e0129aa2c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_172778718", + "DeviceId": "a7c0dfb0-3c63-4fbe-a785-bc790d3e69db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_620877240", + "DeviceId": "6fcfdd30-5dd4-41a6-b8c4-a86548e0ef9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542144813", + "DeviceId": "96cc94d9-98d7-4850-b5fd-04282c267d4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_570632261", + "DeviceId": "4de46137-fab5-4f5f-b7b4-84d0a60060fc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "23e36931-1fa0-4db6-ba9f-49438c1f4271", + "TenantName": "Tenant-23e36931" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_146477043", + "DeviceId": "6569659f-d112-4e0b-8e29-fa25d5494bc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329520210", + "DeviceId": "d40fb4aa-b623-47cf-9e16-59f45472f141", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392916244", + "DeviceId": "f1134085-1956-4e14-82b4-67166195b265", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534462295", + "DeviceId": "c325ec25-67f0-4ef0-b36b-bca191227ddd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784142350", + "DeviceId": "7b993272-7a42-4856-9025-22e8d1b4776a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_396420396", + "DeviceId": "9f1c1a36-65f4-4bb3-94f2-1cef0da9da33", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "41eda676-40b3-4690-8de6-2bfe6bae3da5", + "TenantName": "Tenant-41eda676" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_480275399", + "DeviceId": "f72b6f6c-ea30-4cb6-b3d7-6cc50335f5e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155998808", + "DeviceId": "c641e349-1761-4a84-adfb-644907ef5f92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650265513", + "DeviceId": "936648ca-359b-4e70-a36c-bf01cf66d825", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_523573814", + "DeviceId": "7ae061c6-b141-461b-b172-58c10cded5f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_528170865", + "DeviceId": "2750e3e5-a363-43c4-a75f-d55438b7a9c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_784536697", + "DeviceId": "4961112e-848c-46fa-b66b-560491aee654", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab8be6e8-7644-4f24-884e-1237dae041a6", + "TenantName": "Tenant-ab8be6e8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_707171315", + "DeviceId": "d84a5a40-f9fd-418a-a795-a0b102be7640", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786093660", + "DeviceId": "95ac77d4-fc95-42a2-80f1-fdaa91304eb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484730996", + "DeviceId": "8f8c7015-bcb9-42f4-aa69-b89cc42253c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931393797", + "DeviceId": "9bbc963d-3903-4208-92ee-c54d39b1291d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515096507", + "DeviceId": "ce5085f0-e29c-417e-bfb3-d663d818c54b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_251935137", + "DeviceId": "ff726981-bf89-4c3b-be28-efa98c020a63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "581cb38e-0ee3-4ed2-8def-fb3e7b5e0cc8", + "TenantName": "Tenant-581cb38e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_686005321", + "DeviceId": "a5cd32e8-691c-4d26-beb5-e7399ec5c022", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_729807220", + "DeviceId": "8080e606-610b-4273-8bf3-b35c63d726db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123194620", + "DeviceId": "6d070eec-2587-4c90-8f4b-dec3e5957e29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475088623", + "DeviceId": "437b9756-a761-4fca-85a2-8e5b7bbbc5e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_106059591", + "DeviceId": "29a4185c-7a04-405e-bb67-e25f78e6f032", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_942562312", + "DeviceId": "abe58a05-4bb0-4f91-953d-5837df6eedc6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "30727463-1b0c-42ea-b17f-4045e5474eb3", + "TenantName": "Tenant-30727463" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600347838", + "DeviceId": "bfb9994f-52f7-42d6-8714-4f25413a87ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999260267", + "DeviceId": "bd48bf57-8afe-4395-9cbd-4d9a1502fe23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108973357", + "DeviceId": "d97ac108-f2aa-4908-8704-6e1199b45d99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467087975", + "DeviceId": "9f448c0a-8e60-406c-944c-b9129674c582", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244376008", + "DeviceId": "01c52d53-86b4-4e1f-b745-d99c0a515d71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_639564768", + "DeviceId": "340801d9-f000-4bf5-a6a4-8ee6cb3e3679", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf83811b-1c87-4666-a263-54951a433325", + "TenantName": "Tenant-cf83811b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876050101", + "DeviceId": "c8eebeb6-7842-4184-9453-1ca400f862ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987373011", + "DeviceId": "0d3c27b7-be1b-4777-8ae4-3f539c8e862f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504859291", + "DeviceId": "40a3c732-7dea-4442-b173-c5dcbaa2f0fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766746680", + "DeviceId": "801c5a66-9a65-41a9-8c5c-d58b52a80eaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181733177", + "DeviceId": "88a3321f-927e-4215-9a97-0809d827988d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_118499310", + "DeviceId": "a049bf79-5d01-4755-8fa0-b8a89d03de4c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e73766f4-e4b7-4525-9928-e5c4e73ad556", + "TenantName": "Tenant-e73766f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592238026", + "DeviceId": "a499ac3f-d321-45cf-9e7b-2aed53816dd1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703193829", + "DeviceId": "4f45bbbe-3501-4ab6-ba47-442fba201976", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263280059", + "DeviceId": "29864c39-33a4-4888-8a9d-91588124efa7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660343925", + "DeviceId": "d5272034-1d81-429e-8cb0-87234a9ab4f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_632319156", + "DeviceId": "94eb686f-7cc6-4cd4-810e-9e91d88a2b2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_651535961", + "DeviceId": "146a207b-97b3-4542-9a98-0e79fa671df7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "03dd2c6f-8bcb-4fde-9c4f-f6d6c74761de", + "TenantName": "Tenant-03dd2c6f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107539451", + "DeviceId": "3529e5db-6f24-4a8b-a5a8-acc4e2db43df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_649591082", + "DeviceId": "3ee8c90e-df2a-4dbe-976b-69a8c3bf50fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171650964", + "DeviceId": "4ba83960-a56d-4bc4-8350-8aa6ae449d4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611831102", + "DeviceId": "0e539079-c149-4630-adcb-3fa2e5add8a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310066869", + "DeviceId": "6be425ae-6e8f-4320-bb7f-0db9bbef47cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_771301841", + "DeviceId": "e10b6e6c-6cba-42e4-b638-2d15c144bcb7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3765fbae-d7d2-44cb-9a25-7873b5122b65", + "TenantName": "Tenant-3765fbae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_733747746", + "DeviceId": "cd368fdd-c1b3-48e6-81f5-34b91b720876", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869952218", + "DeviceId": "9ba002e1-9c22-46b1-91fb-337ec327532b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_465497958", + "DeviceId": "9d6869c4-3c16-4129-b6c8-077078098dfa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384155869", + "DeviceId": "149e1604-5615-42c2-81a2-6ee165c69178", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430937258", + "DeviceId": "0c74c434-7269-4ea1-8fc7-7b4f1bbd0836", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_570209473", + "DeviceId": "56e55007-7d5d-466b-ae9c-d77f8d07c023", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "32628eed-0b23-49fc-ba32-834ba493fd1a", + "TenantName": "Tenant-32628eed" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_118119536", + "DeviceId": "4f815ddc-b0e3-4bb4-9944-d3cd709a6ef3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_672636523", + "DeviceId": "7e9aff80-86a1-4252-bfc3-ddf8769c568a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330693117", + "DeviceId": "c18e4e2d-059f-47c1-86d4-e439f304851c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251285822", + "DeviceId": "24e97114-a1a1-4ec1-8805-fb59529af324", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155620021", + "DeviceId": "164bc98b-8072-41d2-98b2-62b1594e938b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_959152450", + "DeviceId": "75a6eb54-2082-40b9-8c19-4dab6f886d70", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "867e1967-ffa5-476e-bb8c-098bd611aa83", + "TenantName": "Tenant-867e1967" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345309109", + "DeviceId": "68e0cb59-b82d-4649-a279-4f6660fe4585", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_378530011", + "DeviceId": "aceb25ee-ab3a-45ad-bc15-a15d22553860", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409034422", + "DeviceId": "c2e0c2b5-1599-4762-beec-05797eee9e23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636703571", + "DeviceId": "da75e1a5-5700-4c81-8ea3-4df582c269e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251732882", + "DeviceId": "3b4bc49d-bef6-46ec-92a4-53515c440310", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_889414323", + "DeviceId": "de95a295-46e6-49ab-a42b-a01c9852377d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "57499473-9f34-4dee-99c8-4404d762e922", + "TenantName": "Tenant-57499473" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997129729", + "DeviceId": "85309d55-1c06-4a7d-9fe9-dba784f4f7b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309167426", + "DeviceId": "90a13820-f647-4e23-b2a7-f161c5d93b9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511260460", + "DeviceId": "57ee3949-3f1a-4808-8e6e-b7d6964aa989", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643436170", + "DeviceId": "bb3ec1d5-d193-47e4-85dd-51975c9cbe8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963823566", + "DeviceId": "7dd8e6e4-9d51-4c00-b735-612430300c29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_123545221", + "DeviceId": "c4312248-723e-4e12-84c2-21e30febe612", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fb7feb63-ee91-48ca-be00-b08bc12ad253", + "TenantName": "Tenant-fb7feb63" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_389497365", + "DeviceId": "3a30b7de-4526-4e9e-a654-b69b5b803f05", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149860829", + "DeviceId": "92c3860f-7df3-40ab-8824-4ede8f8ebb86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_886144657", + "DeviceId": "e4667070-477e-4e7b-b672-0011ec16f152", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176888764", + "DeviceId": "5cbd53be-74d0-4cb7-b066-8111ac397d21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_560986447", + "DeviceId": "ecadc674-bbac-4850-a0c9-2acce55ee751", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_768282379", + "DeviceId": "d25c7178-95d3-4a6e-9e66-b45c27306362", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3b2eeff2-b8c8-455a-89a3-fd5572d2fc83", + "TenantName": "Tenant-3b2eeff2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688043528", + "DeviceId": "be82e39e-5694-4d6b-9406-40892568eb96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_573694154", + "DeviceId": "347619e3-37b4-49f4-80de-bf91d98c41af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_581741815", + "DeviceId": "7afc42f7-8096-4bf9-8ecb-2655e112a3cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_272454317", + "DeviceId": "d4cc3d14-2c49-4070-8fda-cb654c4c3a6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381702906", + "DeviceId": "9274ea64-9f79-40c0-a1e2-d07a11add232", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_203524263", + "DeviceId": "c12f2fda-ea57-4649-9512-c9ea9b82950a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "43680941-a08c-4b7b-bfc2-b92c09d9f6a3", + "TenantName": "Tenant-43680941" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787957689", + "DeviceId": "d291c39d-c6f4-40dd-9760-3367b4f71a0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487378778", + "DeviceId": "b433e370-8261-4798-b8f9-ac4ebea71b57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317906033", + "DeviceId": "938206f0-d907-4234-952a-47b62cee070a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_191293647", + "DeviceId": "38e1de9d-bcc8-43be-82f3-a2d476d0c213", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177065672", + "DeviceId": "b34e8e99-3ede-4c48-8fe9-b72e443a8daa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_214073273", + "DeviceId": "45611bb0-9d75-428d-abb2-fa15ca4a83ac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "df38bd11-f1ca-4249-a37c-3c8cfd3411b1", + "TenantName": "Tenant-df38bd11" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878589785", + "DeviceId": "985ff541-7d20-4552-9648-b559cd99cacf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787668372", + "DeviceId": "3eccd041-3f91-4584-bc75-077b887b6328", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613332821", + "DeviceId": "561ff268-36a8-4695-8373-44ca3d3046c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850789740", + "DeviceId": "dc15f34d-19f9-48b6-8d30-f4b3c9978918", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438557057", + "DeviceId": "84e2aa17-3890-4f9c-92a0-18ec1c1259b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_369332028", + "DeviceId": "57d911f5-7677-43e5-a9df-da3df0845fe0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cce79c9a-4d27-46be-a90f-2c41dbe613a9", + "TenantName": "Tenant-cce79c9a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810930021", + "DeviceId": "c1624c06-5040-4c7f-b8ab-981509010460", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402922535", + "DeviceId": "40bdf34b-edc5-4dea-89b8-4b3605ed3653", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843277891", + "DeviceId": "f53d4bed-1e70-4032-af2d-48a6c275bff9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925302138", + "DeviceId": "99d6ea9d-3d37-413c-afd0-38f76aa7bb9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665251754", + "DeviceId": "47c73e61-faf6-4ec0-a242-d5a25ba05b12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_915063376", + "DeviceId": "c495b2da-2bab-42e3-a609-4ca86f9e9d44", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c688ad7-e485-4d72-9e96-d4fb779b21ff", + "TenantName": "Tenant-1c688ad7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_620403562", + "DeviceId": "89982d63-bf8b-4f32-9fc2-a58e73ed72e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747297413", + "DeviceId": "f0318783-8995-4992-91f0-6d4da33861fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416431024", + "DeviceId": "f00a5d0b-7900-4f84-b0d3-0669ea19e156", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_586268295", + "DeviceId": "80d9cd7b-81fd-4da6-9ce7-bf77be11b9c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146252478", + "DeviceId": "bbb2c91d-6a91-4613-9258-f4c7bdb59490", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_207910613", + "DeviceId": "e883418a-4d9f-400e-8d4f-15ee34cc7ecd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "03d8e70d-20de-4873-aff9-da61d243daf3", + "TenantName": "Tenant-03d8e70d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_178189946", + "DeviceId": "44c2447a-ef11-4d4e-b853-9a07739bc939", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_340320699", + "DeviceId": "05480c5b-3370-4a2e-8729-a21920427a70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533843587", + "DeviceId": "18b6d161-bda3-42f0-b177-804872edc5d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_503326982", + "DeviceId": "e3dfea34-48de-416c-82e9-054146ee3d7b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_689189874", + "DeviceId": "8ce2a42a-d67d-43be-b806-73227caca8b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_961243121", + "DeviceId": "6524fd4a-3323-479d-8894-8353007729bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7eb2a13b-22dc-41b2-9450-035cf28cd139", + "TenantName": "Tenant-7eb2a13b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532162856", + "DeviceId": "6f62666d-5ef8-4535-a5f5-93cf5a856a0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_573532142", + "DeviceId": "75c6f8a1-fc2a-4de5-82d1-f6aea994ce27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796471658", + "DeviceId": "0d4200a1-2e05-4984-966f-1cbba21fae0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817199245", + "DeviceId": "73fc06bb-4d73-4b5b-9665-8eb205e80394", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621544671", + "DeviceId": "f97a2710-cb05-4df7-aba9-0c28af6a1e56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_943791237", + "DeviceId": "973a4746-1dd8-41f0-bb43-f15be8c82e2a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b4341210-2ecb-4318-a6d4-0a23eb97b16b", + "TenantName": "Tenant-b4341210" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162006287", + "DeviceId": "ae40d69c-6c34-4844-9bd2-aa3ed62959ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701369172", + "DeviceId": "5d745f69-5513-4886-82fa-43ecf9c2d600", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_978570006", + "DeviceId": "b1ab3a4b-2790-4bed-8b6a-2c834f8f5a43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500791985", + "DeviceId": "87ddd447-c296-4462-b2a8-e0b8b21acea8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599410539", + "DeviceId": "4aa619b2-8236-4ce3-acfd-fa03a322de18", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_985267914", + "DeviceId": "6ef9e666-9cac-423a-9faf-12b7c25b171d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ef35a29-763e-4534-8fbc-5971cd046e63", + "TenantName": "Tenant-2ef35a29" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580690279", + "DeviceId": "3e742567-2c5f-4d07-965d-9fe872dd30ca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636277950", + "DeviceId": "88cbc54e-7f2e-449c-93e8-0497fca3ec05", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784951884", + "DeviceId": "d2d950be-2ef6-41d5-b64a-9d2e334673b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673424205", + "DeviceId": "a107dc1a-7e65-421f-8954-c5ed4fb51bfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_683421954", + "DeviceId": "b8d4f61a-805e-4176-a40c-99be362be27d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_562151157", + "DeviceId": "33868f88-23f8-4d43-9c16-f4b9e41460df", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea9fd60b-869e-4a64-8baa-7e04bc5d3749", + "TenantName": "Tenant-ea9fd60b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_811524362", + "DeviceId": "340d8ac9-751a-4933-a3c9-8d63fadee331", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541499826", + "DeviceId": "7c50ab9d-3f96-41d0-ab68-ec4d567ff69c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639427615", + "DeviceId": "73d85140-41e8-4616-a9f5-5d34d40f1ebb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878663136", + "DeviceId": "86d5a7da-4212-48b1-9cff-b35f250846d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926856434", + "DeviceId": "db1b475b-2e3b-4ea5-ac32-30c2fb1ec447", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_899389153", + "DeviceId": "d47324df-19bc-4cc5-99e0-bf5aaadf74eb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf87a991-694d-45fb-98be-1c4af89c2015", + "TenantName": "Tenant-bf87a991" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365000854", + "DeviceId": "b7954e58-c5c9-4b2a-ac3a-0269ed949ee4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934140676", + "DeviceId": "16dc5550-6a98-4887-924f-3da462b46018", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606136496", + "DeviceId": "8bb6f90d-44ff-425a-a4b1-57bf01391765", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170173123", + "DeviceId": "2ec8b04d-212f-49b6-8fac-7035ce371366", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772537952", + "DeviceId": "5b5ee31f-5f17-4ba8-8d9e-112e9da8eac5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_915820724", + "DeviceId": "71288856-5aa4-488d-8819-ebb240ae3568", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ccd37833-3c23-44ae-bc1b-f3ab18d90eb3", + "TenantName": "Tenant-ccd37833" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_172876063", + "DeviceId": "a65ce762-e7c2-4ffb-bcf8-5c52c592b42a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_179480747", + "DeviceId": "c648caca-7cbf-472f-bb4c-4ef91de82714", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743450158", + "DeviceId": "84139774-b937-4060-86d8-85b1f9a6d73b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_699930930", + "DeviceId": "e8607d11-bef1-4c9b-b464-3c4cae245643", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761853947", + "DeviceId": "474d7c96-b931-49d8-b5d1-e58ad1f36c58", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_460668022", + "DeviceId": "b95a07fb-e124-4c44-977d-f4fb19aca657", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6df0a7b8-8f7f-4234-a690-1616541e07ae", + "TenantName": "Tenant-6df0a7b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_573001291", + "DeviceId": "f6e21781-4d37-471a-bc65-fdd6318a5de0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643198156", + "DeviceId": "9e3a9422-3d44-4afe-b83c-ad3e30b26a79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_138199309", + "DeviceId": "0b0097dc-de2d-4937-a386-f3f691dcc0b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619031923", + "DeviceId": "dc0180a0-4928-406d-9f9a-32f0bfc2f9f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681659057", + "DeviceId": "da68c571-3648-41cf-b546-dc8ac17bf414", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_418932825", + "DeviceId": "b7978dbc-b248-41a6-a24c-6e6cd5877869", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "22e46d0b-dc28-40f6-b773-ed68af211fd9", + "TenantName": "Tenant-22e46d0b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_760123578", + "DeviceId": "a29e671b-650c-4063-8c27-a85a2fd1520e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670552076", + "DeviceId": "ec46f052-a4c1-44aa-9f75-2b6dd5b67780", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650889377", + "DeviceId": "d0082419-a8af-4fed-bd1d-cd1e96d0f312", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338754777", + "DeviceId": "6fd31f6c-19bc-4806-bd0f-1ab0ae750f1d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_445368534", + "DeviceId": "c4b2a324-6764-4ffb-8439-09e3753099bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572681425", + "DeviceId": "1b7c9b7a-0571-47ef-a96a-f526222e8d69", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "46e8ac7a-00e4-43d1-88c4-ae5ebce43855", + "TenantName": "Tenant-46e8ac7a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730509194", + "DeviceId": "1e26800c-67f5-44e1-9a91-7480543cab68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_641487417", + "DeviceId": "a8c58dea-650a-4120-9265-4109702cfd3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_344525793", + "DeviceId": "500f4b4a-8c32-4a6f-818a-b206e3fc85e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828886243", + "DeviceId": "e1df9e5f-81b4-4050-8ab2-f3e860c60f88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_344811047", + "DeviceId": "daccf35e-35b9-451b-b3dd-eaba8a3c0461", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_341425842", + "DeviceId": "b0143cc5-6924-437f-a7cb-e6cf276f5c99", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08ecef05-daf7-4cdd-86aa-d026d4b01f20", + "TenantName": "Tenant-08ecef05" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642130461", + "DeviceId": "6e4b751c-7666-4af1-aec3-d65aa27c038a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_941428689", + "DeviceId": "40b5b646-25f2-4927-b173-eefcde671f89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273056346", + "DeviceId": "d70a0a69-7b49-4a7b-84ef-46cd02c56944", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_302810260", + "DeviceId": "69a30ff7-7ae4-4fd3-9831-6583d3b35dff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860025445", + "DeviceId": "15ac2e27-2058-4e01-91c2-0afaae676cc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_914725919", + "DeviceId": "deadf450-4603-4a7e-91db-58b9efe1ae43", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6d4404f7-85f9-4930-b5aa-1913f53f14ef", + "TenantName": "Tenant-6d4404f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_440732731", + "DeviceId": "d56803f0-e974-42aa-aa64-dbd6bdd24d6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676324091", + "DeviceId": "8731c8ee-5a16-4e9e-9f5d-ef372d848f25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_214512162", + "DeviceId": "21617e45-7f4d-44dc-8e1b-73e939a567d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_473257099", + "DeviceId": "28481ddd-78ac-49a5-a4de-615347066432", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878355996", + "DeviceId": "b282ec03-1b0f-47f1-85bc-751223817115", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_898067377", + "DeviceId": "80f3efed-1113-4a55-af6b-611e2b405ebd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f34fd487-8800-4d1c-b1b7-ee4b76d36f48", + "TenantName": "Tenant-f34fd487" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409465867", + "DeviceId": "52c24e90-6de9-4985-ab4b-3013546dfe48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149065528", + "DeviceId": "b44d10a8-ef6a-48fd-9e53-51c8ad9ddde9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246651328", + "DeviceId": "8c30af6a-b91a-491b-8a50-1e4eefff5184", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107500334", + "DeviceId": "002f662f-95cb-4fb0-9908-131940f3150e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_863529802", + "DeviceId": "bce11d7a-1c93-4d24-94be-61a1da98f0d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_174105083", + "DeviceId": "e22eac12-9bf9-45b1-8b13-6b7834aa6bb7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf7289b9-d830-4901-87c6-ba6820373893", + "TenantName": "Tenant-cf7289b9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720950857", + "DeviceId": "0f7f4da3-3bbc-45b4-8521-0c08ac5fb3a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360883062", + "DeviceId": "8949f9cc-97fc-490d-8983-4caf4ddb6bfe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_489818043", + "DeviceId": "189a5b3f-7198-491f-8ddb-3e0091217ac2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848595789", + "DeviceId": "f5109cf0-1cd5-4426-ac5f-386751254cc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322352834", + "DeviceId": "f2598bbf-ae1b-47a6-ad02-9e013eb685b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_565993697", + "DeviceId": "10d78276-12b2-43ee-8d8a-da21ba4351e8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e8531b67-e668-4def-b7ca-dbe01a81e827", + "TenantName": "Tenant-e8531b67" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_947330548", + "DeviceId": "9743e325-4407-4a11-9808-3755f32664b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377414924", + "DeviceId": "8b6506cd-97ab-435b-811a-40cf458d28ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_282382801", + "DeviceId": "b35985f4-8edc-498c-9d85-3eff5bce8de9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_632792635", + "DeviceId": "67e2b605-9b54-4392-90f8-f95d43e930c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_717015299", + "DeviceId": "8f0815a2-05a5-4eb9-80c3-40ab0b043506", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_985109338", + "DeviceId": "656929ab-7264-41aa-9427-623de0f99c9c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6f92e897-efc5-4ba8-8bbe-33ad90b4fbbb", + "TenantName": "Tenant-6f92e897" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_406651128", + "DeviceId": "9b9ec3eb-4669-4dd1-97ee-931e03b90eb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822434043", + "DeviceId": "882d2771-de3f-4883-916b-4adc86454dcd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806962866", + "DeviceId": "afd38bba-9377-411d-aa3a-7cd8a2aa6452", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718245217", + "DeviceId": "2097ff88-eb8b-4aa3-8973-b4c7c0403233", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_751258812", + "DeviceId": "ef16800b-7649-4d93-8733-a6c950bda269", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_569770177", + "DeviceId": "df331dd2-bb79-4c05-8eac-2a67bf476672", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b5b1b95f-b90a-42f1-b7cb-36604de77bbe", + "TenantName": "Tenant-b5b1b95f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_337599069", + "DeviceId": "34787e50-f644-4a1f-816a-570a3740fc2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964138731", + "DeviceId": "288333f7-2416-443d-b2da-409e63366580", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_293256404", + "DeviceId": "a82cceeb-ca11-4b20-b44a-c4210ccb795f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784759109", + "DeviceId": "f616912a-352c-4119-b388-fe1c615b0081", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837576299", + "DeviceId": "a94067a6-9e21-454e-aa24-613f58666cc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_111040930", + "DeviceId": "8ac95837-2a23-4236-895b-18b96337bbd7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5b98840-117f-462e-b3c9-670dde0a1b7f", + "TenantName": "Tenant-c5b98840" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144875033", + "DeviceId": "e5bdefe3-971e-403d-8cd0-08666f4f1cfa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_581343240", + "DeviceId": "1c05c7bc-f64d-46b4-997f-d049093a78c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_620559836", + "DeviceId": "e5518c2c-e229-4654-9ab3-20313eaf30fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477997094", + "DeviceId": "544ce3aa-2e28-4ee1-b598-a3f9384d3462", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427575546", + "DeviceId": "dbdb93f1-b61e-43f1-8e70-e28806a0699c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_753991915", + "DeviceId": "388e3468-4753-4f7b-a722-9a2af1d4e095", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "223ef133-0215-43b4-aa6f-6b45cab6b36a", + "TenantName": "Tenant-223ef133" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_452119616", + "DeviceId": "b4a230f3-ae4b-4f1b-b74d-52dcb028c36f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_128062574", + "DeviceId": "41a6ab56-996b-43c3-99e2-e024850b8863", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874324968", + "DeviceId": "7fb66dfe-b793-41ad-a1f6-727e7f555956", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531824320", + "DeviceId": "d4aeb7ef-ca3a-4532-8cdf-b3e28a0c9d78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937679105", + "DeviceId": "57ff4374-ebf1-4ec5-a66f-7e52a4f4236d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_352250020", + "DeviceId": "20c5981e-261c-4011-9c50-50641d34cfb3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7b16c667-d56f-460a-99cd-24671df84015", + "TenantName": "Tenant-7b16c667" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600720150", + "DeviceId": "6bee4254-d4bc-46b6-bb7f-491af7048cd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710560725", + "DeviceId": "d23598f3-4ffb-4602-a00f-8ec0fa675fbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420043484", + "DeviceId": "97e6456f-a950-48e1-aab7-7ccbd4b8faea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_124416494", + "DeviceId": "231c553a-158a-43af-b8fb-33c120b4fc00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247695804", + "DeviceId": "42aa33c7-6be1-4c54-9900-536c2ec5dd1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_464420186", + "DeviceId": "7058da84-5a46-41f4-8dff-062e6ae4088c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f7fa881a-1c0a-42a1-a24a-9eae23860422", + "TenantName": "Tenant-f7fa881a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506785679", + "DeviceId": "29b50735-0eee-47e3-bebe-87762a048f9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_607093787", + "DeviceId": "8c1d7b27-5d58-4b88-b35f-4dc9de02fd6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279068688", + "DeviceId": "d2c1cd46-f109-4810-a8bf-d014445c106f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200623442", + "DeviceId": "5ea44b4a-82ad-460b-ad58-c5526b70f36b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_115656906", + "DeviceId": "eff9baed-28c2-4908-a923-bcab4991a5e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_697989576", + "DeviceId": "0bff842d-cb87-4443-a321-43bfd0fe5cb9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "04b430ea-b312-4b1a-9c9c-8643a8605451", + "TenantName": "Tenant-04b430ea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722232006", + "DeviceId": "e94aed86-473f-411d-9303-dc9abe86328b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_889773942", + "DeviceId": "41228381-1f3d-4a41-bce0-79ff71ad0336", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536320084", + "DeviceId": "eefbfd30-43fd-40cb-9673-e1c1b723d955", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937874318", + "DeviceId": "3358840d-e7c0-4886-8cf9-65818eb9a6c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358242997", + "DeviceId": "31d82ddd-a993-48bc-8178-00c61c6be2a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_278760276", + "DeviceId": "c678955c-cc76-4a44-9a42-c8b00985b18f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4e530eab-4092-4f41-b517-1f63dc2c6682", + "TenantName": "Tenant-4e530eab" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261106.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261106.json new file mode 100644 index 0000000..dba3825 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2206261106.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263316390", + "DeviceId": "d10d8902-5bc1-477f-9d1a-48f88b09ce3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487333198", + "DeviceId": "e9fb9f6f-340a-4ffe-9472-9568c52d6688", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134162480", + "DeviceId": "baec876f-7b77-4bf2-aa88-464f93cb7f35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440190454", + "DeviceId": "68b7ee53-8379-4a4c-b5ea-f29b090004e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430915679", + "DeviceId": "0b52cec8-eabc-4b8d-abe5-ae90ba272cc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_859379820", + "DeviceId": "31b5c5e2-89c9-43e3-a73b-04c7e4f2c4aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4cfcdc67-d16d-4c66-afe8-cc6a619a6e73", + "TenantName": "Tenant-4cfcdc67" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825375590", + "DeviceId": "73329acc-2869-4ed2-8854-be7b45f0f262", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_217771657", + "DeviceId": "f2e1712d-5ccd-4e6b-9e26-bb2ab8c3f51c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_247071597", + "DeviceId": "e3b5453c-3eed-4729-8207-056ae4885146", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860853406", + "DeviceId": "eeed7af1-7101-493d-b7fc-3678d5b9e5ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670944334", + "DeviceId": "cc9bb960-51cc-4449-8ecc-b47020f66c2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_290684712", + "DeviceId": "23dcf73c-35a1-4b6a-aeee-8ba3f8187181", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab03f8ed-c638-4867-958d-ea0e332dbf7a", + "TenantName": "Tenant-ab03f8ed" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274566079", + "DeviceId": "b8d98bd5-69fe-480e-ae47-c43e50b09a1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316651072", + "DeviceId": "b3ea8c23-5207-4a20-8f5b-e4316d27c6d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358686660", + "DeviceId": "fd92bbea-d3ce-40a1-91df-973b104ead30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440464206", + "DeviceId": "ec1221d2-d966-4c6d-b832-ff1cfdbe8ed2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476428352", + "DeviceId": "7d075bac-a613-4213-af11-e91e9ec69149", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_598872131", + "DeviceId": "0eecc8eb-e2d4-4c87-a0a1-5f48186ca8ef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "33f7bf4d-46cb-42a0-88e7-716024142fbe", + "TenantName": "Tenant-33f7bf4d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498258193", + "DeviceId": "ddea2a71-6216-4999-a5fc-23828dcc7571", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_306777750", + "DeviceId": "5561f77f-d371-42bc-ad43-8e1c14940351", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803920682", + "DeviceId": "4b2213af-596a-44c9-b336-15d57d40cd83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_789405076", + "DeviceId": "566bc90f-6325-429d-a6ac-eb31f54bc3d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_754145015", + "DeviceId": "5fa856f3-a64f-4a76-9b1f-ecafc4819e77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_272300201", + "DeviceId": "86a5f803-827c-490a-abb6-3b4c4262c27f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a40d759c-9159-4800-90f4-2f464b82f2fb", + "TenantName": "Tenant-a40d759c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592709609", + "DeviceId": "a2787eba-9fd8-489f-bcc0-a7361c6e7b7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_324405814", + "DeviceId": "fcf9dc8b-e407-4629-b121-d7d19c2f8ca1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488941797", + "DeviceId": "f95ac462-d826-4df9-bef8-2e7b7b654698", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157957630", + "DeviceId": "e5b551ef-a01e-4dac-94bf-437ba914bcf0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_394476326", + "DeviceId": "0492466f-02f9-4f5c-8723-09adbf091bea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_235959617", + "DeviceId": "c19fd57f-8113-48f1-936a-c54e0048aed3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ec0b2045-1910-447a-b874-60ad1deca02b", + "TenantName": "Tenant-ec0b2045" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_719918819", + "DeviceId": "9f75ec5a-e62d-458c-b722-1754b2df28dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330935535", + "DeviceId": "f48710f9-bf45-497e-a262-a8d21a43a221", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262336259", + "DeviceId": "6aa4fab1-bce0-4585-9bbf-879ad7aa5ce2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139578629", + "DeviceId": "10f26297-b725-4a2b-9b19-7277e50d3de2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_796003264", + "DeviceId": "2166342c-3c06-4e50-8d5f-2f240d359392", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_536988090", + "DeviceId": "edd8c9a9-881c-42fa-ba65-907a7ee37800", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "515c5082-d070-46d7-81c8-843ba94fbf10", + "TenantName": "Tenant-515c5082" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893362529", + "DeviceId": "3dbf6509-cbeb-47ab-beba-2ca14cd9f6bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_516241585", + "DeviceId": "971e9a8c-7229-46a8-8799-a1868a81f377", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_942181699", + "DeviceId": "f42a9640-3055-4186-950f-99eea5187975", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_344961161", + "DeviceId": "819a1154-4a87-43c3-bd3a-3075489b1c9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358542590", + "DeviceId": "9e177434-c130-48a1-9dd2-414a726ca0b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_414903987", + "DeviceId": "d2900a62-15f2-4f9d-a29f-0a5537829dc8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4fcf3067-cbc9-4e1d-a8b2-0ba11708be0b", + "TenantName": "Tenant-4fcf3067" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993314525", + "DeviceId": "0b347555-18b4-4c63-967b-635ac3e7f3aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356526971", + "DeviceId": "51867e98-1daf-49ab-b513-8a1ce6425a24", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461199530", + "DeviceId": "38b916d9-dc5d-4ff7-a080-a65b428ad403", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_764522141", + "DeviceId": "246915fb-d924-4ab4-8891-5a7f4cc194fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_275272460", + "DeviceId": "91815251-33d7-4672-8aa6-9d859ca4a0fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_648976816", + "DeviceId": "d2daccbc-117d-4ba3-b678-b9e3fe25d75e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "118b2396-7f33-4652-8ea0-c757f387a45a", + "TenantName": "Tenant-118b2396" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330512876", + "DeviceId": "f2cad7c8-e83f-4114-be40-8e677f7d8087", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350101535", + "DeviceId": "4268ab82-4668-4dae-a014-e621f0b4b5b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_645884353", + "DeviceId": "4ebc4840-5340-4c36-a157-df43f45dff7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_183814690", + "DeviceId": "395ebca4-b5ed-439c-9559-757412a7b9f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251655215", + "DeviceId": "de996d2f-f506-4e29-99b9-ea74b4718eaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_533897450", + "DeviceId": "6fc5229e-2cb5-4b71-b059-67007be19bba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "34b80b42-ec36-47d0-9caf-aaa14b0a0fc8", + "TenantName": "Tenant-34b80b42" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_522419714", + "DeviceId": "100d54b4-50d5-4488-985f-f6cd736f431c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136287081", + "DeviceId": "d7138578-6eb5-49cd-b130-c74beed8ed17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579921029", + "DeviceId": "a86a6410-9b1c-4377-96e8-b276c7fb3c04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569037467", + "DeviceId": "8a5001cf-cf14-470a-8c7d-674b12f24bf1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988050836", + "DeviceId": "1e7cfa94-c9e0-4622-af10-1395f1d278f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_639851125", + "DeviceId": "db71a953-c390-434f-9ff0-866222cdc45b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a3ca3d6e-e7d8-4a47-8396-1640c07af338", + "TenantName": "Tenant-a3ca3d6e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260365357", + "DeviceId": "9886da05-5c29-413a-8a25-2771d42728f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850536143", + "DeviceId": "d73b814f-57fe-4743-8ba7-164999cb4da7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202356271", + "DeviceId": "5f98245c-f100-4147-b7e2-a538c13beb4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878104202", + "DeviceId": "9c7cb16e-1e30-49aa-959d-4eadb5642cea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670623699", + "DeviceId": "16b045a9-80f8-4bc6-89cf-f249eee770af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_321032464", + "DeviceId": "e6e56599-7e27-4783-87a5-cd65a6de5a38", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e589e3a7-67df-4720-baff-9abae3920dd3", + "TenantName": "Tenant-e589e3a7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_555022255", + "DeviceId": "95564b94-5907-444b-bbf5-d94ffe71ed5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788010992", + "DeviceId": "dc9fbfdc-f6e5-45b4-8451-f5665ac6aa4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_306979357", + "DeviceId": "4e630444-3baf-47ad-93c2-73013fb3d4d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724691821", + "DeviceId": "3133b4bd-c4e6-4756-b173-b49295559131", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270459668", + "DeviceId": "7f96248e-d4d1-44a9-8861-a582da18f13f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_186146106", + "DeviceId": "3227c404-39d4-40bf-94f7-b58df2889c9b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05e53d51-3401-482d-b208-6772aa5312c8", + "TenantName": "Tenant-05e53d51" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540083130", + "DeviceId": "f90f3d90-5de7-4b28-ada4-6a673ea1856c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155876998", + "DeviceId": "815ba9d4-073f-4002-b7d2-51191209c2e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_863204279", + "DeviceId": "9ec00caa-f6df-4221-af41-9f55f3d05cd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_666640255", + "DeviceId": "766cec8b-f178-49bf-a115-e685ac33243a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300482934", + "DeviceId": "dcb3a4e5-8472-4e8a-94c7-1dead781cd55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_808415484", + "DeviceId": "339cb568-2231-43b7-bae9-cf1c430291aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aa2649d3-83fe-4c9b-ad49-9b855cd1d2e5", + "TenantName": "Tenant-aa2649d3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435707170", + "DeviceId": "1d5c878a-6319-4b08-bf5a-f7a77f306a50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_440717624", + "DeviceId": "dc0e40b1-a5d0-43fd-99dc-95d3561522c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352592768", + "DeviceId": "1d23d6b6-bf8c-4352-bdf7-db86f2669575", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_683459419", + "DeviceId": "cd37c172-7cb8-4d73-aae4-5a2a4a230b13", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688417162", + "DeviceId": "fdad9164-830b-41d3-8f7f-bfe223b3893c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_407358589", + "DeviceId": "8e0dc2b9-94b7-4771-8c6d-3197dffce89c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "84bee473-03c4-4109-b615-facf55944075", + "TenantName": "Tenant-84bee473" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371708840", + "DeviceId": "b1bccd12-4f80-4348-b844-f9943f53ba47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982940948", + "DeviceId": "1131f8d0-98d7-4ff9-8c34-71812a61fbe6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622542186", + "DeviceId": "c156286b-d816-4768-9c0d-9960277e2f41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_569272205", + "DeviceId": "d38115c7-88ec-4638-b71b-7f1a4548f8d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584283393", + "DeviceId": "6a78b4b7-9662-4152-96c0-42f81848a71a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_157396198", + "DeviceId": "1cb20468-b7b8-4589-b168-8985beac788a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87845d15-6767-42d9-8c1c-4b534c6eeee1", + "TenantName": "Tenant-87845d15" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753336738", + "DeviceId": "24140552-7567-48f3-8e2e-816b3efc4ef9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922085765", + "DeviceId": "0e34e5e3-35e3-4a86-91ae-b31e9c1a3a9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813464351", + "DeviceId": "4a6c8f0f-da0c-4f29-b15f-cd0b4ff6c5f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_924776779", + "DeviceId": "410bb15d-3bfe-495d-9c8a-99241614a382", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_775466765", + "DeviceId": "13519b85-3ad4-4f91-8c8e-f8d7b93f0c75", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_736015576", + "DeviceId": "3c731ba5-66ca-40f1-a62e-7b733c259996", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b16a6cec-b197-4f2a-a79d-d85b19aa592f", + "TenantName": "Tenant-b16a6cec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400217919", + "DeviceId": "9a93f6a1-96fc-4cf1-9154-319b9a707bcc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_124584803", + "DeviceId": "09c55b69-b223-4018-b488-a23985670fb8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736831364", + "DeviceId": "83292155-6396-43c9-8df1-e29579bf5bd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187948746", + "DeviceId": "1c18cbb2-e7dd-470b-bc08-1fa0c89ea2ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869885537", + "DeviceId": "8c4b6c24-441a-4d82-a818-73914f6511f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_665521217", + "DeviceId": "fcd2d2e5-3291-4e8c-951a-a6b3ed7ec31c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87f248a4-dc06-407b-893d-3175b61962d3", + "TenantName": "Tenant-87f248a4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462093066", + "DeviceId": "0c854e00-4432-41ea-a147-9c0e0ce85d6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596528498", + "DeviceId": "99eb8709-3405-4504-8024-156924db5aef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936768288", + "DeviceId": "9788137e-31b0-4ddf-8740-d7a0109eba11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288878176", + "DeviceId": "1fee6f57-b60c-4d92-b8d5-10f671782d20", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724044934", + "DeviceId": "bf728cc5-0f53-4a6a-8597-31d9b38d89b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_366566433", + "DeviceId": "a57d780c-5989-4735-8e8e-98cb34306df0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d939ce39-78ae-468e-9146-567b09cf10ad", + "TenantName": "Tenant-d939ce39" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_332410657", + "DeviceId": "2a3c5bea-1b6f-4957-8363-01af0262b426", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914012903", + "DeviceId": "03e9492d-e16f-4c69-aacc-aec9e48b5b65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_586233089", + "DeviceId": "680bd3bf-ed58-4920-b331-79dc3c4f1556", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322200948", + "DeviceId": "46cb773a-443f-47cf-9e12-1991d718c838", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427541526", + "DeviceId": "fa0761d1-7be0-430e-a149-fc1185894c65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_509820297", + "DeviceId": "c95ca6d3-3b98-4f6a-b0dc-ff313bff388c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "862d4bcf-79b1-483e-ab6e-80262312f7c2", + "TenantName": "Tenant-862d4bcf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_854165316", + "DeviceId": "2a9fe2c3-2c11-492d-9f32-ff7db40d8558", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314625646", + "DeviceId": "dd7f6e6f-cf11-4a55-8b81-1f0455eec3eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798525480", + "DeviceId": "7759b816-e445-4b41-999b-d6b045e23faf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_974120498", + "DeviceId": "d5a07542-3022-4d2a-ba12-289a18bff4b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896877376", + "DeviceId": "bb6d3fe7-5aa2-4e89-99a6-3d1472ddc20c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_633425344", + "DeviceId": "cb022019-a329-42f4-8562-7cb55f041edd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dae97af9-4936-4962-946d-dba1d4719aa9", + "TenantName": "Tenant-dae97af9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351856975", + "DeviceId": "a986d23a-e6bc-493d-94c7-da32dd59b646", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900082557", + "DeviceId": "d8c5412e-2c87-46c9-9256-076b5b6b2919", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149376192", + "DeviceId": "f5b62d46-6997-44d2-9cdd-e69d1a7644dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161703462", + "DeviceId": "ae0ce80f-e1aa-4543-ac7c-1261130c045a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_776484240", + "DeviceId": "a3a4e3a8-a448-42a2-b204-710174fe8d23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_253631644", + "DeviceId": "9f355ac2-9ccd-460f-a147-0e715f8c81a0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d802e2f1-f3c5-4ad5-9eab-12f2a07d2cda", + "TenantName": "Tenant-d802e2f1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635115568", + "DeviceId": "afd486a8-a772-4d49-b047-d636fa34c6b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974397184", + "DeviceId": "d9675e5f-6e2c-4db4-8eff-c186f2c6f5c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939979062", + "DeviceId": "503ff7d1-0c67-4ada-8c05-53635c67756d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401165030", + "DeviceId": "727d0f52-118b-40b6-8795-afc922c32f00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678870862", + "DeviceId": "01e03fc9-2f45-4348-93fa-c42061f2642b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_633713071", + "DeviceId": "e67e2b89-c43c-46b3-9e4c-f73a35934b8d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f3dc454b-7703-4629-9815-a3322f0e0041", + "TenantName": "Tenant-f3dc454b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542520933", + "DeviceId": "978fc0b6-07d7-4765-8442-162754a3b05f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311156348", + "DeviceId": "37541316-4c0f-4f84-8462-6a7afedb9ba3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_647076210", + "DeviceId": "43e13953-75e0-4793-b5bf-96f7957e061b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_751817681", + "DeviceId": "a5f6e073-14d0-4eba-a092-60d87f398a29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_789687769", + "DeviceId": "f4624a56-8a47-41ad-962b-0fc85cd9fd6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_303431888", + "DeviceId": "7f341565-1c1f-4cf8-a8d6-48c3e3b84768", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aae126c9-4c90-4dd1-809a-81b05989e352", + "TenantName": "Tenant-aae126c9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114203927", + "DeviceId": "817d7519-ea16-4f4b-8e67-882e156aa21f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_452642491", + "DeviceId": "60d90d8a-5eb9-4b50-a632-ada8bf6cd058", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167127248", + "DeviceId": "4a96a3a2-55ab-4306-bd74-e545bd724dec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213540121", + "DeviceId": "7c0e5e88-417f-48df-a909-d2fb5ab7eb71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410224920", + "DeviceId": "e30a861d-dd81-4aa8-ad51-07b6a435154e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_220316842", + "DeviceId": "568fc3ae-001f-44ad-86ad-a17e815714ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "110cb2d8-00ed-4b81-821d-9251a7c9c434", + "TenantName": "Tenant-110cb2d8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380043507", + "DeviceId": "1249b9b4-2a8c-4a28-b304-7b9880435e3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113299088", + "DeviceId": "d629ce72-1545-4397-9e33-712e925d4bb4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_465343127", + "DeviceId": "6ba9a0b7-9e34-4f93-8673-8b128f690476", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_829413263", + "DeviceId": "476dd0f6-99dd-414a-b586-a6a2aa8d9c85", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289881667", + "DeviceId": "e03e4722-20a0-46c4-9aa0-e51e23d0096e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_803608722", + "DeviceId": "6664d90d-4f9a-4849-83b2-d08b0fe9bf5f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f7c6ff4a-30f4-4df7-a44e-12406e7ddae4", + "TenantName": "Tenant-f7c6ff4a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922412461", + "DeviceId": "1a0287f9-78fe-462a-8834-a73a8912cfe5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458204145", + "DeviceId": "268719f4-94ec-41da-a23e-2c45fe25a40b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926242171", + "DeviceId": "7c33ae04-cdd6-4378-b644-ba4d007a9286", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802656885", + "DeviceId": "a762f179-722a-49da-a5b1-e1df0eea00af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869597359", + "DeviceId": "bf193ee5-aea0-4efb-804e-c5939d76ea69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_311590657", + "DeviceId": "ef3d664b-b878-4f15-ab77-835f0896e8a5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2767bf1d-0c79-4abd-a839-d9ec3ecee954", + "TenantName": "Tenant-2767bf1d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323554074", + "DeviceId": "21455705-b567-45b3-9671-b5145406ef15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403099600", + "DeviceId": "db9efac0-30ce-4a01-a5d3-93cd56397e4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_807052158", + "DeviceId": "055fadfa-2f12-417f-bfe3-96d3376f9697", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591650730", + "DeviceId": "983e64ec-2974-40df-a18e-d8713caf228b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726073282", + "DeviceId": "5fe60f5b-6a4d-4e82-af39-8081c598e261", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_505528031", + "DeviceId": "42026a03-43f0-4072-929a-cde90e0546c9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f9357303-7e67-41a9-b684-bc5d22b45efb", + "TenantName": "Tenant-f9357303" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237072165", + "DeviceId": "1629cdb9-ec3e-4fc0-874f-025dc275af24", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_828071563", + "DeviceId": "f284b184-ffdb-4233-a71b-3ece631735c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916864244", + "DeviceId": "b87d8e9f-acbb-4228-b532-fa2defede178", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_979560825", + "DeviceId": "59141004-f19c-49e1-a21f-1f2797954702", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615062086", + "DeviceId": "5ef79868-85fc-452e-9d24-354d77e4baf5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_423230383", + "DeviceId": "ea59b999-23ed-4498-a44b-e089471139ab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0830d154-0ca8-4ac5-9747-011b5361ea7e", + "TenantName": "Tenant-0830d154" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989410774", + "DeviceId": "9369193e-6f90-46d5-949c-a6aeefbeb65f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377870623", + "DeviceId": "68c07729-c256-425e-98bf-9c34239a505e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275881965", + "DeviceId": "cd22dacf-54e9-4538-9f23-1be50b61b1c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757367561", + "DeviceId": "54e69909-65bc-4296-8602-f375f7a7b192", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241292001", + "DeviceId": "f3b3bab3-d162-42ec-8884-7ef6d3c03b56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_663690158", + "DeviceId": "541747e0-e072-4c88-aa1a-ec6c9a773dee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "782bd66e-d47a-48a9-a956-371768e38a8f", + "TenantName": "Tenant-782bd66e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283144593", + "DeviceId": "5196f015-71fd-487d-a4ab-dbdbf78926b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564758439", + "DeviceId": "1705d162-a84e-4f02-a47a-90563b995d5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591573194", + "DeviceId": "ad93cb26-0df8-4bc8-b4eb-7ba135e1b50c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688679000", + "DeviceId": "d08c14a1-ccac-4cad-aae3-9678cf5fa940", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185147603", + "DeviceId": "8a38903e-09f8-426e-94b4-41d6c8d41694", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_623529992", + "DeviceId": "8f5d6cf4-c7b9-4021-a025-d7fc56f546d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d607b028-6056-4aa3-b993-a3d689db5fd3", + "TenantName": "Tenant-d607b028" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436694580", + "DeviceId": "ade132fb-6503-4748-a5a7-fa2110ee7836", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_704345243", + "DeviceId": "81cce722-7580-45ea-81d7-3689afc6cb01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_124628173", + "DeviceId": "4c381363-1b84-44d4-a4df-ac75ff8fb2d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649713347", + "DeviceId": "61f09ad8-0a4e-4102-8bad-946a0bb3e82c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170995208", + "DeviceId": "0b8fc391-f932-44da-a7c6-e39e37bc0479", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_517702088", + "DeviceId": "1ed8cefb-6149-4ab3-a359-3b02b38fc192", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6071483f-baa5-4eca-95c7-7f8cd8ebc7ec", + "TenantName": "Tenant-6071483f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772007130", + "DeviceId": "c81a47e5-f287-4d9e-ad27-fd9fe97b5432", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_809222207", + "DeviceId": "5a633592-c53b-405d-94fd-0942f37cf46a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_384562876", + "DeviceId": "e628c40a-040c-4a1e-af4f-4185735f8685", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583902631", + "DeviceId": "de1825fc-ed9c-4f8e-bc5c-9c687baeb05a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703624746", + "DeviceId": "d34ff8ad-dc78-43a9-8bcf-ca9948348697", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_452969271", + "DeviceId": "456f3c1a-0c53-4c86-b8b8-4f09365dce2c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "077dc641-a68f-4357-bfd0-a40231f8c8f7", + "TenantName": "Tenant-077dc641" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761563065", + "DeviceId": "c1b4e1da-c80e-4514-9de8-d72e9784fee6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233347989", + "DeviceId": "d2255838-3f13-4d8c-b1a8-287c383fd543", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_220090962", + "DeviceId": "2e8dd996-0368-4412-8434-b7d03328750e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_101166171", + "DeviceId": "255c1eb7-1c1a-4f4c-aa4a-880ab6b63713", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897168772", + "DeviceId": "c7a19130-84f5-4ba5-97a5-4a2b1506fb36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_837937508", + "DeviceId": "c3039ee3-e955-49d1-acb5-fdda5a53b8e6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c567771e-cf8e-476c-a4c4-ae0688165cd3", + "TenantName": "Tenant-c567771e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346955557", + "DeviceId": "446755c1-9621-424d-8b1f-9d1694543dc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784145356", + "DeviceId": "7c46ee36-5369-463d-9a2c-14b3b615a9ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536896159", + "DeviceId": "4dba72e2-1acd-4547-b236-928d11b792a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_421486210", + "DeviceId": "76c9c581-6925-449b-9285-73bde29a9c2f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161698062", + "DeviceId": "c6812d99-2b90-4628-ae63-cb0f36987e33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_608063135", + "DeviceId": "39b3193d-b0f6-4c69-aa6b-4d22c99c9408", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1fa3a127-5a04-41b2-bb3c-31a5cae4a430", + "TenantName": "Tenant-1fa3a127" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713075985", + "DeviceId": "5286d8b4-7c8e-4b21-a85c-764f4842f3dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252820782", + "DeviceId": "9fa7cf6a-f704-4906-a1cc-d1f677e979c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371067828", + "DeviceId": "c77b0226-e8a0-421b-a176-581b05c7e1ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989006568", + "DeviceId": "ec3416cd-0d92-44b7-830f-c726d01eded3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_979428169", + "DeviceId": "a66e960b-6c7f-49ed-9a9b-a7d9c7b38516", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_670903976", + "DeviceId": "4bc18eff-3f39-48ba-9e05-6b906dcba0d6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5456f926-68ef-4cb1-9e1d-5079e5ac83c4", + "TenantName": "Tenant-5456f926" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904724309", + "DeviceId": "3d0d02f4-3b7c-4cca-87e2-7e34a07772df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_481411980", + "DeviceId": "02538891-3634-4078-b4e7-53b7f978e5ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_624163622", + "DeviceId": "389be68f-0a30-4022-94b6-00dbf47725a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_420116831", + "DeviceId": "88e10b1a-2952-4e0e-a0b1-9fb9c0a096e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_732562054", + "DeviceId": "613bbc5d-565f-4422-a048-74a6688f97e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_900253358", + "DeviceId": "a1bff3c4-150f-41c4-8d27-87d4f7adf0f7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "230d4c23-c547-4ceb-b76c-9707b59bba82", + "TenantName": "Tenant-230d4c23" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670313202", + "DeviceId": "19cc047d-13ba-4ca8-a044-8fbcd34bc90a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_440030863", + "DeviceId": "963c6402-d2f1-45ec-a339-fbfa08c6d5b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631906978", + "DeviceId": "2a48ac33-3798-4ab2-b31f-432c356e9f4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220475054", + "DeviceId": "18d52a1d-b9cf-417c-85bd-1f17cab7b9c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674542771", + "DeviceId": "bcbb84d2-2fd9-4aa0-b8a1-27ba42c76d0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_923465443", + "DeviceId": "10c024bf-3f4f-4a04-96a7-078a7c861b1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fc63f5e0-fa6c-40ff-8a8a-a3185ae1c393", + "TenantName": "Tenant-fc63f5e0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371951877", + "DeviceId": "603d833c-ddc4-4288-87b7-11960d47a640", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416592356", + "DeviceId": "e802a98e-48e7-45a8-99f0-dfbdde852a10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873679050", + "DeviceId": "682d9188-2783-4dd2-a8d2-62960003032a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292768075", + "DeviceId": "07c83df6-8428-4fd2-b593-371857d7aa17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_538799861", + "DeviceId": "bb488454-3ca0-46fe-8d08-32c8f9828439", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_785501364", + "DeviceId": "7edccad1-92df-4db0-8024-8254631e0695", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ccc82836-1291-462b-ac24-2019adb5cb84", + "TenantName": "Tenant-ccc82836" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_749379871", + "DeviceId": "8ad8071b-ded1-408a-83d9-cfe28cdcf3e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597034571", + "DeviceId": "32d47786-1de8-4492-8dc3-f4e808d71a38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_386271613", + "DeviceId": "31b615d9-dd9a-4812-b599-d07060cfada2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932747848", + "DeviceId": "8e28383a-94ce-4f71-bd69-f951652bdd45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645793134", + "DeviceId": "3678e5a3-2148-4dbf-aa10-68ce7f8d7974", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_720856353", + "DeviceId": "d62fc111-cb70-4349-b968-c03dc2c0201b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "458717f6-23b6-4721-ba14-f487757c0629", + "TenantName": "Tenant-458717f6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_247725938", + "DeviceId": "0d773be7-844a-4374-b259-a271fe98ce8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642306191", + "DeviceId": "d3ef878c-9a46-4873-a967-be1fd3ae23e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_820844594", + "DeviceId": "67763047-76a8-4d7b-8cb2-18be9b18b4eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549195559", + "DeviceId": "c76d9039-e88b-48f4-ae48-b9ddf1eb3c1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937548230", + "DeviceId": "a521b1f3-636c-45c6-bcae-3e567bf06386", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_397862317", + "DeviceId": "5037d06c-45fa-4da3-9cd6-b0ae34121452", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ff2c0d3-256c-4eac-9221-a0961e8a9085", + "TenantName": "Tenant-6ff2c0d3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860542949", + "DeviceId": "7069c1fb-80cc-4719-8a59-e81891ca58cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565396538", + "DeviceId": "7ed441c0-8163-43c2-95f8-4c04eb5b1ed4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_137721199", + "DeviceId": "c793d9c2-92e6-4570-b7ab-a0cdfe08017d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650121632", + "DeviceId": "009cfe82-8d27-4e88-bf7c-88c27c2943b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532708335", + "DeviceId": "f1499410-9ba8-4ad8-8ca2-6544a45fa326", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_201388007", + "DeviceId": "c5418de7-751d-40d4-98b7-b70bfa397041", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2c56f387-9744-4f60-aa03-082e05846387", + "TenantName": "Tenant-2c56f387" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153587428", + "DeviceId": "b8257c5c-426c-47f2-8c46-d69b9b79a39d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609353594", + "DeviceId": "1646aa0d-76bb-4585-a237-33a34ad023ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435371565", + "DeviceId": "0240df52-6638-4bff-b248-54c310d8dbee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964088480", + "DeviceId": "5bd69b16-4332-4fb0-8e6b-e6a8002ac047", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_887375932", + "DeviceId": "8db6ad23-4ad9-44ba-a16e-992ce956b478", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_793143563", + "DeviceId": "f46ec395-da93-44ba-824f-a5a98c785bfd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c44993e-3ab0-4260-b8d5-aa3f07c798f4", + "TenantName": "Tenant-1c44993e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842276333", + "DeviceId": "fd590c7d-b6a0-491c-a52b-7b0b411d5abf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560754129", + "DeviceId": "3b96d242-85c7-4645-a762-0a945d73995a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210262973", + "DeviceId": "28c29bb1-1710-4fb2-ae58-162d4b5fc06a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606921932", + "DeviceId": "353c5e8a-a417-4abe-a8e8-e1c3447bbc42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996542402", + "DeviceId": "ba42bf63-46c3-4b29-870b-720b7ff86b2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_684779859", + "DeviceId": "abecf9f0-cadf-4eee-a6c2-9fda46248cd4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5769d2e6-dcd9-4e87-a2d9-185824f49233", + "TenantName": "Tenant-5769d2e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113280301", + "DeviceId": "9025091f-912f-447a-b75e-114a9fd8510b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981927985", + "DeviceId": "bc59ab00-25d5-4857-9ecd-4035ac886425", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_357738826", + "DeviceId": "4c3f9a05-9095-45f5-8538-56d2c0a5978a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_444061683", + "DeviceId": "fe6130c9-2cdd-451d-bacd-d78715227c0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511565081", + "DeviceId": "1bc22527-ae0a-4599-be88-531644b02d87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_372193234", + "DeviceId": "6bb510a5-93e2-42e5-a84a-e6b55c77bc86", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a6b9bd01-3e61-41e6-ba53-15d343e826b9", + "TenantName": "Tenant-a6b9bd01" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580387946", + "DeviceId": "06b10b07-74c8-4802-af69-91868d92d80b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_815359744", + "DeviceId": "93adcea3-21f9-4bd0-a021-c52ec647091e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722934141", + "DeviceId": "fb0d3d8c-e168-4dcd-b5c4-b7b13c3f0b45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_924453573", + "DeviceId": "64bed291-9792-499f-a28d-5acfdb1726b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846341983", + "DeviceId": "6d765204-a8ed-4bbd-b7c9-31fadc5f1df7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120427289", + "DeviceId": "5882e183-0d1d-469e-84e3-33533c095d1d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87b37c32-9e0b-4816-8605-ff448e3f2f21", + "TenantName": "Tenant-87b37c32" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436189493", + "DeviceId": "e48aa05e-9e70-4b75-9263-64a809c2e17c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671666464", + "DeviceId": "99390fbd-009a-46f0-8aa3-f0cda0300df2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762648699", + "DeviceId": "b1f931f3-03d4-4614-9b6b-e066695fa36c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329666868", + "DeviceId": "4ec0b8d1-1b5c-489f-8441-cf6b904cd34a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_243335378", + "DeviceId": "a151209f-8466-43ca-8169-51bf735bd77f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_923275391", + "DeviceId": "76d5c59b-68d7-483e-ae57-44aef429b237", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bfdb0a25-63b0-45a6-864f-a5a6accca155", + "TenantName": "Tenant-bfdb0a25" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580959726", + "DeviceId": "9ac8d489-2e9f-429f-817c-d49640366e9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_478099209", + "DeviceId": "5d17aefc-4c75-43bd-82c7-7118239a96ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_805556398", + "DeviceId": "2c0c8753-3b06-4632-91bb-08abeb545221", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_884955866", + "DeviceId": "6d97a8e2-440e-4f65-b20b-b6d269247ac9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141731348", + "DeviceId": "1fdf4295-eb46-4b8e-afb2-8ec70a43bae6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_725640269", + "DeviceId": "64d824f5-ead8-4d60-bdb7-9d38f283b8af", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f0db5540-075e-436d-88d8-e8824666d5dc", + "TenantName": "Tenant-f0db5540" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521856719", + "DeviceId": "f0979a1b-0f4f-4fc7-9c27-5bd50ebb88b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468573940", + "DeviceId": "d0185cb4-6f18-4d52-8784-a4c2185402d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349387684", + "DeviceId": "ebe5cfe3-b6e0-4fdf-beef-aadef8ded853", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316758659", + "DeviceId": "127e39ee-11df-45df-8e36-046a1de19855", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_893171847", + "DeviceId": "65edfcc2-41df-4d94-b95e-4a70b318caae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_455591684", + "DeviceId": "46bc8dd8-f062-4e9b-81d6-82e9bd1080c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7fc061a-7d16-4836-99ba-b95a68a9bcb3", + "TenantName": "Tenant-b7fc061a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241164492", + "DeviceId": "38280e64-e4a9-41db-ad90-2ae9441b4e2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761140916", + "DeviceId": "38fd266d-bed7-4b52-8669-0fa739ba7aef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693233316", + "DeviceId": "0fa868b7-42c2-4112-9c20-96223fa39d74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405056259", + "DeviceId": "06b76798-b84a-492a-8f97-d936a0ca88f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_589436038", + "DeviceId": "c8287b48-89f2-4544-a3b2-cb1c61441b0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_358638624", + "DeviceId": "f8a2471c-6d39-4199-a5f2-815b5d9de293", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "427f74ff-6619-4c47-988c-efaa25bf58d1", + "TenantName": "Tenant-427f74ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920478139", + "DeviceId": "702a1311-69b5-4ad7-aca4-f723776bb104", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467253529", + "DeviceId": "0d3a50e4-3579-4ac3-9869-f8fe949b615f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644326781", + "DeviceId": "c2b46c76-f7c3-457c-a43b-2850dd691941", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_516872459", + "DeviceId": "6374d7e6-def1-46d2-9557-008df49e8afc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_303869305", + "DeviceId": "8a98d01f-2ff1-4638-b477-269b7b9dc084", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_506951950", + "DeviceId": "e7363727-f693-44e3-a503-ad9384373019", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2c37846f-3b9e-4268-9550-bb3ecfc1652f", + "TenantName": "Tenant-2c37846f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556300615", + "DeviceId": "1bf0dfdd-da5a-414c-839a-a73365115661", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539235922", + "DeviceId": "104c953c-4864-4ba6-8011-a015728a9e66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818615155", + "DeviceId": "3f9b2a23-7456-47d7-8ec5-016597ae443b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376732701", + "DeviceId": "7a0cfe54-8783-4dbf-9829-3a7e461f9cee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989642196", + "DeviceId": "9ffd1f57-04cf-4edd-a1fb-d00887eb69c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_144719251", + "DeviceId": "8deb8928-dd8c-4853-bcda-77e0fba4545e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dc251810-b976-4428-acfd-b5cb9ad5e67b", + "TenantName": "Tenant-dc251810" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860051090", + "DeviceId": "e52321d2-3cb5-4c42-a757-e62e3a393fdf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245703477", + "DeviceId": "faa73255-2fec-4ef3-a92d-2226acccb375", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_725529716", + "DeviceId": "b1ec74e2-464a-43b8-9ede-bc72cc050db3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193825399", + "DeviceId": "788dd374-1e37-4daa-87fe-f8acb30cf32b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256339676", + "DeviceId": "eda948a3-9f7e-49e5-a4f5-aebbea9e8325", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_808460089", + "DeviceId": "b30f53df-c85d-40ae-a57e-e22c5143d27f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "21ee88b0-bc01-4a96-80b7-d918a2cc54db", + "TenantName": "Tenant-21ee88b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622668364", + "DeviceId": "ed00684b-d9c3-4216-8820-7536cb8605df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347325910", + "DeviceId": "a19ed2db-ed13-400b-84cf-fdee67ad5085", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163071789", + "DeviceId": "e274026a-c3fe-4999-a1c0-847383172a0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868959202", + "DeviceId": "090394dd-fced-47a2-92c1-617690dba8df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406336915", + "DeviceId": "d7156757-f44b-4d5e-a2c3-18fb656ac31b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_589742278", + "DeviceId": "c931fa39-c5c9-4ca0-b8cf-20c784c51117", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5963967a-02b5-4aae-af89-70e94f8ac3d4", + "TenantName": "Tenant-5963967a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529707348", + "DeviceId": "052aadb2-e36a-4da3-98f2-384baa0f9d0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_519559796", + "DeviceId": "61aba331-1f89-4d0f-8a70-4d19e2063423", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372806074", + "DeviceId": "2b7255fe-9d49-4745-aa89-3a082a17f889", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_641319401", + "DeviceId": "2e6938d6-8c47-4562-871a-136011a8fc5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850575525", + "DeviceId": "eeb0e28f-b229-4e86-b58c-ded3f0fa5a9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_307612380", + "DeviceId": "fd1f8e2f-25ac-4bfb-bf95-844fccf1b0cb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bab0da18-5e29-4f71-ac39-87b78e37bbdc", + "TenantName": "Tenant-bab0da18" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797380536", + "DeviceId": "cfaf55db-f3a4-46ed-9c95-4014e591fa8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_689049263", + "DeviceId": "b6c97bc2-e1bb-437f-b60e-363b680d8d3a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_143469252", + "DeviceId": "7a11186c-b3f9-4509-ab60-1d9279087da5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858413396", + "DeviceId": "c89ab353-60fa-4fe9-a697-9e21fa3c3289", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952653280", + "DeviceId": "1f51aace-3587-4469-8760-70ca92f7c409", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_522858870", + "DeviceId": "60d0943e-1e7d-49b3-8a01-b32efc88d648", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "920884cb-89ec-460d-adb1-f54dbb71e0a6", + "TenantName": "Tenant-920884cb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958853712", + "DeviceId": "fb38685f-ee06-4af6-b680-b3e8d39eac97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845747905", + "DeviceId": "82821f1a-3283-4dd6-8aa1-2f8fbdf7c23b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311689564", + "DeviceId": "f74802eb-be43-49cc-b3a1-c43792c57fad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193837474", + "DeviceId": "5ae427fd-4376-43e5-9a12-3c63168140ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331326230", + "DeviceId": "2d7f2d2e-f4fc-4c27-b477-0919da8750aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_608741587", + "DeviceId": "df3e172b-0822-42bb-ac32-67b53bec405e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0b17ee4-1239-412f-aef0-767c3d191b20", + "TenantName": "Tenant-e0b17ee4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536787788", + "DeviceId": "7df1a2c8-fc11-429b-afd1-00de7d181d31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989158499", + "DeviceId": "6df6b32b-c5b0-4929-929a-01eb35617fa5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547212295", + "DeviceId": "f22b373c-bf11-4f96-9cf2-08c2da62556b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956009546", + "DeviceId": "551a7d0a-b195-47df-aab1-58da3901baf6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_394681554", + "DeviceId": "2905b7ed-d614-43dd-a40e-a0122c3dcdff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_146103755", + "DeviceId": "488758bc-9e89-47c8-9b7e-67cdead158ec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f8448f10-3e92-4ffe-a550-12c9e107121d", + "TenantName": "Tenant-f8448f10" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759274992", + "DeviceId": "ca9e0616-0ace-486f-84f5-f5494572e914", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563019632", + "DeviceId": "57fc1b3f-a3c8-4f1f-94b6-9ce70fb2d61b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_497862894", + "DeviceId": "a4c859cf-6cce-4dbc-a99b-6338e2fd52a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264373083", + "DeviceId": "a4e01846-bc70-4cd3-b519-54e7c4b8f2e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858414754", + "DeviceId": "14e91945-5c03-40d9-873f-829543858ecd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_124041710", + "DeviceId": "db9a4825-3af4-47a1-966d-08231c133627", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f721cccc-7340-4d44-b639-a49ac6514c42", + "TenantName": "Tenant-f721cccc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788989665", + "DeviceId": "7532c679-cad5-4e51-a570-32bab4b85b0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548187069", + "DeviceId": "9f6c5910-6b97-45d6-82f1-9f02db7c5d32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236000582", + "DeviceId": "4f195b45-32c2-40be-acba-fb3006e4779e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370852088", + "DeviceId": "2aee3923-799e-4475-8577-8aeb737e0690", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383682079", + "DeviceId": "45abfce6-13df-4e54-88d5-3839421aa611", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_816665967", + "DeviceId": "6be830c7-0de8-4e7f-aed5-ffe3f70caf8e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "deddd1ca-25b4-4394-b403-a83f6f76274c", + "TenantName": "Tenant-deddd1ca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_816927678", + "DeviceId": "d30a1837-1a55-4458-9c44-44bdec2f62e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736801070", + "DeviceId": "639f7caf-c633-468a-bad3-cfec00aac040", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_557494770", + "DeviceId": "9e7d1fca-ee93-4ac0-8dd2-557e3a12202f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530630364", + "DeviceId": "ab5ae38c-a907-49c1-9888-b83082b5c56e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223191579", + "DeviceId": "7ce1c2d0-ddff-4b6e-bde2-7064f2dd3a59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_434140905", + "DeviceId": "9a39c79c-7e50-4e33-b901-09f2d5e4afc3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "85d8284d-4d5a-41e0-a7d0-ecd68d8e9cba", + "TenantName": "Tenant-85d8284d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263841606", + "DeviceId": "bd220ef6-b38e-4b9c-a940-da2593ade6f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755796997", + "DeviceId": "a2197443-6205-40ac-8451-798e99d6860f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_918414763", + "DeviceId": "45444c88-e1ba-41d0-8fb3-ebff073f91a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359110151", + "DeviceId": "b13aa353-390f-4a52-8a7c-8a31565d2c6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116191267", + "DeviceId": "621e313a-2326-4988-be0a-3a2c020d0dbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_587988396", + "DeviceId": "53b3b01d-da26-4add-bbed-110cdd7bae0f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0b23b6eb-f2d3-4572-8a24-96734df4bb07", + "TenantName": "Tenant-0b23b6eb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262857190", + "DeviceId": "d995e574-e71e-4529-be29-3ec9fa69fdaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_527132358", + "DeviceId": "ea4e0a90-fbf7-4192-90c0-cafd798c09e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274990934", + "DeviceId": "785f5166-4bb6-431c-9090-763ee8bcc36d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_437448377", + "DeviceId": "7fef626e-4775-41c7-954b-515439a30088", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583186102", + "DeviceId": "099530a8-52ec-4036-9ad3-41fc02ef2460", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_496739476", + "DeviceId": "a3af9ab5-0f98-4fd4-9df8-a1a925831f00", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "42e555f8-f699-407e-9698-12ac66c7b3ac", + "TenantName": "Tenant-42e555f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136445432", + "DeviceId": "94d52a06-b06a-4ba0-92b8-ed99ad13223a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168875840", + "DeviceId": "fcb01d08-75e7-4674-89bf-2701c3a59c8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432923950", + "DeviceId": "60993861-a0f7-4cb3-8530-0c9bad5db38d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825300138", + "DeviceId": "c42a3414-5c55-40e7-a23a-49e77f1ed40b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351361753", + "DeviceId": "1b07ec64-1787-4cc8-ac03-69a1cc4150f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_543825785", + "DeviceId": "a73bbdff-3aa2-4179-96a3-e3d1ed89b449", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5acc3c9d-f7ea-4ec6-a301-d3a2076c99a2", + "TenantName": "Tenant-5acc3c9d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740069442", + "DeviceId": "fa3aae49-2f6f-4229-b56b-a6cc7d32ea15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984579037", + "DeviceId": "d3351899-2fa0-46f4-a053-f8b1aadb37bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365753905", + "DeviceId": "8f53719a-761f-4f04-8f7b-78715ff8eb0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601080509", + "DeviceId": "10ad4862-9c12-4e2d-b296-cdaf7a0bae82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900463095", + "DeviceId": "fedcd5db-0aa2-48b9-81af-a9231f7398eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_828692611", + "DeviceId": "6b0b5678-1ef3-4dc1-b9ec-f90ac59380aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5bc7933-a84e-472b-9677-74b400d948cd", + "TenantName": "Tenant-d5bc7933" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368242111", + "DeviceId": "361d3665-0ee2-4d75-af83-ea0a9a926388", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349267798", + "DeviceId": "13930b7a-71f2-444c-83b1-ec819ccdc91a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878282159", + "DeviceId": "9495c045-005e-40ae-a0af-6e38bdf090b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_587253252", + "DeviceId": "9f814e76-9148-4754-8acf-c38b18416346", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480283762", + "DeviceId": "e2bd2d36-6e4c-438d-9d80-7e90004489b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_616847420", + "DeviceId": "57fb3fbf-db0b-48cc-a318-e7af1ba3ae7d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3b32bfb2-b6d6-4020-bd51-aeae0dfe721b", + "TenantName": "Tenant-3b32bfb2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314595617", + "DeviceId": "a9d9db3f-40d0-4071-ac38-48861e5088ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561587759", + "DeviceId": "163a9c2b-fbc5-43e8-819a-35217cdef757", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874506806", + "DeviceId": "c3783307-4c66-4970-a6c6-86997ced8051", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_715686628", + "DeviceId": "27e592b9-88a8-440b-9357-fab498c688a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609198206", + "DeviceId": "1aa48b22-0870-482f-99bb-b9476edb6280", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_946996985", + "DeviceId": "a2b7c136-5e2d-4d6b-81d5-985f8a89b9fd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "046938f8-f2d8-4c7c-9f96-7a678a943ba5", + "TenantName": "Tenant-046938f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786871677", + "DeviceId": "e36b2bd9-4a25-476b-a2d0-a42eec81197d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_282360401", + "DeviceId": "2b96e596-d0a8-4356-a389-95cf9b610116", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236571318", + "DeviceId": "75a7f759-d5f0-402d-a0ca-85bcad616365", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_165638641", + "DeviceId": "b96c6b50-e216-4915-b90c-bed31df649dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_120609661", + "DeviceId": "536ad5c3-450b-4ff0-9945-30e09c438404", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_561832312", + "DeviceId": "e3df3f3c-5f99-4f8f-aa94-f04dd14a0d6c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7b910d19-b479-4dc7-a44c-e919f70b3fa0", + "TenantName": "Tenant-7b910d19" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381272090", + "DeviceId": "7a874f43-df65-43ab-b0ad-3e914430a16a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231171855", + "DeviceId": "7c383db1-18a1-4b52-9996-b55e186b6436", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221067019", + "DeviceId": "136bf1d9-b537-4f7d-8049-06056404d7a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_708047132", + "DeviceId": "1470889c-aee9-47e5-bfab-62ab1e78c146", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_445216722", + "DeviceId": "eda955b2-951f-4a27-87fb-1a81fd5b1487", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_551563298", + "DeviceId": "72a36646-2f2d-4b1d-b34c-be21562db202", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "200825de-9b96-4041-87fa-9eb0746051d0", + "TenantName": "Tenant-200825de" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341762410", + "DeviceId": "ff7916b2-6f6d-4068-b87b-df79e5cb96f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483868379", + "DeviceId": "b10d69fb-0e8d-40ab-879e-e3f4a2be6087", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346885858", + "DeviceId": "394c3dda-ddba-46ce-b2ae-4a3fea9b8386", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_904405980", + "DeviceId": "92365f9d-00f0-4bd2-86e5-f3725a3eb4ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688549922", + "DeviceId": "83fb0f30-7bd6-4077-9356-790df3b9ee4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_351805949", + "DeviceId": "097a401b-beb0-4c64-9eae-de1b889cab1f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3a97c848-9d01-443a-97bc-9c38b431d28e", + "TenantName": "Tenant-3a97c848" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349120794", + "DeviceId": "6c2135da-dc4a-4d86-95a9-d9089e71bdf5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233165039", + "DeviceId": "6d12247f-8542-48a9-a511-4f0308561c88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853695568", + "DeviceId": "b8f46161-293e-42f7-b2f2-6a661aee2c08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977827710", + "DeviceId": "623b9dbc-d311-4a84-bcf0-1ef9f0616831", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659769628", + "DeviceId": "03eab7f8-0cfe-4166-ba0b-05ff42e08804", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_142362826", + "DeviceId": "0d45ecef-753d-42d0-b4c5-9b6f7984cd2e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9c985db8-059a-424f-9d1b-38192283bb0f", + "TenantName": "Tenant-9c985db8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484530846", + "DeviceId": "3d0842ad-2141-4794-938e-16988f2549c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_918051998", + "DeviceId": "290a1bb8-8bd6-4581-8d0d-cf9cd9a61d11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492597875", + "DeviceId": "51f76565-5ed7-46f6-a2df-dbc322ad2c50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172067598", + "DeviceId": "dc4962e5-ee19-4440-8b12-c651ed32b8ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936709567", + "DeviceId": "1494ddc3-42cc-4bb4-89ba-42014ddaf7b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_684178669", + "DeviceId": "69777e64-3cc7-4c47-a2ba-4717fdcf74db", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7cb93252-001e-42c6-82aa-b0865aff0747", + "TenantName": "Tenant-7cb93252" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234070836", + "DeviceId": "4ee13bc6-288b-4ee5-ada4-6b9941003288", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234213187", + "DeviceId": "460ac9ff-d724-4394-b505-11f098cbb628", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549176467", + "DeviceId": "19be7415-625a-44ab-868c-569957b62459", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_955082521", + "DeviceId": "62539e23-2389-49f2-aa99-eb9b82197976", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329738643", + "DeviceId": "8981bb72-509c-4fa7-9da6-0cbe932257ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_740325687", + "DeviceId": "2ad55800-80be-44af-9c82-6dac8fd25b90", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e81ea70b-2df5-4f26-a82d-04cc85692d00", + "TenantName": "Tenant-e81ea70b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606933581", + "DeviceId": "d2fb3469-07c8-4f9d-962c-8158c89345f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_523505081", + "DeviceId": "3688239d-ef0e-4049-8da5-2708d9d6a5d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388130209", + "DeviceId": "25f08525-9e1e-48bf-a35b-4cc4f7699a48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860905265", + "DeviceId": "e1be002f-b86a-4b8a-a66c-b5366f5ed0f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119139506", + "DeviceId": "065e2ce7-3b53-4e39-967b-5026dcf4b2f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_848899822", + "DeviceId": "ec893019-414c-4b1a-baa6-9d92b36bb6a7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c87c740a-545c-48ea-8cfd-e87875031372", + "TenantName": "Tenant-c87c740a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_208700117", + "DeviceId": "484698d4-8d6a-440c-9fbf-2a2d47c06855", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_194144054", + "DeviceId": "8f055248-63d7-43fe-9450-45ed78cc9799", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_389468971", + "DeviceId": "43fda845-4741-411d-9cc5-f863d6938264", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231546232", + "DeviceId": "416d9526-96d0-4684-97f6-9d6cbadc941f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740622488", + "DeviceId": "79be6598-b345-4afb-afd0-a73b60623dfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_603541187", + "DeviceId": "4e14f003-d6cd-440f-b719-39d2a5b87c4a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bd57a1f7-e5fe-49cc-af75-752cb87cfca2", + "TenantName": "Tenant-bd57a1f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687001476", + "DeviceId": "6c079fbd-c1b3-454d-8566-d4b40d0e3abe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_426461689", + "DeviceId": "6b184a69-c369-4a64-8d4c-3cff860a7c74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992506275", + "DeviceId": "ec7863c8-a70d-4e1c-afcb-d44ad5179220", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139890401", + "DeviceId": "5705d501-c462-443f-ac5a-a693af121ef0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295172093", + "DeviceId": "ffe18ec0-5bd3-4c2e-a705-30f6389f308e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_449462583", + "DeviceId": "16bb0da2-d55c-40d3-8d32-7409cef002b5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "40f01709-5f55-45eb-8f12-c807561322d8", + "TenantName": "Tenant-40f01709" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914641412", + "DeviceId": "4ae275f8-2a17-4a9c-932d-3100c5e2e2fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153143625", + "DeviceId": "c51ff192-c94a-450a-9d5b-3fead077541d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153145848", + "DeviceId": "9984ce16-9a2d-40e4-bd51-e9e7dd8a5f82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_705400654", + "DeviceId": "8c6610a4-c9ef-4f06-8b08-8469467a7aef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_990470986", + "DeviceId": "e6b5f565-c735-41b8-b4e8-94a3d3166dc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_737241027", + "DeviceId": "5767c5db-75ee-45be-be81-e3241cec5fbf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a29a6d04-1038-431d-bbc5-f52d3cbe0c07", + "TenantName": "Tenant-a29a6d04" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701941778", + "DeviceId": "8d1355e8-1afe-43e5-9870-8fa9570df3e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_216885470", + "DeviceId": "c8a0dc2a-43f8-4792-ad54-f7c407039fad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619669067", + "DeviceId": "5e15c93d-b55c-4afe-99d1-f065476d79b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_230475228", + "DeviceId": "b4e46dca-6ee9-4972-abad-da20c11d9389", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_758424028", + "DeviceId": "49287e15-137f-4e6f-98f2-fbc62edc21d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_387704893", + "DeviceId": "97dfda31-e157-4da5-bd3a-a3f2c03eda74", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2c3caa97-fbe9-4fd6-943d-61cd38083942", + "TenantName": "Tenant-2c3caa97" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925970207", + "DeviceId": "22eb2a9f-60c3-4889-babf-0c8d2cf393e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759994882", + "DeviceId": "d0145f5d-4e72-4dd3-9dbb-c641b80f9b7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611515903", + "DeviceId": "e3a89f1f-1e0b-4f55-a9c1-8c6eb0e48eb8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152400200", + "DeviceId": "d26ee273-95c7-419b-bc8a-0167a3cb2658", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743086562", + "DeviceId": "33189286-97a7-498d-8d0b-c288530b2a64", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_149610066", + "DeviceId": "238a95f8-a18a-40ce-abe0-45eea2961659", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d2eafed7-3b95-40b6-8e6b-42a62b372890", + "TenantName": "Tenant-d2eafed7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693575292", + "DeviceId": "69cdf2f9-9e27-49e2-afc4-5fe4b615ff8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882354190", + "DeviceId": "2d792f1d-5d6d-4863-bd89-1789cebb9905", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192754162", + "DeviceId": "cbb4356c-b93d-476b-8c24-52365d9a4e56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_579430115", + "DeviceId": "d581ad75-723f-470a-9bb6-1ec3b0192401", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601321150", + "DeviceId": "7d4330d4-fc4e-46af-8f8a-761de48a1d76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_563157480", + "DeviceId": "130d67fb-7149-4acd-8021-c4e0a91ef7ab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "638c5524-892c-4b58-aa98-99cb8715c133", + "TenantName": "Tenant-638c5524" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675959558", + "DeviceId": "a8fa3f68-2b60-4091-ba11-c34e81114668", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847538073", + "DeviceId": "1a888c6a-1e7d-49c4-bdb2-752a60e6828a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612994016", + "DeviceId": "29dd5400-3a02-4a3c-a771-9e348735b741", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583041835", + "DeviceId": "2ee529af-bbee-4df0-a47a-37eaf78976a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321005544", + "DeviceId": "88f894c8-7c0c-4ce4-a7a2-8ce3d3f0c271", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_382551399", + "DeviceId": "65c1654f-5620-4e86-9907-66d74b521e01", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea43dfd1-2ae2-45d1-9fb3-765ba6a08f16", + "TenantName": "Tenant-ea43dfd1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837465510", + "DeviceId": "a8913085-1345-4b8b-8d92-f9c9d0fa3fe9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504079664", + "DeviceId": "eb5718c8-2e00-436b-8aca-bd6e7b7ea524", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705719114", + "DeviceId": "e2e30cb0-339e-448f-a243-cca4639acb9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_791411533", + "DeviceId": "4cec31e0-2ac3-4bae-9f28-ce06ecf0486f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454503162", + "DeviceId": "473819d5-fa17-4885-b1f7-e1c31cb36aad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_327978514", + "DeviceId": "03901849-cfb3-4955-975f-0ced98b4ecd3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "abd34a8f-b1e7-4d3c-9f97-93560f75e821", + "TenantName": "Tenant-abd34a8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376587047", + "DeviceId": "79600ff6-578b-41d5-a67b-33fc104af750", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333763592", + "DeviceId": "dbcce110-9290-4b76-9ad0-9643eebc801f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999022933", + "DeviceId": "aec71f4e-8798-4d18-aaf5-f25080c0a4d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_394579854", + "DeviceId": "72158a26-8a4d-4e07-92dd-a9a947d8f178", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410813825", + "DeviceId": "c81ff3e9-9c89-4a03-9cbf-2f03fa573354", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_782807630", + "DeviceId": "f5261c6a-3a02-4138-a48c-7b63776bbc9a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a824cf8-ebce-4e9f-9f89-3ac5d4b0e475", + "TenantName": "Tenant-2a824cf8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549646392", + "DeviceId": "d76ea49a-8faf-49af-8d10-dddf89b93356", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461680267", + "DeviceId": "a23403cf-e941-4d9e-9a3f-78405b79fdee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786069043", + "DeviceId": "3e53c524-6cc3-4469-a029-b86ac20e7824", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725916049", + "DeviceId": "fd97b1fb-4897-47b0-8182-7d768e4e4a32", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670258193", + "DeviceId": "901ab30e-d783-4f77-b356-c6fa78d6b022", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_536036029", + "DeviceId": "f63f5bdf-cdd4-434a-8e4a-7a018a6c4711", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f89449e6-0d79-4ec8-b2d7-fbbe6f55b7ff", + "TenantName": "Tenant-f89449e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824621147", + "DeviceId": "2c88e1e2-e5e4-44a9-bbed-b10fd429b1b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267612788", + "DeviceId": "655f3d95-50a0-45fb-8c13-35e3e957ec51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186324656", + "DeviceId": "88b7ecb2-ecde-4e10-994a-7866a477f759", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_367972498", + "DeviceId": "340a8e9f-37bd-4a5e-a261-6aab7fcd20e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512799316", + "DeviceId": "9026bc9e-b8fd-497c-b62e-c78a1677b0f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_614621928", + "DeviceId": "0d895436-e961-4a32-9f85-903b09191fef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "653ab086-8a88-4554-a282-3bcc805c6a0a", + "TenantName": "Tenant-653ab086" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513861282", + "DeviceId": "d674d7b1-2a13-41b8-9fdb-f3caee9f3232", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_785010430", + "DeviceId": "caba1687-f55d-4fc1-9776-6f16db329dab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123972027", + "DeviceId": "0bfc3a2e-b149-4ae6-aed5-b72a53446eb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_420898292", + "DeviceId": "abc3e7af-2bd6-4089-b69a-0d960c66ff8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841768428", + "DeviceId": "21b66be9-5611-4ad8-94bd-3929924328b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_604113055", + "DeviceId": "d55e9073-67b2-4ae3-884e-e959d8915e64", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dd8e0dde-b2fc-4226-95f6-c7f77bb78399", + "TenantName": "Tenant-dd8e0dde" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849690213", + "DeviceId": "72448e9d-cc9a-4d6d-9917-c0bc64d096d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_222196917", + "DeviceId": "eaace394-2be2-436c-973c-9dce93a49b28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_715060870", + "DeviceId": "03b629ab-b2db-4258-8e53-15915d9c7b73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714441119", + "DeviceId": "d0758abc-685d-4e91-afa0-b6167858a3d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107540548", + "DeviceId": "6ec22c5c-3dff-4b37-9d72-6f8da1a4a681", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_840422717", + "DeviceId": "77df667b-7568-4067-bca3-5d394f17c6c8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c87e402e-abb7-46c9-9ff6-08b2839eb36b", + "TenantName": "Tenant-c87e402e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679605846", + "DeviceId": "5ed22fd9-aebb-4c4b-aa4a-9b0f493d2110", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784700116", + "DeviceId": "2ded68ac-92da-47fa-a2d2-d5536e179507", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377702532", + "DeviceId": "e33451de-dd59-4c42-a69c-0a435432e9c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916279671", + "DeviceId": "b0e2f115-2b3a-47c9-8868-02299d8bfa67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405270562", + "DeviceId": "06717e7a-7a7c-40a4-99b4-4cd3a0709316", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_911723230", + "DeviceId": "02436476-5b8d-4780-b63f-0bf8e68ce492", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf892e66-7a5c-4123-90c3-02e9fdbbf0b5", + "TenantName": "Tenant-cf892e66" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_961979457", + "DeviceId": "e397c77d-5499-4348-bcfa-5941320e00fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140926708", + "DeviceId": "ca5e62ed-83bf-48ce-b1b4-d0e622c2ffdb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663766700", + "DeviceId": "1777dd8f-fdac-420a-b9ed-67094c1c7646", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793385715", + "DeviceId": "bfa24077-2e0e-4efa-af44-a33b5c4c8486", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590636029", + "DeviceId": "cee2d5fd-b362-4136-b19a-010ec1244c88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_417391932", + "DeviceId": "0440d466-96c6-4a87-b12f-6ab3d4a14df8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e3333582-c4d3-4fd6-84ee-5a5ad15c12a7", + "TenantName": "Tenant-e3333582" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305445954", + "DeviceId": "c5296edd-9951-42ce-82c4-83ca596ad0a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109011995", + "DeviceId": "c5d8e09c-a674-43bf-9f0e-8b0de9270903", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_840728833", + "DeviceId": "a66030d8-bc90-4683-a05c-ecec48673490", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200058997", + "DeviceId": "d7df2bf9-22ee-4c0c-bd80-c7a1811006f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763001722", + "DeviceId": "771068e1-6a41-4e85-9381-a7d289ec3ac6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_599983402", + "DeviceId": "fb47293f-ef1f-4ff1-9093-998124f8b065", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d3d96b2-64d9-4ef8-8c4d-433f00bbc9cb", + "TenantName": "Tenant-2d3d96b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413515367", + "DeviceId": "e1ff7041-cfcf-4b5a-ad01-8155abd98854", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741641388", + "DeviceId": "2654e64c-7122-402d-b982-1f55b4d92647", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585934644", + "DeviceId": "bd7fb82b-ba5d-4d50-b2c0-b6c4614fd031", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_162378734", + "DeviceId": "eebe5910-4e0b-4033-bb59-8f9a2a4a324a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260357564", + "DeviceId": "b7237646-6d65-4326-ae95-cbc52740c047", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_201212706", + "DeviceId": "8e89c263-961d-4787-8a70-8b17be2ad401", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7268cc6d-c12b-4733-9b04-392b7a9139cc", + "TenantName": "Tenant-7268cc6d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_845932793", + "DeviceId": "f6c65ad8-3d18-41e6-8396-fdc5474334e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302451407", + "DeviceId": "6b272e0c-3226-453b-b3cc-22cbf2e739b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896244997", + "DeviceId": "dd935972-3148-4afa-bff6-d24764cd1f14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599006501", + "DeviceId": "5c8eb108-ca38-428e-a244-3f107ecd2d6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748811136", + "DeviceId": "ef3a5470-465e-431e-86d9-e4198bc6c571", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_604646746", + "DeviceId": "cb180ae8-66e6-440b-9667-0e97f89be01e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "70fb9a24-7312-4a7d-9ca5-13283bfded67", + "TenantName": "Tenant-70fb9a24" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957216150", + "DeviceId": "277a8d98-ca57-41fc-b065-9319ddc9d8c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693934596", + "DeviceId": "eee8cd29-93c2-449c-9c53-0694e1c16f9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675219979", + "DeviceId": "9382843b-d786-4026-b27a-981edf7fa797", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582253343", + "DeviceId": "ce766654-bbbe-49ab-8899-6ef47fe47feb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_638088699", + "DeviceId": "88dee41f-77bc-474f-a661-aaa0671e4b48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_312900907", + "DeviceId": "bdbabd48-e595-4085-8b43-e0259cbc4ec4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0c85dad7-5d4f-40f6-a376-aeac2bc19d20", + "TenantName": "Tenant-0c85dad7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_473748251", + "DeviceId": "c569db53-efda-401d-b9e2-25f56d3ee9cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819871814", + "DeviceId": "207678a3-55a4-42eb-b8eb-232e63314e8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739122919", + "DeviceId": "9cc325f1-f33a-4184-9735-719adb682640", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452071518", + "DeviceId": "c2cf4605-6d70-4973-bd06-54d8bbce178a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_800227924", + "DeviceId": "77132efd-dd53-4543-a94b-642c01ab8971", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_978331973", + "DeviceId": "7d5158d5-2d1c-49e2-97b5-a2af13f35aca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1ccd36a9-5573-43e6-860e-521fec7e0533", + "TenantName": "Tenant-1ccd36a9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467745539", + "DeviceId": "01967c6b-ea9b-4104-bf70-8d2421b78bf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232192672", + "DeviceId": "3bb58ff7-4f1e-4a5b-ae0c-bccf5bb28ebc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482196798", + "DeviceId": "3e5d88c8-0479-4f03-9261-10d0e8c48267", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242001564", + "DeviceId": "022bf2ac-ac71-47ad-a2d2-d1aba470fe83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_343707919", + "DeviceId": "c494075a-3700-48cd-b5a9-6b10d1705cea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_605453276", + "DeviceId": "120ed53e-a30f-4fbf-92fa-947115dbb8ae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5a81eea7-3560-44dc-9b9e-d5fc000c4f32", + "TenantName": "Tenant-5a81eea7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_863771883", + "DeviceId": "85e2385a-5787-4da7-9a7f-9b133b8ed2a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_915119548", + "DeviceId": "9ed21a09-410c-4645-9aee-5ec0141aae66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948318220", + "DeviceId": "172af8f8-d9e6-44c9-940c-49a1ec825525", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996851933", + "DeviceId": "1d591407-b8e8-44e3-9178-11afad6da396", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_200112382", + "DeviceId": "d12b227c-d2f4-4350-ace0-15ad61c0a347", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_330462693", + "DeviceId": "c8a041cc-c92c-4bd3-87a5-d4ee9c204dee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "58ff9bb4-a4b8-4d75-ae0f-5eb871dbe819", + "TenantName": "Tenant-58ff9bb4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_576798701", + "DeviceId": "dfed0ca5-112b-4923-a558-eaadec609713", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492271709", + "DeviceId": "50f484ee-2faf-4063-aa0e-59aad40b99a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_266906421", + "DeviceId": "2f13641f-7980-406d-9978-ec5ae27ece60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615137696", + "DeviceId": "3090d84b-0b28-4475-9e53-ad76ecaa869f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235331461", + "DeviceId": "1bbc2c99-c5dc-4ab7-8d8a-112fc1045bd2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_764209409", + "DeviceId": "1c205aa6-7ffc-4045-915c-395ed1b235c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3285bf9d-10d0-413e-9620-6076e7a217bc", + "TenantName": "Tenant-3285bf9d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726791893", + "DeviceId": "77799e8c-0713-4d9d-8b59-99b73071da1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598761624", + "DeviceId": "450ef345-0563-4e20-a95d-06a97c7cfb7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899887453", + "DeviceId": "15b906b3-8cdc-44ab-89a3-4d703c68900a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351408999", + "DeviceId": "3b29b33b-5ee8-4e8b-89f7-07d595456cb4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549950010", + "DeviceId": "0561b53e-64fb-4f09-be72-1d842ce995ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_885017330", + "DeviceId": "b9151c03-33d4-4873-ae60-d9da83127834", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d6de2bb8-a8b2-46d4-ae66-20cef6527c91", + "TenantName": "Tenant-d6de2bb8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408173459", + "DeviceId": "f3b30307-d736-4224-a850-38fbcf9c863f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_776016574", + "DeviceId": "daa2548b-9c92-4190-81fb-d352f0bee007", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350423490", + "DeviceId": "fee9f472-aeec-4f0e-b411-31861bd002cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132611497", + "DeviceId": "fcb80f96-270f-468c-bef9-1573f4d6da7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_529915126", + "DeviceId": "80805053-bc05-459c-bda7-20ce0a5cc2a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_297440324", + "DeviceId": "934ee743-7a78-4220-af27-92eae1be0419", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "221a06b9-1eda-4207-8f66-649013ae064d", + "TenantName": "Tenant-221a06b9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_910052653", + "DeviceId": "a2fcc800-e74c-4ee7-b466-741d3e597a7a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_894494148", + "DeviceId": "f83e363b-c904-4201-8be0-18a4c2076db5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912325333", + "DeviceId": "ca0dd7ea-352a-4658-8df1-9ac8f6312546", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374108481", + "DeviceId": "f1fba488-ef4c-42e0-a159-21cc069dbfcb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584379012", + "DeviceId": "0c5272f7-846e-4296-a3b7-5a9ac3ad94a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_181211253", + "DeviceId": "2ff646b9-6f09-41b0-8f82-2d8f030e9d17", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "94c209f0-08dd-426b-8fd0-cd2b0b5953cf", + "TenantName": "Tenant-94c209f0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147184510", + "DeviceId": "e9a18c99-0200-435a-8d62-a46a89e6aea1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964966939", + "DeviceId": "a68a2356-ff4e-4855-8079-4fefc36d64b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940187744", + "DeviceId": "ec971862-1fbd-473d-a5ff-cb96056cbaf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_620758693", + "DeviceId": "a98efaba-e0e7-4d79-bcb9-5a51c856f7b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_685982751", + "DeviceId": "2d971b66-04fa-4e16-b6d8-e9f9a507b620", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_762246216", + "DeviceId": "f4d27448-e2d0-4953-b64c-2d2e9930bc98", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ceadac74-4f2c-4326-a9ca-3394e27aa188", + "TenantName": "Tenant-ceadac74" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862517809", + "DeviceId": "73836c56-79e2-402b-9a99-f9e20c144c21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731641605", + "DeviceId": "61715afa-2543-49d2-9bfb-ecdaaba5a80e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_861690423", + "DeviceId": "ad782b0d-10e0-4d20-9c64-4bc758e12d71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570807386", + "DeviceId": "a4efb612-f51b-4ab8-9db9-0e66604dc5de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_971750159", + "DeviceId": "ec4f66fc-42b1-470c-ac08-24b01621c6f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572315038", + "DeviceId": "12483119-8759-4b6c-9f71-4fad78b94f83", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "afcd8a74-f838-4306-ab9c-381fb85a8f67", + "TenantName": "Tenant-afcd8a74" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_481109113", + "DeviceId": "f1310923-0452-4a2d-b393-c282af5829e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228699007", + "DeviceId": "ac89f22b-9854-4b6d-99a6-efd74d92b977", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498276927", + "DeviceId": "f4cefa4e-cb18-4bb4-a89d-285b60ea9f79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119389502", + "DeviceId": "84073a99-0118-479b-81f6-e4122cff83df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138285321", + "DeviceId": "432d35cf-2ef1-4fd5-bdb6-360c52ae542b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_451147451", + "DeviceId": "f3a387a0-e8b0-4dd5-8115-c901c31b5684", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5cae700d-8444-4027-ac99-795ac57ea5b3", + "TenantName": "Tenant-5cae700d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864237604", + "DeviceId": "9f78cf49-f5ea-4f24-8822-cbdeb7a01cbf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273025166", + "DeviceId": "d5e9a0de-da07-4e0f-a47e-2bb99156482b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598042397", + "DeviceId": "1b788a97-2534-464c-b77c-2253e5d06239", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679090144", + "DeviceId": "58a67f98-e152-4c44-94b3-119eb530f988", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_823717988", + "DeviceId": "1191c478-3b02-4cc7-bb11-fbeace46d9cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_271780502", + "DeviceId": "42a6a676-056e-43fa-9cb6-3b502d71419c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a870c5bb-ced3-4536-bf3c-7990d9bf2021", + "TenantName": "Tenant-a870c5bb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_660755723", + "DeviceId": "c069618c-eaf2-451c-ba04-4c893933547c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976774781", + "DeviceId": "d397198c-9b2e-4e20-9da2-611dc212f35b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571200807", + "DeviceId": "38b0b26f-fc35-44c8-94df-5513c73c11a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361880695", + "DeviceId": "0a11ff37-0c98-468a-92c7-c60151d6fff6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_975575915", + "DeviceId": "a9daa835-28ff-4c4b-bcb7-edeb5fc40758", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_956038828", + "DeviceId": "3306837d-e84e-4535-983b-4fc25328711c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cb8dc2dd-4fe1-4741-aac4-67e7018ab2d4", + "TenantName": "Tenant-cb8dc2dd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547877182", + "DeviceId": "f4ffe3ca-50e2-4d63-934b-456a899dc786", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_775119568", + "DeviceId": "a0e2f59a-3e22-4ba2-9121-96873bd346cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_517989579", + "DeviceId": "fa540602-3c0b-41a6-ab53-bfb10cd20d68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442176828", + "DeviceId": "99e7313c-0275-47b4-ac5b-620f10878344", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260203305", + "DeviceId": "41d9a988-2247-469b-a42d-7e2d60ca7dbe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120997016", + "DeviceId": "124b0b6c-ab8b-42d9-949e-7c53e0f75dda", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "53b3f425-d2e5-4211-a2fc-7e37a3838171", + "TenantName": "Tenant-53b3f425" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485300568", + "DeviceId": "6f7188ab-3146-411b-8fed-48bc95399174", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718657177", + "DeviceId": "8181c98d-bfe7-47ee-bb9f-bcab41e4a67f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841699867", + "DeviceId": "ec767d7f-f02c-4a78-be9d-07adfbce1b19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525069434", + "DeviceId": "ffbdc963-44dd-4dfa-81d4-07418406d613", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_536259199", + "DeviceId": "6b630cea-916e-4b01-bec9-40fd539e1bae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_648665466", + "DeviceId": "94b572fe-1372-4a4c-a5c6-65109fdb8145", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "24f6d72b-4bf3-487d-a381-4dbdf44e7df5", + "TenantName": "Tenant-24f6d72b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476472163", + "DeviceId": "108c2451-413c-468a-af66-93f47a6e1f95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_937407618", + "DeviceId": "37ea4b98-d49f-4011-bc37-bfc285e7fa71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606366783", + "DeviceId": "65220ee1-be90-4cab-8a50-56a000b4fcfb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_518048202", + "DeviceId": "ec2bc37b-3784-4ed0-ba17-a72abd632668", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825622947", + "DeviceId": "04522be5-5fe5-47cb-898c-f047e6119de1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_705818431", + "DeviceId": "cddde860-03bb-4fdb-bfa3-c5f0870259ea", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b52cd27f-11d4-471b-ae10-415dc592573c", + "TenantName": "Tenant-b52cd27f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_460142668", + "DeviceId": "441badbf-e20d-4e5f-a8a0-9f21b51fd75c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875188645", + "DeviceId": "a1dafb85-4b46-4f27-b7d3-79c4c3642a2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786844526", + "DeviceId": "f952b69c-623c-447f-ac20-a5b9163ecff3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902760797", + "DeviceId": "05ea1e5d-3326-4378-9581-6db487c77a6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_689376707", + "DeviceId": "949f2650-963c-4d57-85ef-ed02d42c7d75", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_765742982", + "DeviceId": "3fec2fa2-b5ca-4eab-918b-4ea660f9c03b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fba3a174-ba5d-48d9-a58d-248ec979ab3f", + "TenantName": "Tenant-fba3a174" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_937059426", + "DeviceId": "fced901e-f3a3-4ba2-ade9-ac317b799e53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176772820", + "DeviceId": "df339218-6e2a-481d-9cb7-1d37cda10d8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_195810536", + "DeviceId": "63164b41-4bbb-44b8-907e-dd3f99f0f488", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_272291846", + "DeviceId": "9ce47d2e-9554-4800-bedc-b9b9be523d82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741394433", + "DeviceId": "b0e0fa41-f73f-4323-a5de-c0da59185359", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_309325285", + "DeviceId": "77b0a2c9-93fe-428f-8576-75f24eb1885f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "22aa33c0-d809-4429-ac17-139df3faf9ba", + "TenantName": "Tenant-22aa33c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_624751816", + "DeviceId": "13818cce-f2ad-497c-b68a-f89233be1403", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436121028", + "DeviceId": "74c973e9-7456-4366-bd5d-f713fa7b14ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316015859", + "DeviceId": "5d4c77cb-cabd-481e-a158-9d9955d868c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_207866420", + "DeviceId": "8565ae92-3e8a-4d93-87ba-85d19149b7fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453322812", + "DeviceId": "9f962eba-2bd9-4c65-a9f4-ae04e40b184e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_535231550", + "DeviceId": "cd4f8da8-5ccf-49f8-9a22-a67a28f28283", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "639a1638-444f-4de1-be39-894d1549e658", + "TenantName": "Tenant-639a1638" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213333372", + "DeviceId": "53bf95d4-5756-491f-b34d-16ddb226ec18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313334477", + "DeviceId": "076c0f77-9ead-4a2e-8db0-10c4079239cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_840665022", + "DeviceId": "7464092e-2d18-40d0-bc08-f9ae8b171b09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467913479", + "DeviceId": "bf2beeed-de32-45ca-bd39-2288fd9597fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747352600", + "DeviceId": "6414bf52-f1cf-4e5e-9419-1daadd37f748", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_873308298", + "DeviceId": "47489f8d-0666-4652-95d2-b5045c6e5cea", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be57b781-9840-4d0b-b7ba-9bd8993e0124", + "TenantName": "Tenant-be57b781" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_390016382", + "DeviceId": "f9de5a16-b5a5-416f-af1c-fc252af8327c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_426483247", + "DeviceId": "caa903d8-8ee4-44aa-be6d-5868b915007c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_499249508", + "DeviceId": "c6682716-6069-4df8-9016-f8e9d58093a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_120891756", + "DeviceId": "9ed35291-5741-46f7-a5e0-95fe0c6ece15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963521865", + "DeviceId": "d400dd79-970d-4cca-bdf3-c130f57e2ed6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_183287783", + "DeviceId": "25165c37-376e-4267-b26e-5e1116968233", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad932b7f-2e35-42f5-ad05-9b272d559150", + "TenantName": "Tenant-ad932b7f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914202449", + "DeviceId": "d3031775-85d5-4dc7-bc11-bab00b716d31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102431509", + "DeviceId": "6518e8aa-828a-4ab7-b1de-76dddc02cc2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606170500", + "DeviceId": "d91003f4-320d-4705-8e44-4acb0ab2d3d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733980183", + "DeviceId": "abf4aa62-fdd1-44e6-b900-cee9214e8c2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711178500", + "DeviceId": "bcc817b3-7a51-4220-a21f-40ab5a8a4fca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_577015046", + "DeviceId": "fd54aab0-4f57-49e6-9b09-da184af28ad5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d2f1ee1-a08c-45aa-9d34-9262b558d9d6", + "TenantName": "Tenant-8d2f1ee1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500092468", + "DeviceId": "f58a12bd-ed2e-4db8-b307-68229fa234bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568257353", + "DeviceId": "1f42c72a-8a19-4efe-9c92-5b00d0571ee8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302757814", + "DeviceId": "3bebe3a6-6b00-4df7-aab3-5a5ec75b7ea9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_269307570", + "DeviceId": "11f3bbaa-de5e-41c8-8ed5-6bf9343fbb2f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702822804", + "DeviceId": "bd5554bc-a1bb-49f9-8829-cb80dc95b03f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_515660802", + "DeviceId": "918d0bd5-87e0-4620-9cc9-3fba2e13d9f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3f67d496-6c96-4be9-8c48-e72a7c82cfaf", + "TenantName": "Tenant-3f67d496" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127562780", + "DeviceId": "ce6cd542-964b-4cc5-9e06-d8ccf978fb5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_961418016", + "DeviceId": "9f9ef4e9-efcf-468a-905b-ad8589783ca8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836519400", + "DeviceId": "d72636b2-c1a3-4d30-bc44-0ee634ad4f79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341414903", + "DeviceId": "82bc8b84-e845-42cf-aa4f-3b03437fae90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799676104", + "DeviceId": "54a3eeaf-7f21-46c6-b824-82e95e195882", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_911177146", + "DeviceId": "9f1e5127-c944-45db-974c-93cb133f3733", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "132d55e6-5283-4fb5-a02b-9fbc15f65926", + "TenantName": "Tenant-132d55e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_523089614", + "DeviceId": "f96b18d1-0b12-40d0-ac34-3dcb26b2cd3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139202762", + "DeviceId": "d32f46fc-b983-41e5-bcbc-161c06282e5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_258614104", + "DeviceId": "1c2e9099-6277-4c3e-9ec7-f3f3a42746a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_478529879", + "DeviceId": "bffa6f88-c24c-4ff2-a80d-fdaf626f0431", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310595577", + "DeviceId": "8015ae8d-9591-492f-9acf-f261faa839f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_840001781", + "DeviceId": "8f3019e7-7c52-4018-9cb8-42583013ec30", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1387f0d8-77e3-4867-bd4b-9a5781f936c7", + "TenantName": "Tenant-1387f0d8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127040004", + "DeviceId": "80bd91ff-465c-441e-bfb1-2694c4ea812d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677033710", + "DeviceId": "8ade7790-a9dd-41a6-9011-9aa9045b65b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609994073", + "DeviceId": "f8cc6bf5-dc8d-4e1b-b526-3c38190d04bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_768770354", + "DeviceId": "1e384602-d07c-4017-ae74-f0e2c36c5bf8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_752699188", + "DeviceId": "09080212-99e0-4376-99f2-c12461ead6e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_766370303", + "DeviceId": "5b888369-ab30-490c-ac9a-12fd2f2f15ea", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c552f500-2047-471b-8e7e-3fd8f5ece332", + "TenantName": "Tenant-c552f500" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740969209", + "DeviceId": "349d3ab5-4650-4dca-8790-0eeacd0939d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819532407", + "DeviceId": "40683842-2449-4b5a-90c1-e1be3fa4c87b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362976179", + "DeviceId": "1f148db8-4f7c-4a01-8458-452034b13aac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342733007", + "DeviceId": "425bd401-38d2-41e5-9c98-3a2f52b93819", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395709766", + "DeviceId": "06df137d-cfb2-4d84-820e-8b91601080d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_883716121", + "DeviceId": "02a3bc27-a025-4e94-a742-9dc3740b04f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a3552e4b-6fb2-45cf-ab84-36cf08b6b169", + "TenantName": "Tenant-a3552e4b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_814844813", + "DeviceId": "6841c636-9d01-4066-8372-1993a6e50957", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139575131", + "DeviceId": "71b7c238-6d10-45f1-9db9-276c3ce4594a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602153638", + "DeviceId": "55b1603d-9318-4f7e-b7c7-05cac1dd4792", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_822893302", + "DeviceId": "038a9fe8-9a35-4706-b875-e38c0d555e54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_976398086", + "DeviceId": "351f8dfa-4521-45fa-a7a2-cb40ff2666ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_317697572", + "DeviceId": "36b7a024-48b0-41df-a20e-e597cd5c9ec1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97561b8d-3190-40a5-94c4-04507b293c7e", + "TenantName": "Tenant-97561b8d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345986307", + "DeviceId": "913b26c0-5938-4fcb-88f7-1a71e0f5ec29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388416022", + "DeviceId": "a9fb3dcd-8dc2-44f1-a275-c9c6f8f97430", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374745449", + "DeviceId": "7d18ba92-82ab-405f-aead-47c78b060410", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359318427", + "DeviceId": "446a6239-2226-4345-b5d3-707490d3d917", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198543342", + "DeviceId": "a3be95ac-a698-44a9-8016-543ae8ade6a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_868763308", + "DeviceId": "bf019d66-a8f8-400e-8be0-f449ea647e8a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "49b6e66d-5936-4fee-8eba-9457a0ba4769", + "TenantName": "Tenant-49b6e66d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_306154303", + "DeviceId": "95cede0e-b034-4015-aed3-a57dc5ef5b80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_871206135", + "DeviceId": "ab10148b-8dc5-442e-abd1-86ac99186f72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616150900", + "DeviceId": "5a8ee03f-8608-4ad8-bab8-75b654bd0948", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_311700489", + "DeviceId": "ff53cefa-5dc4-4867-9a56-10bfc8cb5197", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772003335", + "DeviceId": "56f7b7a3-cb8a-46fe-8514-c8029c1f683c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_476061988", + "DeviceId": "6d16ac7a-58ab-4324-91bc-22613c8f5d5f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dc3b6816-77be-4276-ac82-9e0640f9062f", + "TenantName": "Tenant-dc3b6816" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413926783", + "DeviceId": "225774b9-a122-4bf6-9786-2e74eeb23f5c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119341402", + "DeviceId": "fc0e1bd4-52a9-421a-b62c-c5f697b9f42e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864441039", + "DeviceId": "9539955a-b330-482b-844f-383bf5ecb352", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527650595", + "DeviceId": "f6893b03-62c0-42e6-85df-4d0049e76ed7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_202111389", + "DeviceId": "4952a78d-7e3d-4eaf-b3cc-43f206b0592b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_342772641", + "DeviceId": "11bc750a-e769-45c8-852f-a72870cdb0a6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2eb82401-9458-42fb-a38f-57a83e11bd8e", + "TenantName": "Tenant-2eb82401" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904600718", + "DeviceId": "701a160c-314b-4f6b-b7ab-b0a93ccaef37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924784602", + "DeviceId": "db7ff3fd-d46b-4555-afa1-3790a0d4db69", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490242679", + "DeviceId": "2ac22c35-890b-4e64-bd3b-c6ad7eb37110", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818251651", + "DeviceId": "e47ed528-4247-4206-949a-a0a7a17ad7cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193259223", + "DeviceId": "56014fc7-aec6-414d-a37d-88a02fa66223", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_292080308", + "DeviceId": "4f3e02bf-d03b-4151-afe8-61ed3687159f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aff0a566-5e34-485d-b988-ed68fedc0dfd", + "TenantName": "Tenant-aff0a566" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_469579878", + "DeviceId": "23fa60a3-98df-40ce-aa02-af3706f0d511", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_527912380", + "DeviceId": "0ad1ae85-a3c1-4be3-82fd-fada9bbc3c52", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973318521", + "DeviceId": "ac2935fb-1215-441f-a51e-c22ab8d61294", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908560375", + "DeviceId": "413b5f3e-a29e-4d7b-af22-a35e26d5a60e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550966571", + "DeviceId": "fb6b7639-bac1-4cae-b1dd-c7ae87c1e4db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_975847003", + "DeviceId": "88bdfc1c-cb67-4b14-8f44-996959099c40", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea71a324-3c14-437f-8bc6-872087f005cb", + "TenantName": "Tenant-ea71a324" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_205966241", + "DeviceId": "1489d9da-1c35-4d24-bd28-e5d4baaba2bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703314809", + "DeviceId": "98525c1a-08c9-4e94-b3be-aba2375080cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461764235", + "DeviceId": "6dfd5768-07e3-4bee-8cc8-8789eae8f1ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_412900087", + "DeviceId": "7be2c8bb-9e32-4dac-8cd3-f8b77d3a8263", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153268040", + "DeviceId": "a16a0b7f-d086-472d-89be-e7a637c47a17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_395577377", + "DeviceId": "8cbed85f-e063-47fc-9593-9d27fa4523e4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3f65ca65-280a-4eb4-8f3e-6858abbf50ca", + "TenantName": "Tenant-3f65ca65" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_263390061", + "DeviceId": "faa6746e-23de-46a6-aae3-df96681fe5d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692546040", + "DeviceId": "4cb78991-8f1f-4b54-8044-45d2721ee877", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315129261", + "DeviceId": "ca4564df-16cf-4bcb-af78-df233d734275", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488759247", + "DeviceId": "5d214d2a-beb1-474e-80c6-cc4d88acc132", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152912570", + "DeviceId": "598cb91e-7cc9-4bee-8a98-35a2f63b9049", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_965987747", + "DeviceId": "e632c936-6b23-47af-b9dd-5a02a9feefcd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "67cbbd80-1039-415f-8d3b-af491e581ef4", + "TenantName": "Tenant-67cbbd80" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831272357", + "DeviceId": "0d87c728-8973-4f64-8554-6d817b517f49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474723413", + "DeviceId": "93a4c0c6-21c1-46ba-8f0e-5a396e41e0c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_165611953", + "DeviceId": "1813387c-f0f3-4236-98c9-6156b3b91253", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_248533499", + "DeviceId": "aa8cf85a-3ec6-42e8-85b2-d0521fda7d9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868699006", + "DeviceId": "3f7e7455-2f70-49f5-ad04-e8eb73cc86f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_947693514", + "DeviceId": "d8c304e6-6a8f-4474-81f2-5b75be6688aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a0812c84-3111-455d-bf49-f7eb3ac40adf", + "TenantName": "Tenant-a0812c84" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578078090", + "DeviceId": "963dad77-ff55-42ad-9dd6-2eece5ed63a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652621840", + "DeviceId": "b48f35c6-9427-41be-b10a-11b125d90db9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638337963", + "DeviceId": "27eec5b3-8244-477f-a195-93f02bee659b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_685454665", + "DeviceId": "d17c2b6a-922f-4d57-b871-65e63f786fa1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238898174", + "DeviceId": "da071d8b-2295-4038-aae8-f453e2976292", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_236866627", + "DeviceId": "3f506a70-3c24-439f-965b-4c3519f40769", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f395a5ff-7428-44f1-8279-4929e62ca2ee", + "TenantName": "Tenant-f395a5ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_791048847", + "DeviceId": "5c8edb12-55b6-4049-b18c-042ca2f1a871", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986601325", + "DeviceId": "2be121f0-d58a-4198-af64-b918983d3554", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_603402100", + "DeviceId": "64e415fb-cecf-430b-a665-179cc3d0a13d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_237282329", + "DeviceId": "4a6490d6-8c12-40d4-be97-0e1fbc913e52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_537305333", + "DeviceId": "971f884c-636b-4d42-b15d-a5aee8dc7112", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_631167180", + "DeviceId": "e2966c3a-1e11-4d2d-a880-951797a5a0ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4e3f9cb2-5c1a-4d01-bbde-7475aaa23bcb", + "TenantName": "Tenant-4e3f9cb2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521112916", + "DeviceId": "53628a61-f5f2-4a27-ae71-4125fffa415d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_280907174", + "DeviceId": "f5c6de81-53a3-4bc6-ad66-a4e09eeb8c61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305515342", + "DeviceId": "ca2ce8d8-4d29-46c1-b013-cacfd778fd6b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961318072", + "DeviceId": "346bcae2-52ef-4d77-8734-c96863b9c252", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490104375", + "DeviceId": "ca660590-6c17-49ee-8e76-2814d6f9c924", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_346842947", + "DeviceId": "490f71aa-8eac-44d5-9c8c-ba405f4e8662", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "42d3babc-4d0e-4cbb-b5c0-7c61f8a616bb", + "TenantName": "Tenant-42d3babc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_191391488", + "DeviceId": "74658cbd-c997-427b-90d6-2158c8c59b71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826742181", + "DeviceId": "9ef59239-2d7e-49c1-aacf-17dd0e8485d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103042565", + "DeviceId": "c7bc2474-5a30-4616-be6e-1b2c94d6706f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_104292347", + "DeviceId": "827a3f54-7ba4-4aca-868e-fbb689efdc2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_768133956", + "DeviceId": "0323e8e2-987e-4b0c-9095-4cc690c4a79b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_582878840", + "DeviceId": "6b8a05cb-d1d4-41de-bc7a-f282a4fad34d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d07741a0-1dd6-43f4-956c-720304f73490", + "TenantName": "Tenant-d07741a0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545315410", + "DeviceId": "0e28a8bf-48e6-4529-8593-c15e7e2f60d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_884093760", + "DeviceId": "dd359333-6209-422f-b43f-788cdb969537", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625551204", + "DeviceId": "403a8897-ebac-4426-9e39-28acd0457665", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886633056", + "DeviceId": "10f115e2-c038-45cd-9e7c-fdfdd8564e53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283173932", + "DeviceId": "638f9896-243c-4693-bddb-fbc8b5269b76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_571601913", + "DeviceId": "2574538c-9d16-4349-817c-33404ca2f39f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ee4b6359-6d69-4ad7-8737-79176fe45750", + "TenantName": "Tenant-ee4b6359" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202742649", + "DeviceId": "44fdf274-4b48-4ee8-bb55-d6ea9fb0e658", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839167809", + "DeviceId": "4461288f-60ac-4675-b4ff-74ebac5e0a27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796531039", + "DeviceId": "a0913836-c50b-4bf9-b83c-5999f9be129c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_484365949", + "DeviceId": "54d5df07-8ae7-4f59-9af0-38abcf51f668", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_179356580", + "DeviceId": "be60dd77-c52b-4102-9a88-03fb488554dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_291471442", + "DeviceId": "f6482ee9-211f-41e6-a7a6-ff87f29fbc2a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "193b5826-0eb5-4a69-8707-e0af99a2a367", + "TenantName": "Tenant-193b5826" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_621988281", + "DeviceId": "5718f2b0-5cb2-49b3-a77b-1d2c312ed20b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_953947190", + "DeviceId": "51793897-5819-49da-9a63-78d392beacb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610187274", + "DeviceId": "61a6ce28-f9dc-419c-aeab-705ae6122ae2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940184834", + "DeviceId": "ad8d1a06-4dc4-41bf-a395-88358bd790f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426446467", + "DeviceId": "44a25be4-a297-4f32-9107-82d0423e9784", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_772565861", + "DeviceId": "7234c090-31d7-4aff-99ed-5a247d1feef7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "be10eb74-845b-4d2b-bef8-85360975d151", + "TenantName": "Tenant-be10eb74" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218007858", + "DeviceId": "744adf1b-fcda-4e51-8cf7-da587afe67a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_871146600", + "DeviceId": "81c311c0-6d29-4d37-9ba9-e30019cc4d00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_624271220", + "DeviceId": "bad89114-4b35-4362-b57b-cd52f1fb5752", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674926504", + "DeviceId": "84d15652-e0f4-44ed-95d7-2c03fc96ba29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321796261", + "DeviceId": "0dafc956-ea36-46c8-b550-a06407a7adee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_364852852", + "DeviceId": "31226577-db42-4e19-8b1b-efb7d74cd498", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f0392063-da20-4ac1-a106-3ab01907444f", + "TenantName": "Tenant-f0392063" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635481394", + "DeviceId": "94e3441a-18ff-4c41-a954-c45b1d9adec5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851929688", + "DeviceId": "41a03d43-23dd-4ce3-b244-18173e5f6f35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285086972", + "DeviceId": "5874001c-2265-4df9-aae5-d8a240bdf5ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765575556", + "DeviceId": "87ccb056-0e6e-4354-b5e6-4b03b05949ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642734938", + "DeviceId": "40308f61-b19c-4864-96e3-e3839a4c8e07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_237883136", + "DeviceId": "54fcae4b-7b82-4360-9a37-98ea53152c3c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3e73748e-c6a4-4f3a-9285-50044e00c2e9", + "TenantName": "Tenant-3e73748e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439848852", + "DeviceId": "4efcecdf-b2bc-4014-b36b-a112063c17b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935020106", + "DeviceId": "5ff4062f-5a7b-465f-a5a8-c3f27ddddb04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_780221330", + "DeviceId": "80f36585-2ee8-4c8d-a97a-1906c88ad49d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321548498", + "DeviceId": "f7f67ce0-ec21-49c0-9ea2-40ade5ca6506", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_877453485", + "DeviceId": "50fdf433-94a5-40d6-a073-50d2c72d629d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_786137885", + "DeviceId": "5af7b1b5-39db-4755-960c-24eda6bf6a1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7b79f7c4-fb38-4fb8-81cf-125b44f429cb", + "TenantName": "Tenant-7b79f7c4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_558219436", + "DeviceId": "4eb9d115-d971-45d1-84c4-a93a1f015787", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_135459863", + "DeviceId": "b4de20e8-1144-4546-bf6b-288e588d668b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963591507", + "DeviceId": "a72da7a8-feff-4a32-a995-2ba8e93e80be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358773880", + "DeviceId": "928bc397-2356-4416-b1d5-35e19e04b61e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570356867", + "DeviceId": "8523e6ab-467e-4726-b079-2074c8e146c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_938986701", + "DeviceId": "ed430268-4bef-4484-82f1-496336db1829", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e3d3ae0c-1953-4ed5-a1ab-0320057d8c08", + "TenantName": "Tenant-e3d3ae0c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810365340", + "DeviceId": "49cffb09-c9d1-49fb-aeca-cf98586c5f50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_776288540", + "DeviceId": "dba1d97e-f92f-44e7-ae10-5412c54c99c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585384325", + "DeviceId": "af2c24ba-6161-4cb7-83b2-3afe28cd9f5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_967127455", + "DeviceId": "e94eb3d0-d354-4f7e-b484-5257a51ab954", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379334198", + "DeviceId": "03825698-bbff-43bf-9ec2-564451f06cae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_500648812", + "DeviceId": "699a219e-7f62-4ccd-8ab7-25df02880a0a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b73da7a9-7ab6-468d-a171-7b771b858fb0", + "TenantName": "Tenant-b73da7a9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187721962", + "DeviceId": "ee390c71-5fc8-47a6-ab4d-d341d651bbf9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442156341", + "DeviceId": "17643277-99cb-4381-9548-0cada6c3da64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_949989643", + "DeviceId": "a8593748-4176-42cf-bb73-1945e188459f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_291953734", + "DeviceId": "e7e11d42-6743-4d5e-9749-97dd0e834f6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333701556", + "DeviceId": "1225aab5-8733-4b7a-baff-fc74c0282f84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_643042397", + "DeviceId": "5be1aed2-f90a-49e3-a845-a2f41543c718", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6dba5538-f978-4cdc-aa3d-cad1c86c456b", + "TenantName": "Tenant-6dba5538" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312425505", + "DeviceId": "7d44549d-a038-489e-8324-54345096d159", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129303978", + "DeviceId": "dd7d135a-82ea-4d88-ae15-820662015215", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104810593", + "DeviceId": "c73dcc5e-681b-463e-98c4-f3867e999295", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462939058", + "DeviceId": "5b04da88-1797-4ef2-b3b9-22f8ead98fde", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287221486", + "DeviceId": "4e0c9603-663e-4f7e-bf53-e83147042e24", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_662238727", + "DeviceId": "f0c78f47-6b09-45c2-b1b4-61233b832311", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ea3f34b-8095-429d-aef4-77a78e69604d", + "TenantName": "Tenant-0ea3f34b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276280514", + "DeviceId": "7fd478c3-e8af-43eb-9372-6c2468ecd4d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365113041", + "DeviceId": "67394801-796f-438a-9c68-5d5104a65350", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_923094669", + "DeviceId": "093b8ed8-7a0e-491e-ad56-086f852356bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181587877", + "DeviceId": "76806a0a-ccd4-4a7f-a2e3-1e84bbc841b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841805122", + "DeviceId": "4dd5e541-30b8-4102-81f5-74d6c5ae7850", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_499560203", + "DeviceId": "4f895895-de17-438a-b80c-dc76c0451384", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "731e97f8-bc10-4c1a-87c4-88aa5478c1ec", + "TenantName": "Tenant-731e97f8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392701157", + "DeviceId": "5e77f208-a3ba-446d-821e-ff0298b68feb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168199424", + "DeviceId": "f29b694b-75b0-44cf-9f69-d20fc7807583", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_369878860", + "DeviceId": "2af9eeae-04cb-436d-b25b-ea9a169c1f3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730861519", + "DeviceId": "4094dd9d-9dfa-49aa-9b53-964e9cfe6a95", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938818437", + "DeviceId": "8fb62a4a-d1e2-4afa-bd34-d2d36287e0d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_517072050", + "DeviceId": "793be5da-24fd-43c0-8aec-f3da922a2f5e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9eb7c50a-d26c-49e9-8f47-a1dfa911a8b4", + "TenantName": "Tenant-9eb7c50a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730153720", + "DeviceId": "ba8aed05-358a-407b-ac16-6dc2523f63fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_181144022", + "DeviceId": "eded2378-e18d-486b-9c44-546d3979426d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303491483", + "DeviceId": "979056c1-7db6-488e-9acb-cc6eab6b67c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173001129", + "DeviceId": "32035ed5-58a4-4ef8-8112-2109d3444ae2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677016310", + "DeviceId": "19613aaf-b766-4002-b4e6-bdbf040e7310", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_726168909", + "DeviceId": "6bd11ec1-dc8e-474f-b279-4089e6100f0f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "056d658d-c265-45fe-b636-e563ebdf2672", + "TenantName": "Tenant-056d658d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721828691", + "DeviceId": "1e4fbf68-266c-44f3-9e58-2f9df8514f42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505968444", + "DeviceId": "3bb09241-e766-497f-8144-bcb629338e61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786231950", + "DeviceId": "5ef5b5a2-8d21-4c18-a6de-abcb82cd93b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145280402", + "DeviceId": "392a33fc-311f-4be9-8a30-cf1797a86d15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590669118", + "DeviceId": "c2527d24-23f0-42c2-b647-df326e849b05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_382309325", + "DeviceId": "1cbc92c4-6184-4ea0-b4db-fc47e833a58e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "73f601cd-5d93-4305-a319-3a181996a840", + "TenantName": "Tenant-73f601cd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833192066", + "DeviceId": "f53b2e09-6a86-4280-8282-d788e77d1e1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_421315359", + "DeviceId": "2feaab87-5a35-4297-aa11-c9a7f75a9594", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843273541", + "DeviceId": "81f2ca0a-87d2-4900-84cd-dd4beeb8750b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_869116745", + "DeviceId": "29e14372-9e15-4a63-824f-27cd8d330a07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195487437", + "DeviceId": "adfeee51-c399-400a-ac65-8836890b8ad9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_377952144", + "DeviceId": "ad222ff2-2ca7-4563-b55c-9ecf9e3b0791", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "791bbaa7-5e19-4ca1-8265-5f1c5ef036ad", + "TenantName": "Tenant-791bbaa7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680934741", + "DeviceId": "9fe2299f-f779-4f56-9035-5df4b023e5f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_160506316", + "DeviceId": "1e27e811-34ad-4c65-a65e-a984a39b6590", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644241956", + "DeviceId": "1a79db22-f086-4281-b85b-a2c466b43d83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_194559797", + "DeviceId": "fe6452e8-9b08-4680-8135-3c3d263c711d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322790867", + "DeviceId": "5fd8f614-309a-4fed-a5e7-8126a41b4683", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_923250593", + "DeviceId": "8c45b4fa-7069-480c-8caa-f6943c8e3ec0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "992b47d9-7b08-4b09-b038-ca5cd273cb20", + "TenantName": "Tenant-992b47d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_528956845", + "DeviceId": "c859762b-21e7-456e-ac44-0feb68a3adc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968788880", + "DeviceId": "c0a8eee9-4bb4-4113-8ab9-cc528e99282e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290113139", + "DeviceId": "a39b1e01-0123-4458-8da2-5c2379e29d90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761177864", + "DeviceId": "a535da81-ffbe-4303-b7d0-5f444f7a5ff5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925562751", + "DeviceId": "d20ce03b-1428-445b-8874-7283ef0e6808", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_636463721", + "DeviceId": "fa17d658-759e-497f-9360-33553931769b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "47b726b3-adb1-47f8-85fe-5e8f43a57f3e", + "TenantName": "Tenant-47b726b3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429321484", + "DeviceId": "941a3f88-c70a-4834-b2cc-808d2cfcc44f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_590156975", + "DeviceId": "7ed9ea6d-2cb5-4a2e-b1b2-71291d06abf9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752380961", + "DeviceId": "0f1623fd-5eaf-462b-80cb-35d06fc0a7b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495934331", + "DeviceId": "64bcbb06-d7da-448a-a030-7d5b1963833b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324575151", + "DeviceId": "c096244e-e5a7-4dfa-99b7-bd01fc3dee2a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_259604720", + "DeviceId": "b95f269d-8b76-4a6d-a216-3455e31693c8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6bebc2e4-2ee6-400b-8950-68dd1eaf051d", + "TenantName": "Tenant-6bebc2e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482510030", + "DeviceId": "7233f310-3fc7-4e5e-b8a9-9f93fcc77c5c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746818324", + "DeviceId": "f31b78a4-3d83-4a4b-8bbc-0172d6125024", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_576610920", + "DeviceId": "da749cba-775e-423e-a96a-c015b77ed92c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295881182", + "DeviceId": "2becd3f7-3f45-4f35-9ec4-cb1c83c961bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_226976062", + "DeviceId": "80136fac-10e2-4d4d-aaa7-50a15921bb67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_801960389", + "DeviceId": "6f795449-9248-44b6-8279-6b29b8fcfa16", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "63fef363-70f7-4c05-b1fb-a31c78efeca9", + "TenantName": "Tenant-63fef363" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461276250", + "DeviceId": "9305ec12-ca13-4304-a6be-2a9e96e7df70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152300686", + "DeviceId": "5aa7eea5-286d-400a-bd6d-e20cc5842968", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724518589", + "DeviceId": "895496c2-787e-45c0-9f57-7b9cee7ff2e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433784146", + "DeviceId": "6c7ec019-b6ca-496c-9883-1accd957f3bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_629065070", + "DeviceId": "693ae23f-a9ae-468c-8832-42bdd0cb0d5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_262853535", + "DeviceId": "e39d1ed7-1de5-4b70-bd80-b147a9b8abd7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "336493a4-74c9-446a-a4d9-798a855ed445", + "TenantName": "Tenant-336493a4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974976848", + "DeviceId": "687d65ff-bc02-4fa5-9f4a-e1e46783a258", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560656700", + "DeviceId": "f8a8d951-5307-4c19-8d95-88f6e8df5b68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957753482", + "DeviceId": "65c22c50-08c9-4fdc-ab19-5ba692ceeecf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857977211", + "DeviceId": "1a5b5b02-5e43-4851-8404-16147270be00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347912406", + "DeviceId": "96ed8f6b-1695-4483-9ea8-c9f4b2fa9bff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_976686857", + "DeviceId": "f01d63fd-5094-4b80-a9cb-2c932e74d1f5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "890b099a-86f9-49bb-b58f-fa5a342149f3", + "TenantName": "Tenant-890b099a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567829137", + "DeviceId": "c6aa9dc5-6e14-471c-96c1-b421f18d0a4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883715739", + "DeviceId": "66dd600d-b9f5-484c-842c-ea081c53adef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_859578844", + "DeviceId": "0804dc9b-4ad1-45a1-871e-f226a8329930", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_164519402", + "DeviceId": "df2a1866-ef57-4534-bceb-b06b49818f7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707640908", + "DeviceId": "01903bb5-df7f-4e79-8011-4dfec735866d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_221654670", + "DeviceId": "9b25187c-fa76-4278-9576-9d65298b3f12", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "366d73e6-1d88-4399-9826-6e0dab168025", + "TenantName": "Tenant-366d73e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153226106", + "DeviceId": "5d54af2a-ce45-4c3a-8cdd-0141c23f5848", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_843817313", + "DeviceId": "930580c2-a06c-45f3-b0fc-6721149b3125", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518849869", + "DeviceId": "e0803779-b114-4b68-8e72-b72cd4fa6e09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132001954", + "DeviceId": "db6907e9-b13a-4f3a-936c-c07379a58e71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907170724", + "DeviceId": "54c08af6-a7b3-43af-80f4-b7f25172ef26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_856621422", + "DeviceId": "f0e7f836-348f-484b-b558-b41c067fd9d4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08e4b22f-d1b1-45f2-86c6-01dd84d2f762", + "TenantName": "Tenant-08e4b22f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237917126", + "DeviceId": "95b7be59-9d3f-4767-8398-0d0dfba75c12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122904721", + "DeviceId": "f6571b4c-c979-40fc-8be0-cdaf8f4a12ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710007242", + "DeviceId": "72a4a94a-571b-4d57-80c7-76e407d0159d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_507605110", + "DeviceId": "9191c928-eaa8-4fc0-9bd1-05a0e892984f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_716872213", + "DeviceId": "1e4eefda-45cb-4911-b4d4-b28e047d80af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_663042300", + "DeviceId": "5a1304fc-de10-40f4-86d2-b9a2f6d3c8fb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cd778b60-d849-4b74-8895-565c14bdbccc", + "TenantName": "Tenant-cd778b60" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438043556", + "DeviceId": "c8e7057f-d3a1-42bd-a2a6-8dd1e0a58eee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899943680", + "DeviceId": "e13db6a5-c9f5-4a7d-b668-aa39417239b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213612635", + "DeviceId": "a485f034-269c-49a4-876e-cbdbee236216", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826894847", + "DeviceId": "6b1576ee-da9e-4801-96f3-ca2f2bcb48ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594279049", + "DeviceId": "42ae8a90-91dd-4939-9544-b1220d3fc2a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_114281010", + "DeviceId": "e762fd60-8cb8-40e3-a164-0cf75754433f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e8d0c00-7cf4-48e9-bedd-8424944ff8fb", + "TenantName": "Tenant-5e8d0c00" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869930750", + "DeviceId": "d31ddd31-c9d0-438b-aeb2-fca1a5a35c17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101600573", + "DeviceId": "ea109022-260f-4be8-b0d8-39ca23e616f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316919213", + "DeviceId": "863caf0a-82b1-4ca7-90bb-b629ae1003db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_923000542", + "DeviceId": "9ca6ed90-b415-4278-8a9b-d2ff7b03cfbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132216602", + "DeviceId": "fe8cb388-9162-4b68-b0f1-a75f281f061d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_393783619", + "DeviceId": "89468d7c-efce-45bb-ba29-69699426fa3c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a670e1a3-b5ec-4435-acdf-f57bcdc81cb9", + "TenantName": "Tenant-a670e1a3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_390833193", + "DeviceId": "fb24caa1-c6c5-48dd-8d64-14ddbc055445", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485007787", + "DeviceId": "3654ada4-a283-4d5a-a86d-9f83200d5959", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_402518520", + "DeviceId": "0d7ac45c-a07d-4605-9d1b-eb57749e767b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316849308", + "DeviceId": "647ea36e-ea65-4d2e-958f-dd7550fd23c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_971762663", + "DeviceId": "0785e1c2-c061-48a8-a06d-33d896ec5a64", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_886968778", + "DeviceId": "c4a1abee-e295-4748-9cfd-1f6afa6b76dc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1e62997d-dccb-46e6-a5d8-64fd6a9c2a49", + "TenantName": "Tenant-1e62997d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_342583226", + "DeviceId": "79ad9169-8fe2-41ae-9a55-c9b7a4714747", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526078247", + "DeviceId": "3adb23c2-c10f-4252-a289-667380df600f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_331082099", + "DeviceId": "59841f3d-5820-4e28-accf-c5bed97abe3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_510560274", + "DeviceId": "b72f33be-6829-4018-955c-5cebd3fb44eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505517400", + "DeviceId": "623d878e-669d-4d46-a64a-4256d9972578", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_902429951", + "DeviceId": "94679434-23f5-4c9d-b9e2-bf738d02761f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "94a6b444-2996-4324-a6b4-97c7a5830e51", + "TenantName": "Tenant-94a6b444" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401060945", + "DeviceId": "2d46c86b-a269-4903-b690-67bbf29b3f36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997674100", + "DeviceId": "8e375b3f-401e-4495-8f5c-c98c6b661d5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570675327", + "DeviceId": "5868ba78-b278-4247-ad63-3ad515adb726", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_214281025", + "DeviceId": "d6595991-78ce-4e72-9296-2851e8d5842d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_647457562", + "DeviceId": "34fd8737-14b1-4ef9-b2a9-20197e6772aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_800836669", + "DeviceId": "f2e72f06-182a-4da1-9bb0-586e021a5edb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a19227a8-25ba-4602-8ec5-452a28cfd3da", + "TenantName": "Tenant-a19227a8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_198438930", + "DeviceId": "dbab2753-8f69-4360-9377-3467ffd2773a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_170785529", + "DeviceId": "e1e0e357-1a01-4fed-aa49-d556e6589486", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_764968439", + "DeviceId": "903d433c-628e-4ccc-85b0-74656cfd75a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176887460", + "DeviceId": "ca9d043f-9ca7-4455-8b03-e52dfcafbbf7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_106685500", + "DeviceId": "a3e240e3-5b8c-4f3a-9cd5-cfb628460f6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_999930827", + "DeviceId": "9920f8e9-0fea-45c4-871b-4295ea4ac544", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ed8ca52-2531-43db-9a27-2be5c49a72d4", + "TenantName": "Tenant-0ed8ca52" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575459878", + "DeviceId": "2473e829-ac84-434c-b3a9-91b9bb91802f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_517021525", + "DeviceId": "361833e5-206b-41e6-bd90-12a77dc71441", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330881025", + "DeviceId": "a8684ac5-59c8-4f3d-8d20-04b9124edbe0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_548233912", + "DeviceId": "8cee7cca-82f4-4865-90d1-ecdb1a190630", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609412351", + "DeviceId": "44643370-22b2-4888-baea-b23418818700", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_837754004", + "DeviceId": "b905f2d6-d21a-4f13-b471-0139ca800071", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fa4642d5-10e9-413f-918a-f77ec9b694af", + "TenantName": "Tenant-fa4642d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435774546", + "DeviceId": "0a45eaed-e82f-43d1-a3e9-123786b8c2a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_452326296", + "DeviceId": "ac19fa76-63b6-4807-b7eb-49585b52be39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_855757301", + "DeviceId": "24c63f9e-563b-416f-9311-0f0209b96982", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713075456", + "DeviceId": "a8748e71-2e1e-4474-a448-09f4c28478b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288027120", + "DeviceId": "ba5a82a7-35da-4c66-96fb-d6e5a23a41f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_730221134", + "DeviceId": "fb84efe5-67cb-48a0-a010-118bf40be334", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "59b89daa-e710-4d48-94df-0755b1530091", + "TenantName": "Tenant-59b89daa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381917905", + "DeviceId": "48020301-8d6b-4d60-a058-5cc6b44a221f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736524140", + "DeviceId": "29a06363-499f-4c8c-b337-42638f6714fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781621718", + "DeviceId": "19662d3c-e331-4531-86a3-a96a3e76b5ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965950779", + "DeviceId": "f04dc23e-ad4a-4965-87c5-5a0baae41409", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138028991", + "DeviceId": "a7b04b46-a34f-4459-98ec-f8628b8af5f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_969929468", + "DeviceId": "31d235e6-af62-4be0-8a22-c064d82e120f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d3630f2d-6e85-41bb-979f-ee1068b7c8fc", + "TenantName": "Tenant-d3630f2d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896251226", + "DeviceId": "60959ebc-b427-4b90-b436-945de23e9882", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968928232", + "DeviceId": "8843994b-539b-469d-823c-3a277f0dc95e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951848936", + "DeviceId": "523c3d9c-5389-4a25-b8f9-6287e8f757ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_194329074", + "DeviceId": "2e761c67-a7c9-4052-a0e7-60cdd525dadf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_712271529", + "DeviceId": "ef851dd1-761b-49cd-ad86-50baace255d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_237597065", + "DeviceId": "45d1630f-4521-4ec6-b350-4f4debc32bb6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "945c37c9-047d-41a3-9264-c27134f3aca3", + "TenantName": "Tenant-945c37c9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_645591243", + "DeviceId": "8f0b5677-fdf0-4bbe-a6d0-da660f82057b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244840521", + "DeviceId": "1372ab7f-f390-4ebb-99a0-2b095d237619", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600149488", + "DeviceId": "1eb80792-be6d-4c6e-bd0e-41c0bb6fc4b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_468823904", + "DeviceId": "563469f0-8470-4372-bd72-e57aa3ea425d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540146479", + "DeviceId": "726dfd2d-1ac4-4ddd-b18c-5ab65938061d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_255236393", + "DeviceId": "43329782-012f-44bb-94f3-53ece168df55", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "414f1933-ba86-4245-8ef2-fb31a210a3b7", + "TenantName": "Tenant-414f1933" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585762236", + "DeviceId": "216e6479-fd18-45e1-86d9-e54103c6f789", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571904246", + "DeviceId": "1eb269b0-5e87-416e-9896-a6c3b5541657", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379550094", + "DeviceId": "2726c23b-207c-44da-a776-0b1aa582b657", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_166689315", + "DeviceId": "97e022ce-4b05-43f1-9727-6742eb868eb4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575526571", + "DeviceId": "ede1895b-6e25-4823-a6c1-49e66f1ccba5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_743026760", + "DeviceId": "63dc2318-60c0-46c1-9ac7-53f00c1c5fdc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "11f8c06f-7749-4591-8be1-d962999a0bc6", + "TenantName": "Tenant-11f8c06f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303320610", + "DeviceId": "c03d1fe6-c396-49d3-afe6-ae568f73cdc8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169782947", + "DeviceId": "8720f540-2c56-46ab-97e5-292462187384", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984889426", + "DeviceId": "62219867-7e64-4c3e-a293-28aa18cd5de9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546269162", + "DeviceId": "87cce9aa-527f-445e-99a3-ded79135d11e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930345694", + "DeviceId": "a4d00619-544f-4206-aaaa-abc6e6307092", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_980012489", + "DeviceId": "dbb47248-d002-4a95-a8a3-ed1a43c3cfe2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d70d69a-80b2-405a-a67d-8f541b07bd99", + "TenantName": "Tenant-8d70d69a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856510612", + "DeviceId": "a31cea40-7165-4186-9dcc-01eee405c43a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550736422", + "DeviceId": "90252b05-ec29-4ab1-bb7a-0d0a32aa5bf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591974139", + "DeviceId": "180cb7d4-20b7-4c09-9ccf-2b05b8dbdb52", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116766865", + "DeviceId": "492cdf02-a218-4445-be11-ba7cbf6c63b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_122011845", + "DeviceId": "296f1158-b71f-48f0-8f80-d7c78a496cfd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120375199", + "DeviceId": "5fa1a393-8b39-41be-9d52-196c2d0662af", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8b5af5b5-a384-4256-befa-6bf0bc74a864", + "TenantName": "Tenant-8b5af5b5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166474381", + "DeviceId": "c8c7e6e3-2263-47a1-9b8a-15adf6fb24ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_520746778", + "DeviceId": "0799bbb8-2fd4-4236-88ca-a6e33532b2a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919314608", + "DeviceId": "a77a3190-246f-4154-8e55-ceb5a35d1829", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_385884083", + "DeviceId": "19af28cf-7437-4bc0-af8d-17ba4e3a7a69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314282954", + "DeviceId": "f18dcff4-4965-4f46-a821-45cb60ea6d66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_785542055", + "DeviceId": "92df646a-f04e-4566-a5f0-795d156679d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f64a8202-7efe-4c8a-bf66-4f0e0919c8fa", + "TenantName": "Tenant-f64a8202" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_178991291", + "DeviceId": "f40a714a-dded-420a-b576-6cdde0235369", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562392507", + "DeviceId": "364ed81e-66e6-43d1-9440-d757e805f68a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_956295960", + "DeviceId": "ef4321c5-5128-490e-9c11-ed6a34c3c64e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_354691651", + "DeviceId": "fec8f457-e9a2-43f1-bb5c-218541f0661f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222360340", + "DeviceId": "a674df62-6e0d-4ba5-b775-3f5a98dc7f45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_567608544", + "DeviceId": "416f4023-e910-4b52-b997-825782545068", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "58740402-0c6b-478a-8700-8497d317be0d", + "TenantName": "Tenant-58740402" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862664984", + "DeviceId": "c90cf5bf-2aef-4cfc-b616-149ede56401c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679842151", + "DeviceId": "c5fc300f-31cd-4323-9b00-979c0be2ba62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_479233947", + "DeviceId": "5c5694fb-2242-4569-b2fa-4a444425dfb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818679219", + "DeviceId": "13901bef-9c6c-4b44-9638-eaf6d23189bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289578956", + "DeviceId": "086de569-b477-4898-969a-800c67526e03", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_637633518", + "DeviceId": "f612b07e-9485-4974-abf8-0e326142584f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "289f8dd1-0f5f-4ba6-ae52-9feb6adff3b4", + "TenantName": "Tenant-289f8dd1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351981030", + "DeviceId": "01a1fd1a-238f-4932-ba97-ada33af287c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274296940", + "DeviceId": "0572356c-0cdc-4339-9bd7-251fc93527de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130944910", + "DeviceId": "168d4b37-16fb-453a-8a09-aee814efd989", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642527285", + "DeviceId": "3d154e82-60b2-414f-8800-c309c7ee7a13", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182978058", + "DeviceId": "35b5baeb-b72a-445a-bcf9-305446fb6943", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_726244342", + "DeviceId": "b81a625e-edc4-4710-a547-edeb5ca32629", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a7132b3b-bb73-4c35-87dd-e795e9c46dd0", + "TenantName": "Tenant-a7132b3b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917851317", + "DeviceId": "d61731a2-25bd-4d46-815c-1af0bfb9d1c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591013899", + "DeviceId": "6208f0a0-0e07-4cab-9936-142d27f8b4c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305866555", + "DeviceId": "81d6b125-3ce1-4004-a814-f44bbe3fe868", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_696473835", + "DeviceId": "839dd934-8010-403f-ba7d-7b125d0adc25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534455468", + "DeviceId": "1210f80d-5892-4b5a-9666-d046a82324c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_746593407", + "DeviceId": "59054904-b27c-41a1-8740-b9924af310c5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "28dc7cd4-155c-4531-a34f-06cdf626790f", + "TenantName": "Tenant-28dc7cd4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705876167", + "DeviceId": "2bf9343e-6827-4175-b823-167f843f51f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_299607814", + "DeviceId": "49ff4dc6-e82a-45fb-98e4-afe555817d7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787793399", + "DeviceId": "fcbad6fe-ccf2-43ee-8763-0692d4a41de9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292615641", + "DeviceId": "4cfc3f88-a82b-4695-a109-df4db9a72968", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969023153", + "DeviceId": "1b9e89cd-6f06-4819-85e1-e695cce93c4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_614725472", + "DeviceId": "6387909e-ac7d-4930-bd48-27a4fb53a7d8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3561f930-e693-40e5-9df4-5b868bb3e9d5", + "TenantName": "Tenant-3561f930" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_555876741", + "DeviceId": "c4f19999-ce25-4d09-bd1c-e2bc2bd78d6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628271820", + "DeviceId": "02d770e0-1c1b-4c86-9588-ad7ca44f2e23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213622053", + "DeviceId": "c2b370e5-8f20-4cb5-a2ff-b2ff89fdc733", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721922747", + "DeviceId": "91680bff-60e8-4ae4-aad8-fc555fc24178", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131363815", + "DeviceId": "793c9fcc-0a74-418a-a7a8-3e14cb92a5ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_391548571", + "DeviceId": "26db889c-5f57-400f-ba46-44fab0b29d8b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7aab4522-4cc0-4716-a400-053ee723a541", + "TenantName": "Tenant-7aab4522" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_965846040", + "DeviceId": "2a2bd92d-5aaf-40ce-a8f1-6c7c14f46c7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476482165", + "DeviceId": "b3f24c7f-3d5a-4b35-9495-be4d3eb0802b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611143537", + "DeviceId": "f00c2cd1-5a04-4b4b-9ba9-e49f12c12c86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_978352739", + "DeviceId": "66f34311-ba08-4402-ae45-67217c8fa23f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337999828", + "DeviceId": "42912132-1710-434f-aeeb-ce3e56119204", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_755178855", + "DeviceId": "ecdd28b4-5fa4-494b-87e0-584d0deb8cad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4bbbf629-c09d-49ee-a5f7-154523f50e90", + "TenantName": "Tenant-4bbbf629" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228019955", + "DeviceId": "d0cbce7c-1504-4765-b093-9f1a07c29a7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492966301", + "DeviceId": "242c6705-b676-4ac2-b496-efe40284e15d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_960910200", + "DeviceId": "dec1edea-c8ae-43db-80a9-d7a408ed1d4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_192320852", + "DeviceId": "305b87fb-a9ff-49bf-968f-37201224a5e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_497133526", + "DeviceId": "bae0c59f-c105-47ec-b038-40bed0755ede", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_100387475", + "DeviceId": "3cb4072b-adc2-4301-bccf-5431e8c5df95", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5a4f4b57-09dd-4424-8715-8b784e60aaf1", + "TenantName": "Tenant-5a4f4b57" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534042461", + "DeviceId": "42861c1f-3828-49f1-940c-72fedbc564ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_686345905", + "DeviceId": "2217a0a3-c0c9-4175-8db8-9c04385734c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228230496", + "DeviceId": "5920310b-8ab4-44c7-bfbc-4a2be006338c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583618747", + "DeviceId": "caf4b36c-eb08-4176-a7a9-94a1add11f02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_602628709", + "DeviceId": "615b7bc2-5190-4c9c-bac2-9a83afe70383", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_444148516", + "DeviceId": "030f8497-b1cc-4b47-89db-c6ad8c327a66", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bbfa1e79-89d2-4103-a145-071b2d8ab8c8", + "TenantName": "Tenant-bbfa1e79" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611790801", + "DeviceId": "59a8419b-2a05-48cc-9674-32a6ac505cd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992486050", + "DeviceId": "3b890441-c2d8-40bf-8b1b-d830891dcdc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963982276", + "DeviceId": "3ccab398-6342-4498-a3d5-617d2a5706ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_788033481", + "DeviceId": "b3f5f1d4-1283-4cb7-9f02-b824bf511048", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900726114", + "DeviceId": "cf0b8fde-c3d6-46bb-88be-80bcd0290658", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_128229264", + "DeviceId": "64e7ede9-38c6-40b5-955d-836462927692", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e17f8984-c9a3-4544-869d-4a604c5d4347", + "TenantName": "Tenant-e17f8984" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_967712420", + "DeviceId": "dd73e28b-a4d9-4072-aec4-517a7066e523", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588501306", + "DeviceId": "3d9e936b-8342-4e6e-b460-d3551dada775", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471913886", + "DeviceId": "bd6f4225-d5ac-4d64-97a2-e88f82a4f618", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782390134", + "DeviceId": "743f1828-7692-4639-8861-70fd838de3a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644356173", + "DeviceId": "971a1634-d31a-4c8d-8869-d012352d851e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_893931096", + "DeviceId": "9c2dbbd3-1555-4fe3-97da-7d171650d672", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9b824f21-6f4f-4337-9578-019d127c3e16", + "TenantName": "Tenant-9b824f21" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_320245756", + "DeviceId": "a3f8189c-d4ec-4af7-87bf-fe1f1f79697d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_331879325", + "DeviceId": "484c69ec-2e29-4a96-9f80-d0644ffe6f8e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_911160270", + "DeviceId": "9f12e987-2a91-4014-b787-58acb06b2454", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335547510", + "DeviceId": "d68aa6e3-8e3f-4042-a3f5-4a88245a1cf6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662157695", + "DeviceId": "0a328dab-cdf3-4dd4-afe3-4c57aca939f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_916607982", + "DeviceId": "c166a46d-b552-496e-929a-f497757bfcec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea4df2c6-53fd-4f3e-89b3-6190ba5c9227", + "TenantName": "Tenant-ea4df2c6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_343464607", + "DeviceId": "a7b90bec-913c-4afa-b967-f0460bafe1ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606904367", + "DeviceId": "d5ae6dd6-8fe1-471e-be69-8c4a5d65d8e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948999636", + "DeviceId": "deaa42f7-ce15-4a61-9c29-edcc8feffa36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_641123538", + "DeviceId": "572d741c-ea7a-4fa5-b521-26fa89d6a0f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_402643023", + "DeviceId": "e1618f93-dc82-4894-b99f-e8f2f1a4f2ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_416032053", + "DeviceId": "75fa22ad-b215-4a63-bd5a-424a29cbfdeb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "85f890e3-f68e-42d4-9418-64701d3e82cd", + "TenantName": "Tenant-85f890e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109536232", + "DeviceId": "4d710952-9862-4269-b5d3-482ef2feec44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968372813", + "DeviceId": "233940e2-2a33-4b80-9d21-e23ae2325acc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451981614", + "DeviceId": "08ac4fa1-9964-4c8a-b461-0ae6b51777d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606019956", + "DeviceId": "efdbeaa2-7856-4350-8958-c1153fdedd79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282944355", + "DeviceId": "6e8f1b34-3457-47d2-a61c-c0d5453383a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_927757721", + "DeviceId": "2bee81a9-c114-4d86-ba94-d0bb785baa23", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4ff45a88-4481-48e7-ae3e-7053276a1fa9", + "TenantName": "Tenant-4ff45a88" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893989196", + "DeviceId": "99a823c5-e8ff-4c31-90a7-08b34cc262d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720605688", + "DeviceId": "a8bcf51b-ba29-49cb-890f-3af4c4cb3674", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793665743", + "DeviceId": "b9494024-13d0-480d-9538-31c2475a4a66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656027806", + "DeviceId": "69bf4f0c-7e6c-4393-87a8-6c5765fd461f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817046554", + "DeviceId": "fcc7534d-08b6-4465-be74-923ff99f7bbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_105608461", + "DeviceId": "2e7c7e02-7ac8-496e-b3c2-fb5eabe024c5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f90b11b3-f673-41ca-b5c4-8602ff7a9389", + "TenantName": "Tenant-f90b11b3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139454450", + "DeviceId": "a51a2131-df0c-4c38-ae36-8f779dfaaf3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883058200", + "DeviceId": "20bdcfc4-af3c-4056-bb95-919e5ac63402", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206043009", + "DeviceId": "e0ecb965-b4a8-477b-b667-09b5ebf626d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914453537", + "DeviceId": "06e691db-5430-4c5d-8944-d89ef383ea67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580727810", + "DeviceId": "9982ac4b-765f-4213-96c7-26a6fc2ad943", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_695871397", + "DeviceId": "23ba61c2-99e4-4590-b415-d4b0cca4f7ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "129e4143-c659-4082-ba42-bb69473ef9e1", + "TenantName": "Tenant-129e4143" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784437625", + "DeviceId": "f2ad0d26-9bec-49df-bdf9-ba52e4abe573", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909666261", + "DeviceId": "2c643981-45cc-49e4-8bb2-61d83223c652", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_778219451", + "DeviceId": "068340b2-f967-45c7-9fbc-058b5816bca1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_872445587", + "DeviceId": "5b135b85-b922-43a0-baea-573f35199923", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309523251", + "DeviceId": "64ee6014-038f-41bc-8301-4e0e4fbb272a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572563069", + "DeviceId": "7dde0adc-ac5a-442f-afa9-913f423292af", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "31e4b980-253b-489e-9f48-65941305053b", + "TenantName": "Tenant-31e4b980" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420097255", + "DeviceId": "b87b600f-6cf3-4d56-855b-765b43ce48f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284392920", + "DeviceId": "da9ca0c4-3388-45bf-a77a-4bac301883bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114617099", + "DeviceId": "660c7357-50b4-4542-89d9-b3038d4e3aca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581725607", + "DeviceId": "690c6e69-aeb4-4729-8582-3543fa8e28b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_705182557", + "DeviceId": "010b27b2-59d5-4b96-a3d8-2039e241417c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_750268946", + "DeviceId": "5c372da3-2bda-42a5-8d35-05b4dedae3fa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "715d88e0-aa1b-48ea-be98-d6ef06eca67b", + "TenantName": "Tenant-715d88e0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309127357", + "DeviceId": "0004e7b0-0aee-4cd4-b5aa-4d3f29cb1dc4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317654579", + "DeviceId": "5c32217d-92b6-4545-a4b8-f1883d511911", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315293442", + "DeviceId": "6d9af191-b4e9-4adf-9ad9-f578fc03f54f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736876103", + "DeviceId": "4e55b440-499b-4148-8ad4-f0b439467cbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_253202175", + "DeviceId": "97311a09-61d8-4878-ba89-0f92d208dbbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_751198773", + "DeviceId": "41336164-a5af-464b-aed4-eba01d1af268", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a1d7036-15c8-4f27-adaa-24cb3f83b77e", + "TenantName": "Tenant-2a1d7036" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287744450", + "DeviceId": "751ef1b5-9236-4028-bff8-511dac31229d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_528051402", + "DeviceId": "23f8d34b-a83c-4bb6-9476-442a8a0af755", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419443829", + "DeviceId": "5234309d-ddb4-44a4-83b5-e6054ada80db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_786147121", + "DeviceId": "32ca0276-8ff0-42d9-b758-96c72cc46000", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_448899390", + "DeviceId": "2918dd58-bb64-41d8-97fb-32532faba749", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_405072450", + "DeviceId": "81785309-334a-4fdb-8a33-62bf0273e560", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2f584055-d327-4578-8b07-7357ee88da34", + "TenantName": "Tenant-2f584055" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387264101", + "DeviceId": "c6500a7c-f2d1-4898-a910-e9256e85c080", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574987644", + "DeviceId": "bebc9af1-567c-466c-a311-ae38f76e435d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_814264556", + "DeviceId": "6be362b1-2787-4177-af31-f0180219092a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736651246", + "DeviceId": "248eb36f-2d13-4800-b794-9e3064b20772", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808366359", + "DeviceId": "2baea411-6527-41f2-85dc-0b6599287925", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_780054086", + "DeviceId": "6d7088b2-d825-456b-a66c-e9c01f407ef8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "679872d2-4b2b-4d64-9fb4-12f771089e4a", + "TenantName": "Tenant-679872d2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_431053386", + "DeviceId": "774a83d8-06fe-48e7-ba02-6a381f302587", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_496186392", + "DeviceId": "2bd79e30-0838-4a29-8d67-be6b8d178d15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336063936", + "DeviceId": "7cb6ecce-16e0-47f6-94c0-9ddd5f61b7d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_510754315", + "DeviceId": "e6b806c4-493d-4048-aa19-c96adbd71778", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_949714657", + "DeviceId": "eb23d45b-00ee-4c50-8783-a0ea2ccef48f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727412319", + "DeviceId": "8e66f125-a2cb-48e1-bb7d-01460e603408", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "532de360-b41a-4031-a614-8a83821022a7", + "TenantName": "Tenant-532de360" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_965365279", + "DeviceId": "68a9b1a3-e79c-441a-8bb7-c84de4f6e783", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706752789", + "DeviceId": "0d9eaeef-bd5e-4e39-93e7-da377cdc120b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678869714", + "DeviceId": "42c4cf15-5adb-42da-87aa-59d7c086cf03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256718591", + "DeviceId": "21dbdcff-2cf4-4e82-b80e-6b8fbd25f507", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_607781847", + "DeviceId": "4f86e7fb-2b9e-4088-851a-dadb9646a10a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_290404375", + "DeviceId": "198d91b2-42ba-45fb-b1d9-0ee4bd68e21b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c8d35863-7337-443c-994c-89662a04956b", + "TenantName": "Tenant-c8d35863" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467509024", + "DeviceId": "5350e9c1-780b-4144-806a-322070fa6d40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745464945", + "DeviceId": "0804051e-d629-42e3-b954-1fd65514fd62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658544959", + "DeviceId": "215d6fbf-b0a1-46c5-821b-14d7288d8b8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_447094421", + "DeviceId": "849659f0-4776-4793-b589-3837787e8216", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231607239", + "DeviceId": "69d7ef95-44f8-4869-95fb-31696a1fc425", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_749481250", + "DeviceId": "e6f3a6a6-e54c-4140-a406-3065372ce910", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6bd1ed29-0c8e-4778-8883-04886a9be0f8", + "TenantName": "Tenant-6bd1ed29" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136851590", + "DeviceId": "bae7eb00-17ce-4f35-a537-a9aadc2bc063", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670786238", + "DeviceId": "5152b516-48ed-4e51-944d-eb92ba637c0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405984172", + "DeviceId": "227ee0d4-bf55-4c03-aee4-52f5a7b9f653", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286295034", + "DeviceId": "0ed83ad3-443a-4c64-bbcf-c73496739055", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_877312829", + "DeviceId": "27abb401-85ca-49fa-afe3-f37052d0ad96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_774149510", + "DeviceId": "c87f1a04-ec3e-4950-983e-110182d8b68f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d125b97c-b95d-4c93-8843-1f37765a1461", + "TenantName": "Tenant-d125b97c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309759419", + "DeviceId": "d3c2e547-86e2-4707-b17d-dbb69e3dda03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697671901", + "DeviceId": "dd988b83-0037-4fda-b87c-891224897738", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596362321", + "DeviceId": "0aaa6d9b-aa37-453e-9231-6c0ed03cca5f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_829994571", + "DeviceId": "46500ef3-6cd3-4a29-b529-8980c45f2edf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_209553299", + "DeviceId": "721586eb-d5c9-41a3-b870-fe21c1b5341c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_244956790", + "DeviceId": "ad46650b-5bf3-455d-b5fb-2e3067fb2752", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "566e8633-b2e9-4393-9ce0-09b7e9899b36", + "TenantName": "Tenant-566e8633" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176773723", + "DeviceId": "0d073953-d49d-4218-b0ad-a403541874cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922452104", + "DeviceId": "1a6f14b4-0fba-47ee-af77-658b2e8884fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336271210", + "DeviceId": "c1a89848-7416-4d77-b320-7f6257e68625", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_565902556", + "DeviceId": "340670e8-d8ec-42ec-9247-f87ec6ae9b16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198473998", + "DeviceId": "ccd95b8c-8d32-459b-8f00-c805b0c3e2a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_685471331", + "DeviceId": "161397b1-166d-4567-a8ae-f1e0e24de9f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08c0e16f-95af-4e88-ba9d-96d668e2c43b", + "TenantName": "Tenant-08c0e16f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_672139181", + "DeviceId": "aefd084e-aa21-4ca5-a3ee-7c411f92a612", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_723188897", + "DeviceId": "1210e5ef-f0fe-4837-98a0-d2eb17575dfc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397963050", + "DeviceId": "0849a99e-26ab-46bf-ab25-e3fb22044b95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_764926340", + "DeviceId": "d7dfa75c-e7ef-490b-91df-7b354aa7214f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525824442", + "DeviceId": "3d537506-0c06-4127-94ef-192b771b6ec6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_231848288", + "DeviceId": "56e42224-ae21-4d8d-a0d2-cd5f1f1e13ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4d0c3020-e7fe-4e56-86f1-8bb656744fba", + "TenantName": "Tenant-4d0c3020" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556931665", + "DeviceId": "7df72b8a-eda2-426f-8ed9-8e4ddd853401", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152020278", + "DeviceId": "18360c3e-c8f2-4643-99ab-c611f7030e7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905530271", + "DeviceId": "10572026-be8a-47b9-8404-f0c881e40f97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540362566", + "DeviceId": "7d1498a2-0314-4bda-b9a8-7a536d624975", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_579774396", + "DeviceId": "d9b767b1-0ad9-45a2-a47e-b6ce932fd56c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_601262426", + "DeviceId": "ff83b958-e08d-492e-bb68-687cfd3df21f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ef26578-d978-417d-b225-bb7d91e68b8b", + "TenantName": "Tenant-0ef26578" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100321023", + "DeviceId": "fa4972be-40e3-4d80-8516-fa3078e45eee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993778493", + "DeviceId": "84657c99-8183-44b7-975c-9e1e4710f1f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_595370420", + "DeviceId": "5f5597d9-dd31-42fd-9e22-bef16bbbd565", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_290809205", + "DeviceId": "eca461d0-8ac1-41b6-8571-ba7fe57cd186", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885247980", + "DeviceId": "19b3084b-5401-4252-a39f-f8ea361dc2a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_411621936", + "DeviceId": "7b381dc8-4edb-4a93-a8df-551a2e1392ed", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8dd4f471-18b2-40ec-a0b8-ed95f8f2a5d8", + "TenantName": "Tenant-8dd4f471" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2906260255.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2906260255.json new file mode 100644 index 0000000..be03540 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2906260255.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175437270", + "DeviceId": "8999ffc5-fa27-4279-ae0c-0d5c02fcd13c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424595791", + "DeviceId": "6393f3bf-4174-45ec-a3fc-c6f116df2da5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786878657", + "DeviceId": "a86f0ad2-d2ba-486e-a2ff-fbb7ab66fad1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283591410", + "DeviceId": "e27c00fd-9ad9-40a1-9b87-b59b44a1384e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_646825204", + "DeviceId": "7dbdd7da-96e8-48d5-936e-297f2946ce12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_680951875", + "DeviceId": "e4944b0c-bf4e-41bc-9129-c10439818e10", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b36decfb-145a-41d1-bdd1-2ae97dbaf235", + "TenantName": "Tenant-b36decfb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_840994964", + "DeviceId": "4bb59c51-04e5-4a4b-91dc-447c5e98510b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633454941", + "DeviceId": "38deaec7-ae53-4490-af4c-cd7f10a65c08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374560555", + "DeviceId": "fb2fc000-8cae-442e-a59a-a9529c4dd712", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_871468375", + "DeviceId": "5981e691-a1ce-456e-8870-9ff9bd7fc50b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456450691", + "DeviceId": "59315345-437d-438a-b452-2c0ff9a6add8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_564105290", + "DeviceId": "1d433769-dfc4-4391-b1d3-c3c403e3c5bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a7cf8c2a-e525-40e0-8a96-ac50caa50359", + "TenantName": "Tenant-a7cf8c2a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264593958", + "DeviceId": "08368d03-ac1e-4375-a94e-1da5106d701c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_691483567", + "DeviceId": "4cad7939-5bb9-4ca5-9b7b-28ef228abf44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_967100962", + "DeviceId": "573e9313-5308-410f-a512-ce26e470f49f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741889104", + "DeviceId": "e0119c8c-2114-4b86-842c-ee5b0e3df726", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347902977", + "DeviceId": "35bf3287-5709-4b84-83f0-430741b2f3c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_378464834", + "DeviceId": "07c3f032-1957-491c-b81d-87babeaba459", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a7cdb851-e862-4f20-8d7f-504b66559425", + "TenantName": "Tenant-a7cdb851" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245024940", + "DeviceId": "aabd4f9a-e25d-46da-a486-6a040a15ef85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509092564", + "DeviceId": "93895096-0fc6-44f2-ac57-fefef9d0c60a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358076573", + "DeviceId": "cc05ad89-a95d-4e84-8a80-1b7a8bfd2822", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875506763", + "DeviceId": "d713190c-3701-4d5d-86db-ed716ed4f30f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491550582", + "DeviceId": "bcbba629-bb1e-4504-aac3-7a53de18d08b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_134242894", + "DeviceId": "80d37db0-1fcf-4091-b47c-f0fb4199de4f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "09bf0c97-7223-4189-8014-8277ecc511eb", + "TenantName": "Tenant-09bf0c97" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295023771", + "DeviceId": "2a608413-c7c2-48ec-bee4-ed94118c4328", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275144725", + "DeviceId": "e807ff33-9cd1-4642-a2f2-04483ca6f989", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625171210", + "DeviceId": "7e5c01fb-1ad5-421d-b28e-ad4b7b5f3f70", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966673574", + "DeviceId": "14471ee7-f5cf-4a31-8a16-787039a444a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301689645", + "DeviceId": "2016d3f1-5caf-4f7d-a5ce-a6ca0ec2b558", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_459726804", + "DeviceId": "65c9d3b9-4b0f-4da6-bc1a-8880dd56fdaf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cd6236f3-dded-41b1-8150-62ae151a0794", + "TenantName": "Tenant-cd6236f3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444601454", + "DeviceId": "ae068b3f-3173-409b-8c4d-b2b14d21de82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_654121489", + "DeviceId": "7a8900ac-5df5-4884-ad93-d7ea0f5eb98e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_338896712", + "DeviceId": "dfa9f587-6c2c-46a6-a766-a341ceffcca4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846487465", + "DeviceId": "4419cb73-25c6-4d5b-a5dd-19a024570896", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254840861", + "DeviceId": "7bcb529f-9ac5-4706-971e-543009301dd3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_320768537", + "DeviceId": "b52a0544-f5cc-4ad2-949a-e4b0b8ee9046", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a24fce67-4746-4fb2-bac4-8c78f6705873", + "TenantName": "Tenant-a24fce67" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_302860552", + "DeviceId": "e4c1545f-f734-454e-ae57-ef97502da369", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_614638263", + "DeviceId": "356550a7-a310-4472-af32-127786b8c268", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275136910", + "DeviceId": "f16de163-28d1-4d3a-b179-04e33d3b765c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820655757", + "DeviceId": "59c7f8ab-3cb8-41ca-a313-2167452d7223", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533504053", + "DeviceId": "b20c0330-a462-4629-a4ab-d399754d20a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_684893233", + "DeviceId": "ebbcc3c9-fd5d-4379-b0ff-6d7139cca31f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0fa1c474-be68-4318-80f0-d16a0a1fbd15", + "TenantName": "Tenant-0fa1c474" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_194286959", + "DeviceId": "a19e71f5-57f5-47af-860a-f066dc59ad98", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400575525", + "DeviceId": "33e38316-258f-42e2-b948-2919fcd0ba66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_448642382", + "DeviceId": "7ffe01e7-0f36-459b-bf6b-678990cdf20a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584641532", + "DeviceId": "731d5bbd-c7ff-4a7b-b0da-7c390d19a339", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486325506", + "DeviceId": "43bdb8c9-7adb-4ec2-b7d9-a56492e25d01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_621046642", + "DeviceId": "7fc7f48f-51c7-4d48-8ed1-ee0ac32dda3b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d94c3b9f-3082-495f-9049-40781ce2115e", + "TenantName": "Tenant-d94c3b9f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428060870", + "DeviceId": "0ce0e2e4-4173-4788-8470-f5d49165658c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553738401", + "DeviceId": "4f03a49d-2dd3-4eda-b1fe-8f28085a21c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407423674", + "DeviceId": "6be79eac-c279-42d2-90ef-502847bf3ce5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703302066", + "DeviceId": "25a01e03-870f-4699-956f-8476c5ef55db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_296772709", + "DeviceId": "64146ad1-d5b8-4b67-90ce-e923bd63e120", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_962781614", + "DeviceId": "8d8027c3-12e2-4fd7-b6a6-7385693fb0ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f6266322-0cf1-4c07-bcc5-ef018de0fbe3", + "TenantName": "Tenant-f6266322" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127252567", + "DeviceId": "22d582d3-b01f-4d29-868e-589d7fc52cb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548719097", + "DeviceId": "7cb88d1f-ad46-4dff-a9ae-38ea3b884291", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_191150527", + "DeviceId": "e383411e-19f2-4d4e-b5d0-8edeaf955252", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_876254746", + "DeviceId": "683f9309-afbf-4bd1-81ee-ceba13f31f91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_587235263", + "DeviceId": "afaa9a9b-0aee-4637-93cf-4a900e267bf6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_935202446", + "DeviceId": "292f9564-5ddd-44b7-b171-c12b64bf01e0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dab79d8f-b8a1-48de-8468-c70399b5cb3b", + "TenantName": "Tenant-dab79d8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874014688", + "DeviceId": "9620404e-08c8-4e3c-86e1-1571acaffa55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866748567", + "DeviceId": "55db229d-9d25-489e-97eb-98f2221602e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_669427516", + "DeviceId": "940505e7-38f4-4daf-a668-245f7054e2f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_140379325", + "DeviceId": "f1fe8d46-3719-4114-b9b5-67badb7743b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814842780", + "DeviceId": "e74f009a-6790-4225-abf5-69c343944164", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_891747845", + "DeviceId": "3a6bd1ff-cc4c-4e95-9ffe-6862d383c01e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8f97a8dc-2ffc-42e1-b18b-1a17d0e1bb52", + "TenantName": "Tenant-8f97a8dc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215763553", + "DeviceId": "72d0d4e1-c20a-4209-8df8-67e8d8e577dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513257528", + "DeviceId": "0e49267b-f031-4073-bbda-4b2eb1843a51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_269676400", + "DeviceId": "b9717a3d-7789-457f-a15f-1e98d79ed2dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185086032", + "DeviceId": "8d3c886d-c5f3-423e-9771-d02f7bc2352f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204138511", + "DeviceId": "ad8e7c20-04af-4371-9afe-b1aac9ed744e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_213744396", + "DeviceId": "71e4cd2f-2636-43f5-9cde-9dda73769b1f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ba9aacac-c6af-45f1-9025-46ae380bd173", + "TenantName": "Tenant-ba9aacac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313422587", + "DeviceId": "543ef05c-8635-4ef4-a451-55c273d8955c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393919284", + "DeviceId": "ea462821-bc8c-48c7-90eb-e7d7a0c33ec8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_702717448", + "DeviceId": "a4dd6de0-b333-425b-9328-3ca4dc388bea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947082811", + "DeviceId": "f2c2eb22-f293-4245-9afb-f113dceba919", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_829959594", + "DeviceId": "39815685-5c21-4258-b539-383bb9e1aa98", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_568653574", + "DeviceId": "13350ff6-97fe-468d-ba42-169d0e744bdb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7e667c3e-14d0-40b5-9ed6-df1d049a4267", + "TenantName": "Tenant-7e667c3e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_536280672", + "DeviceId": "e2593c2c-8650-401b-9cc3-eb1e192c9c5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714466148", + "DeviceId": "a3f15589-1a7a-4db0-8b97-06c8a3ea52fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294139153", + "DeviceId": "8809054a-8a71-4100-ad75-5ff763c674fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997294694", + "DeviceId": "a1396b57-64dc-457c-8c80-4c429da0a603", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_976448818", + "DeviceId": "4948f83a-8c44-4ad4-842e-2e654b3e00fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_571321076", + "DeviceId": "a87406a6-07d6-40e0-9b25-1ded5800f985", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3772dd67-fefe-418a-ad4b-7c5a6717cdd6", + "TenantName": "Tenant-3772dd67" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566683830", + "DeviceId": "2d261819-fdf8-4df3-a515-b5ab88cfbcf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116953096", + "DeviceId": "0926cf55-a81b-49fe-8dd2-2030986a50ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864473745", + "DeviceId": "6ce368f1-31d2-4852-abb9-5e2c2c9f16d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342406155", + "DeviceId": "7c5a8db7-cb51-446a-8f08-c57d62a9e6c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_975518445", + "DeviceId": "3ccd142b-066f-4860-89fb-40019981efe3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_485334442", + "DeviceId": "1a058f56-6d6e-4d51-8995-1080b8841fde", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e7561b11-fa42-42c8-b2ab-3006af705a48", + "TenantName": "Tenant-e7561b11" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_191673240", + "DeviceId": "9883b525-9458-4920-821a-0887057605a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688640611", + "DeviceId": "889ad917-b678-4fa2-b496-2337adb60f39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491424768", + "DeviceId": "598a58c9-faee-4928-8e51-3abf6cb52594", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_801750246", + "DeviceId": "c6e280fe-746c-4fb3-a664-2e570fbd27dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_959142004", + "DeviceId": "5db22a26-e436-4480-9814-695be22d78f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_558546644", + "DeviceId": "90365005-9397-4b93-a824-f91b937c8da1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "efe7a77a-0147-4e0e-8fdb-e64e27ad516e", + "TenantName": "Tenant-efe7a77a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457661132", + "DeviceId": "d5e9656b-66d8-4d34-b5fc-6ba6a9484adf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175772144", + "DeviceId": "95b97bb1-b5b3-4b02-bee4-4fb777b142bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756111415", + "DeviceId": "e9bc3fbe-9e37-4f35-9cbe-e4c079e2f227", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440371878", + "DeviceId": "924a39e0-d8e8-43f3-8c59-2f0eda70a06f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947063101", + "DeviceId": "759739ff-af7f-4bb5-ac6d-e5941be3b3f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_373613979", + "DeviceId": "05a71069-3ab3-4541-88a7-4e37fc1d4d9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3d7dd744-5e02-4a3b-a3fd-941cdcb166fc", + "TenantName": "Tenant-3d7dd744" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_576889798", + "DeviceId": "63f8135e-195f-4bac-ac8a-4da9a2b1da1c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_465961974", + "DeviceId": "d36bc338-c28c-46d1-b3cc-11b02d24d184", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929366157", + "DeviceId": "69031786-0140-4315-8fec-9f664e043333", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552855099", + "DeviceId": "147c58e4-ddd8-4287-8cd1-d4286d24272b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145861394", + "DeviceId": "69d3c376-e6ac-4f26-a433-31a40fcf4865", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_875482397", + "DeviceId": "f0add118-9b31-482e-bfe5-9427550d6b71", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5cee18cd-8a0f-4b70-a9fe-3708d355502b", + "TenantName": "Tenant-5cee18cd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598699138", + "DeviceId": "d6b8f1be-ed21-43ea-bb1f-20ed452dd36b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825265288", + "DeviceId": "c4a72410-14ed-4b18-83da-1bd0ce4ee367", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298294706", + "DeviceId": "fccedf33-1342-46a4-97f1-dd7fefa41a5a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453464566", + "DeviceId": "e58fa0e4-379e-4e3c-bf95-df9a7d8526e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790415380", + "DeviceId": "f65904de-3a38-4872-9933-24e27fd0d7e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_608070574", + "DeviceId": "12d31bd3-bf87-4c2a-9772-8b94d4058ebb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "09619a8f-4dc1-459e-b837-fadea488dbe1", + "TenantName": "Tenant-09619a8f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849537901", + "DeviceId": "f98e2b58-633d-495e-985c-638d934f61f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484063333", + "DeviceId": "1d84080d-5fe2-41ce-bf09-db4a1cd9973d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117032630", + "DeviceId": "3b0f9c90-0e92-49ea-be4b-8e96e928dbaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130683280", + "DeviceId": "288f2232-fa4e-4eb0-a756-425cc67c605f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103645040", + "DeviceId": "46272baa-c71e-4657-aae7-cf9b8d5ccdce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_384649348", + "DeviceId": "a97d2fa0-4222-4be7-9944-290a05f856ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8f14d0ad-95f9-4a33-9654-4545277062d9", + "TenantName": "Tenant-8f14d0ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671268009", + "DeviceId": "26451bb2-9507-488b-82e9-d5acc52d1204", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643500117", + "DeviceId": "9d7d8633-0522-40b1-8d3e-03877d9af395", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962091779", + "DeviceId": "1f154b71-c0f1-42c0-b6ed-3d277c91d529", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397770141", + "DeviceId": "bf14128e-2563-4b05-9569-2286088a1701", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126363283", + "DeviceId": "d2b9822e-ea47-4b07-8d17-ceb138157ec1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_373017437", + "DeviceId": "ab0b456b-a01e-415e-914f-8eff48b4bb09", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1839859a-07ea-4a1e-94b1-1d406b23ca3e", + "TenantName": "Tenant-1839859a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415581107", + "DeviceId": "a416286a-dc33-4579-a4b5-bbc658b91163", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458223690", + "DeviceId": "919757f5-a1ea-41a9-ae53-7528fc47c5bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126383745", + "DeviceId": "281e9731-713d-460e-bc95-ea4c5a218892", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274646943", + "DeviceId": "e7cc43f8-4baf-4544-9f2c-a43a117a2ffb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_951388740", + "DeviceId": "b34f4872-09fb-4f92-a3df-76788e88201a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_317174891", + "DeviceId": "521c1a9d-bcfa-4a5e-9baa-d6aedb209b09", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a5ebd0d-7b7b-4e56-9203-05c18dc0055c", + "TenantName": "Tenant-2a5ebd0d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403190985", + "DeviceId": "807d5353-4bbf-4ac1-82d3-edbcd565f696", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619056492", + "DeviceId": "f5e468c6-78e2-4697-9ec7-176999447c11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117288925", + "DeviceId": "c85b2545-efbd-4f0c-927c-3275ddf91e4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_183509542", + "DeviceId": "198a7432-5f8c-4386-9cff-26acd49f2b1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841659599", + "DeviceId": "d233aca5-c456-4d3f-a5ad-3ad5bd0b6074", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_731674430", + "DeviceId": "cd01c533-3e1c-4aaf-9751-7bae7697d679", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c84ea411-d7ad-4a38-b6ed-3c9079495a4e", + "TenantName": "Tenant-c84ea411" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260681466", + "DeviceId": "d011570c-2070-4138-8262-f84ad16d1b22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_725793319", + "DeviceId": "53ca198b-f20e-4d55-81ee-969259ce3000", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415902913", + "DeviceId": "3792e4a1-d426-48be-ab1f-4b5b029b4e9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_872123865", + "DeviceId": "e7e2edb0-13f9-4d31-a7a8-46aed876085d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360528980", + "DeviceId": "356a4acb-a819-4e95-a3ce-88245d0a40db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_683406600", + "DeviceId": "7e202c61-a4fc-4d46-896c-818b65775c8a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6a9b3853-cd62-4edd-b957-7ba46c431f22", + "TenantName": "Tenant-6a9b3853" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541800011", + "DeviceId": "279c7aa5-c445-4f25-87a3-5f6a1af9d378", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826419908", + "DeviceId": "38823072-b65a-489e-91b4-ae4b5f098caf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513199301", + "DeviceId": "19754552-4644-4582-a1f4-e61c37d967a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795292160", + "DeviceId": "8eeb944e-62b2-4133-bf16-cee86b06865c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255274237", + "DeviceId": "33ed6726-2998-428c-a37b-9db996806773", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_219468658", + "DeviceId": "6a5513db-cbd5-469b-b288-8adeb9b132cc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c77b5c08-ce4d-40e0-876b-a9266ef11e28", + "TenantName": "Tenant-c77b5c08" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_669129351", + "DeviceId": "da0b89e8-ad19-4641-ae8c-477f86bcbae8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_926826050", + "DeviceId": "4f465120-31fe-4d1f-9568-c707ffef8c1c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_449972498", + "DeviceId": "08d17d86-26c0-40f1-92e9-bd01beb53605", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_492831945", + "DeviceId": "9935479a-da76-4fe3-93f9-03554ea3f2aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181997146", + "DeviceId": "9c059052-f159-490d-a870-886aae8917dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_210063059", + "DeviceId": "54cbd11c-cb96-462a-8e9a-6b44f3d28c68", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3828cd58-f6b3-4410-b4f6-f8c61a4acff5", + "TenantName": "Tenant-3828cd58" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789390783", + "DeviceId": "0fae96c8-e156-4c9d-8b40-9b9c27b8b933", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408755502", + "DeviceId": "1c331a9d-3558-4b22-9848-3a7bc9a8df2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397772474", + "DeviceId": "52f2c67d-f03e-4d1a-a9e8-2620d84ee2d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393632526", + "DeviceId": "11c47963-13d4-4d42-aade-72bd7ce57d8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649821276", + "DeviceId": "8d816ffd-a14c-4265-a0c6-d9d61f319518", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_102500172", + "DeviceId": "f6014bdb-89b4-42c8-935c-31e698b0f87f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b38c22be-f541-4d39-81e1-af1d82d44f83", + "TenantName": "Tenant-b38c22be" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_554846190", + "DeviceId": "bd7b4ba8-9b5b-4660-bde8-d3998901e830", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439244509", + "DeviceId": "a355f95a-38b2-4954-9c1f-70e5d4050d04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142863860", + "DeviceId": "f564ecb1-0b4b-497b-9b0b-d756f7936cf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_629860935", + "DeviceId": "4c4f1ae4-3183-4b4b-a5c9-36176043fe7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177103894", + "DeviceId": "f8580520-c8bb-46a8-b3c5-dd20879ce352", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_414632986", + "DeviceId": "5fbce4bb-4d2f-4740-b946-0ef70cf13b42", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "67bab5e6-eb2f-47fe-af85-89a4f751b820", + "TenantName": "Tenant-67bab5e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736201317", + "DeviceId": "c1112735-a3ba-40dd-a1f4-a4004eb12952", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575291982", + "DeviceId": "4f8cfd14-46ef-4d64-ad74-5ebf11c93ac0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272394480", + "DeviceId": "9d8419ae-e271-4fc3-a0b7-214e443be6aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_762475414", + "DeviceId": "ab280f63-784d-42b7-b488-31a741cdf22d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281973398", + "DeviceId": "4e18dfd8-5429-43a7-8823-885dea941f3f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_171605949", + "DeviceId": "1960e1ec-8226-46cc-8edb-0514d0774809", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ec49aaeb-4660-423a-a045-f46e47ca487c", + "TenantName": "Tenant-ec49aaeb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909314467", + "DeviceId": "76e7b322-8e53-4995-a2b1-8e548b8671f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412838605", + "DeviceId": "c68da2b4-abd7-480c-acf6-3afca6046d08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882025415", + "DeviceId": "d7150729-6574-48bd-ba34-6e52bcd63651", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616870494", + "DeviceId": "706ccf72-9e8e-49bc-b1b3-df72ff1a4931", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_632941891", + "DeviceId": "7fbf8019-fabf-49c7-87b8-b5e7aea8fb43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_804183110", + "DeviceId": "39106fb1-c96e-4bae-ae12-972c14c8998c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "352708d1-166f-49e2-b120-90b68ab6c5af", + "TenantName": "Tenant-352708d1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600154766", + "DeviceId": "de33bdb5-a706-4365-b491-f494545c4e8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399117002", + "DeviceId": "dddacf52-2b69-4c30-bcee-1c7a9e466437", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933515338", + "DeviceId": "27aa5727-bfb4-4628-84cf-0556dfbfe56f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123448233", + "DeviceId": "184caf0e-6f70-4d92-bb58-cc7a5158fc87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938788514", + "DeviceId": "98135c7b-3760-4e9a-867f-1965500111a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_912024808", + "DeviceId": "d367a332-d8f8-4d8c-97fc-c2b0f645f118", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "16631f80-9e99-412c-aa02-e877dadb2879", + "TenantName": "Tenant-16631f80" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611823851", + "DeviceId": "e36624b1-8f41-4e35-8d8e-4e28d4af82d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_911851841", + "DeviceId": "b12dd391-2730-4ff8-8be4-d4749f8a2847", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436144483", + "DeviceId": "9723ff35-d95a-44cf-bb82-a5eb6240c7ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_163968162", + "DeviceId": "42f4fbc9-500e-4746-998e-db4033e2bfe6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155639013", + "DeviceId": "56b319e9-b369-488a-a993-aa339ccba8c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_657593271", + "DeviceId": "e54608c7-3082-468c-bc2d-0047ab10baad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0d0dccf2-c523-4aaf-bc7e-668fb90dc5ef", + "TenantName": "Tenant-0d0dccf2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650964590", + "DeviceId": "78806dee-da4c-4b86-b1d2-6861c8323269", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893780517", + "DeviceId": "9150e563-c258-408b-a487-9b3509c0a211", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_769934433", + "DeviceId": "354022a7-70a1-4420-9398-20b5f61e3b09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721042722", + "DeviceId": "c8b0e65a-468e-422f-9fea-4fd047be5e79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170451400", + "DeviceId": "4c9c3262-e8e7-4649-8708-e243441f741c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_918344297", + "DeviceId": "95c8e35b-4210-44d2-8857-1e224f5f9489", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dc7a94f3-1c89-4e42-923e-2195352ce833", + "TenantName": "Tenant-dc7a94f3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657817167", + "DeviceId": "791c55da-1236-42cf-abd8-33957765134f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_456444875", + "DeviceId": "81ab1eb9-b47f-442c-b317-9c5c4f096e49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810083578", + "DeviceId": "5f7fd7da-6c0c-42d1-8634-8bb712503995", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_497203137", + "DeviceId": "bb6f834c-f6a0-40f2-8e20-2ddbcb9cca91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755547344", + "DeviceId": "88e804d6-59b1-43b4-8347-d665ecad4a66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_876896823", + "DeviceId": "e34d8455-095d-497b-b7a9-c1c09dcc9358", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80734d66-c0f1-4dbc-b866-19792336b963", + "TenantName": "Tenant-80734d66" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_196802745", + "DeviceId": "bf7ac442-b51b-4580-b4cc-2d0b6550027b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_156181043", + "DeviceId": "9ca6ec81-9254-4b77-9f22-c0771d6ddd66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_269059466", + "DeviceId": "666768a9-cbb8-49b0-852c-9e4958761edb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_296942143", + "DeviceId": "89be6232-6474-46ff-aab0-01e45fc0f88c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831778450", + "DeviceId": "6b1b722d-d576-49d7-8a4b-126f147ea83e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_698997759", + "DeviceId": "10729c2a-4aa8-4a3f-909a-8bbf9a8a026b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f8c1f7fa-771b-434d-a4c2-68d61a3d2e09", + "TenantName": "Tenant-f8c1f7fa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_696018583", + "DeviceId": "e5cb0129-d564-408b-8824-b61996bc1006", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562428734", + "DeviceId": "b252bbba-8a64-4dce-a8ce-d4371e38f4a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121388173", + "DeviceId": "9905b5a7-4f39-4316-a6f5-467573a75df1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_419500476", + "DeviceId": "0940cae8-e00d-4f02-8306-82610a1098b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266801247", + "DeviceId": "a8f173d0-0049-4d32-8512-0f236c1ed7ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_490874973", + "DeviceId": "3f90579f-b6c7-4b77-8280-8084747814b9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "81574787-12b7-43fc-923f-31a2c10263e0", + "TenantName": "Tenant-81574787" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242942798", + "DeviceId": "b121c571-3f3d-4e1d-8271-8334ef11640a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_220271417", + "DeviceId": "01165698-acff-422d-ac6e-3b9ea9586d90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_890712344", + "DeviceId": "ce7275ff-b793-4053-a6b0-e6f6afc8ee74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251121172", + "DeviceId": "fa7000a7-26d9-44c7-ace7-0e751ad2a2fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_776808483", + "DeviceId": "a2b1ccd8-2f47-4c60-931c-68cb3b09b6e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_841721198", + "DeviceId": "c2b47675-945f-4592-a338-c03e51c3adaa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1bc7374c-2461-493b-b32e-623074cd07b0", + "TenantName": "Tenant-1bc7374c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327795450", + "DeviceId": "c1b3842e-d49f-46ba-98da-01efaff89ab5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606704696", + "DeviceId": "7e2825ed-b636-42af-bcc3-00a06e0d042a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572095621", + "DeviceId": "eae08ae1-38ee-41c2-95d4-7d2bb5488cec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583447508", + "DeviceId": "86a78165-aec1-44d1-9738-2f533e5ee12f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_504145020", + "DeviceId": "ab886b4d-3b5c-4c90-876b-b018d9766620", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_599614688", + "DeviceId": "89a8f006-80af-4c1f-977e-a41633037918", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "049765ab-5b14-4caa-a996-eac9cb691440", + "TenantName": "Tenant-049765ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398540964", + "DeviceId": "78db48bf-0b18-4206-ba1c-0a1703e18345", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261666075", + "DeviceId": "033827f4-3dc8-4f81-be35-c68bd057afaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584759742", + "DeviceId": "3cb0822f-02b2-4b74-971e-2dc56177176e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_167003396", + "DeviceId": "0ba9c8dc-25d6-4e02-85d8-425dc856f098", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_710837014", + "DeviceId": "9a7a9f78-fac0-4dfc-8e5f-c8ddb8840bfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_857635398", + "DeviceId": "d66a10cc-f5e3-45c4-807f-df42ed31c051", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4c009a13-4e10-4856-ab2c-5186b2ebf1ac", + "TenantName": "Tenant-4c009a13" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709782514", + "DeviceId": "f85b83de-ea71-481f-8586-be6f71165e1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867923007", + "DeviceId": "bf2275fe-4987-479e-8d56-5faac20d0083", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919291474", + "DeviceId": "18ac414f-8d7c-4e6f-8d1c-a81096324e3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585071249", + "DeviceId": "378dafa3-c933-4a6e-a41c-b8fbcb392dae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547983755", + "DeviceId": "e81967f5-9156-435d-842b-b2a43b8ff81a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_688907333", + "DeviceId": "20f3c4a6-7ea5-4b34-a90f-ec37986bafe5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7283e397-d613-465b-9352-33b2ebb8f8a3", + "TenantName": "Tenant-7283e397" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_840005426", + "DeviceId": "05edfd1a-2661-48dd-90fb-2a019006a252", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692445255", + "DeviceId": "3535a643-0ba5-451c-a063-8d4e4a7c8d59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495863621", + "DeviceId": "5817bac0-a4ea-4b35-b4ef-cb35deff5c4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_923048806", + "DeviceId": "05ba232a-60ef-448c-b683-a10329eacd1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_579932004", + "DeviceId": "14da7ad1-1548-4b89-9646-f6de110a52a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_714195333", + "DeviceId": "344449e9-1bb0-4177-b062-1ebe6f408bda", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bd8073d4-9454-4cd8-86ca-fff3c5a7fe90", + "TenantName": "Tenant-bd8073d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_685456664", + "DeviceId": "f0c0ede6-fb92-4f57-9e45-c776dc4bd534", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429575189", + "DeviceId": "95973089-1dea-4407-936f-8f427381c08f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924969054", + "DeviceId": "53b597c0-72b9-4cc9-b552-772e8cf168a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241906252", + "DeviceId": "b62e43f1-73ef-49a3-8553-3c0a3155c263", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749540031", + "DeviceId": "2c556e78-89e4-4911-ac85-4fa47e135a59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_892941198", + "DeviceId": "4267989f-c165-4c68-b77a-47ffeb461b8b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad340c6a-7739-4645-8be9-c27a60ab70fa", + "TenantName": "Tenant-ad340c6a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930298637", + "DeviceId": "98c15eda-fa4d-4b43-9251-e2742c4e92a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969693645", + "DeviceId": "68c69afb-74e8-4640-975a-44efd5fc8295", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916390252", + "DeviceId": "77f70269-7197-45c5-979d-0943cbccfb23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568429515", + "DeviceId": "848ab50a-9a5a-41f0-a8ba-91fcc9be2754", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455676636", + "DeviceId": "2eebb8ea-41a5-4300-a0dd-80abf50509d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_588156574", + "DeviceId": "28f16ace-bca0-4142-8961-42f159520153", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "64c3084a-2beb-48e1-a7ee-0a2ba47f91b1", + "TenantName": "Tenant-64c3084a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724930008", + "DeviceId": "69d63a80-67de-4be5-be2a-c378f8db01cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879437678", + "DeviceId": "5bee2826-660c-42c6-9787-d17fe0f6360d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_832812478", + "DeviceId": "99729960-316c-4703-9a2a-6f08762db8ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_330548516", + "DeviceId": "fc34904d-f578-486f-a5e8-70f57c4dcc13", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564795878", + "DeviceId": "4406a555-cf39-47ef-82a6-89dd3c5e4c37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_786083100", + "DeviceId": "0d9f6b7d-ff7a-478a-b01c-4d6869978fc0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "01dfc65b-34ce-441a-be9a-0f316aa741cb", + "TenantName": "Tenant-01dfc65b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954212640", + "DeviceId": "1c0384ee-67e9-46b0-9606-0d3750fd62cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_945336091", + "DeviceId": "ed178ac5-3785-4401-9c88-b8d06f4efca5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992394372", + "DeviceId": "e91ceeb9-d894-4564-a735-ae1e39af8972", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_950394428", + "DeviceId": "bf3f315c-19e5-4126-a49f-b4f6d235f146", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781075319", + "DeviceId": "48ab3b95-887e-4339-97e7-00d57f27ffd6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_168470686", + "DeviceId": "6bb76a78-d2e3-453d-90f3-5963f3827eb9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2c48ecde-06d9-48c0-96e0-e44f7a89b839", + "TenantName": "Tenant-2c48ecde" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283677401", + "DeviceId": "fd8843df-d2d3-407e-bb9d-840bdc7e0554", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876206161", + "DeviceId": "f37a9de3-024e-4d81-ab81-2cbfa85f9d09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724315034", + "DeviceId": "1dfa921c-539f-4873-ae5b-e0a21826fe30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_470160733", + "DeviceId": "bb754bd4-5ebf-470c-bfb2-e8b0a9606e1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282118412", + "DeviceId": "64c846fc-7d5d-43e0-8dda-e623f5269b90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_706565848", + "DeviceId": "082b3ddb-7e68-4200-b374-db886762acb9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5abfb547-96b4-487e-b2de-6d7a7ab5da69", + "TenantName": "Tenant-5abfb547" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_355350789", + "DeviceId": "0276fb2a-58b3-4a0c-9bf6-f37a3b4b22fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_496477624", + "DeviceId": "82cfe71a-ed51-49cc-8f45-36b51357858e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123697820", + "DeviceId": "ed6527a5-59bd-4ee6-bc56-60c0c0f9c110", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281317483", + "DeviceId": "ad42bc99-3347-4ae0-89a3-f889e8b2662f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531313524", + "DeviceId": "31061ab0-316a-4028-bded-6bb521b451e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_170950859", + "DeviceId": "dc3acc7e-9483-45bb-b35b-06040131fc37", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c46b2568-1073-4024-92be-79f5786e8b95", + "TenantName": "Tenant-c46b2568" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979424890", + "DeviceId": "505015ca-0d51-4696-9f73-049097b740fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102864062", + "DeviceId": "6f9acf3d-5e4c-41a2-860e-cf630edadd84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599733554", + "DeviceId": "9f476585-7360-4a12-841c-37b55818d908", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442519730", + "DeviceId": "76924f84-4023-4757-8050-4770dbf6e6c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376598849", + "DeviceId": "0a7d0292-92ad-4f4d-b7d9-9671b1aee6dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_182135329", + "DeviceId": "475bbb63-1ffa-4166-b6bf-1683b9233f65", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab91ab08-1ac9-4abb-a271-0d6c7a765bb2", + "TenantName": "Tenant-ab91ab08" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_208066818", + "DeviceId": "03bd6ebc-dab6-4c71-81d7-8684b2bcf753", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201109586", + "DeviceId": "ec222ac8-8b3b-4e41-a4de-db9759521e61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549672401", + "DeviceId": "c479d664-1a69-4828-89e8-8a0e19dbe63a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642761528", + "DeviceId": "c76fc188-b9a6-4916-9b0f-8918787b7f91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_106638000", + "DeviceId": "171e12e2-87be-45d7-82d3-2747b779cdcd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_941987257", + "DeviceId": "bfbb28f2-b11e-461f-bf69-bd71f461293f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c9c5a0a3-aed6-4382-9f1d-b92f2668f0aa", + "TenantName": "Tenant-c9c5a0a3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485585314", + "DeviceId": "2684ace9-21fa-4f0b-9b72-cc1d43abeea2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_424644782", + "DeviceId": "f44eb6ef-ca9f-4dd9-b9dd-fbeec0a99465", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938390243", + "DeviceId": "4d049d3f-6e46-4368-bffb-987322215a46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347658204", + "DeviceId": "4bb1395c-f2e3-4e2e-b890-5d9e947b734d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897281999", + "DeviceId": "630fb0d8-124f-4473-9947-50ae0f45b5ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_401588689", + "DeviceId": "2da5bb05-4c1a-4b92-9a5b-f95717908bf5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eea81595-e2a6-43d6-94b9-bdb232f6a36c", + "TenantName": "Tenant-eea81595" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410229368", + "DeviceId": "790b389f-273c-464e-b9a3-c72f90d1e9aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186288290", + "DeviceId": "a7667197-8229-471d-86e0-184f9ec8371a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622596093", + "DeviceId": "d6395ae2-bc44-4cde-b7d3-f498e4a32a7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_113948490", + "DeviceId": "39eca9c8-8fc7-4e4b-ac59-217d02a834f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264505448", + "DeviceId": "2cba5332-063e-493e-bedb-eeec90f22def", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_934632043", + "DeviceId": "6048f17f-90de-46c4-8366-07f6ea06218c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d56c5e69-d754-4c57-a574-f4e11a43dfa1", + "TenantName": "Tenant-d56c5e69" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182976745", + "DeviceId": "b9669baf-5c79-45b6-8677-67ebc79e0eb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425169747", + "DeviceId": "4d0ef122-f903-4ef3-ab8b-f1276edfa3ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210091985", + "DeviceId": "ba4e73ff-58f8-42de-b2b0-619f0a8add3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321487445", + "DeviceId": "c323df19-d323-4e81-b470-3883bc4ebe71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914437341", + "DeviceId": "7aaae7b5-cbad-42c7-9ae0-bfb6801f9f3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_923549857", + "DeviceId": "ef35e54a-c7fd-4b15-847c-26bf1ce7fa69", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "daac7d77-0f53-44ee-9e3b-ec4d156252d4", + "TenantName": "Tenant-daac7d77" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445441722", + "DeviceId": "eb78b1ab-c3d2-494a-9c7a-ab2c2bf7c92d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535055213", + "DeviceId": "4cb91c34-5085-42f2-a691-ddd56fb59621", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366948270", + "DeviceId": "1bc57606-db73-4c7a-8ea5-b7ca844bf906", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_661411914", + "DeviceId": "e2481fcd-c8b7-476b-83ee-6997b21a6128", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658515722", + "DeviceId": "122f1021-1659-45ce-82d5-39f8941e61f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_748171131", + "DeviceId": "0c3cb76a-c733-45a5-bb76-7e9e8fcc98bf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c938c163-2f99-47c5-893f-0e6bc00ff1f1", + "TenantName": "Tenant-c938c163" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112768178", + "DeviceId": "3c2dccc8-12ed-48c2-93e8-3e11a90692c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345426545", + "DeviceId": "bf9c2c77-03e9-443c-a771-8ea5a5581c82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980495478", + "DeviceId": "c349a3da-ec11-4b4a-b995-fb71a3775f4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770079566", + "DeviceId": "ced2e633-2072-4b2c-a105-6b31b5346f06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702082688", + "DeviceId": "07518d6a-d436-45d4-9a34-f68afb0b821d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_496958800", + "DeviceId": "3b12ed35-200e-4d2b-a52f-ac39ad8bfd55", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7748c3df-00bc-4726-b5db-e7c57cb5dff5", + "TenantName": "Tenant-7748c3df" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312504588", + "DeviceId": "c9be9412-4512-472a-9a4c-3205f4ace043", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632874093", + "DeviceId": "abeb8a9e-0a6e-412a-a28d-6cfc4ef2636c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_830749629", + "DeviceId": "ff67ca85-62d9-46e6-b783-2d8792b6626a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188376998", + "DeviceId": "e3dc1b73-c3b3-4766-b598-6f53ad9ece35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862551968", + "DeviceId": "f11bf1d2-8eea-4517-b2f6-d25678431933", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_591159903", + "DeviceId": "2311ba2d-8522-40f2-82f2-a2d32d616308", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "480d94c2-4084-47f2-b913-9886a3656870", + "TenantName": "Tenant-480d94c2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938245534", + "DeviceId": "eeff6203-22fb-4b76-8d97-7dd3252a0eef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_180144394", + "DeviceId": "d517b06f-cac4-4b18-b357-6ec04cfa9725", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636753250", + "DeviceId": "bc398bb0-e84d-4f19-a397-f64752c16c22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_759010574", + "DeviceId": "004f0eb3-0ce3-45a3-8424-072ed39d10e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406026382", + "DeviceId": "9d614fa8-76ba-4013-b400-4a0438e5137f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_107739381", + "DeviceId": "af84170f-f422-459f-b288-bcfba71a732a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "416d8c02-7035-4bda-824b-5f9ca52a9c4a", + "TenantName": "Tenant-416d8c02" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_363660220", + "DeviceId": "c37ac2d6-70e7-42e7-89d7-b8f0533091e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316399745", + "DeviceId": "9169b8fd-d69b-43cc-a566-73ca93fe8675", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358190772", + "DeviceId": "b598294e-32dc-4b31-863f-effa5e753f78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965633091", + "DeviceId": "7b8664b4-3521-4a0b-bc10-eaa7624a7ce4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_863677755", + "DeviceId": "1f7b74fc-6e1a-4762-8c16-0d533a4dfef4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_795590288", + "DeviceId": "b3caab12-585c-4e41-b234-c96034d4e6d4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2f86cecd-40a0-4b39-bde7-4d856ae8f8e0", + "TenantName": "Tenant-2f86cecd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107093664", + "DeviceId": "dbf9026b-7e55-41a2-907c-e747ac8629f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404516757", + "DeviceId": "01650160-e344-4560-af97-517669c82e4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458944955", + "DeviceId": "761b8b27-6655-462e-acbf-9e7aa6f0ae92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136546017", + "DeviceId": "88a550f5-2352-4d66-98e9-456def2f8c87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138158531", + "DeviceId": "80db19bd-5cb1-4bc3-bd4e-4aa887a90898", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_430617244", + "DeviceId": "cb68f8fc-6fae-4894-8638-b57a49c4c5cb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab12c632-b1ed-4718-b4c3-2832f2c43552", + "TenantName": "Tenant-ab12c632" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640651085", + "DeviceId": "d7274678-e0cf-4631-9990-73c02f3552e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145067301", + "DeviceId": "4a1ea4b5-0934-4f92-b933-ed61fced32bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288421827", + "DeviceId": "abdb2d01-b1c2-4a17-ab6c-a5701b138ad6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_483667176", + "DeviceId": "6d069049-d8ed-46cd-8a67-7383edd3eb37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_722851475", + "DeviceId": "60e6fd66-f655-4f60-9785-d47a096db54b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_568234475", + "DeviceId": "3805e67f-7456-44b8-93b0-78421b8b3c8d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "efaef572-280f-4b9d-8a47-fbc62d3b05d9", + "TenantName": "Tenant-efaef572" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444739533", + "DeviceId": "d8d19cf7-d023-4806-af01-4c6114314a9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743728601", + "DeviceId": "6417dd1f-fee3-4ac6-9c67-ec7ef13251a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612966682", + "DeviceId": "c456d17c-0c2a-4f4f-bc34-2bc11c151efd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467812845", + "DeviceId": "1600bdaf-4550-4523-a430-a5c265a5d5e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519956200", + "DeviceId": "8d26d0bb-0b37-4433-a778-ec06209e9f07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_495568292", + "DeviceId": "3451a9f9-55f5-4a9f-a660-39ef93d96d90", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "79fc8562-f332-4736-87e2-c1f7769f0b86", + "TenantName": "Tenant-79fc8562" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_411782207", + "DeviceId": "e2da696f-890e-4625-ba22-c9657785068c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508660779", + "DeviceId": "fc3ae430-36e3-4a8c-a297-29030a260cea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734443195", + "DeviceId": "3f7eeb54-ee4f-44f2-bd83-6ca7b20e2da2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_268537141", + "DeviceId": "6f23b28d-d2d7-4069-9bf7-84007701dce8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_101812325", + "DeviceId": "9239c5bd-0dd5-4cd0-9552-f2600bf6df06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_475537106", + "DeviceId": "4bc69220-d554-445f-9186-efa76a21b0cf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a90ca3e9-314f-4487-a720-b46f33498ecf", + "TenantName": "Tenant-a90ca3e9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_558860861", + "DeviceId": "7d8cde32-2768-44bb-956c-2734654a8b14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827287313", + "DeviceId": "11c4d936-5f79-42e1-a4d0-e433c6ed02d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_195658421", + "DeviceId": "72936225-e33e-4f7b-bdc6-30164a9199bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328092499", + "DeviceId": "2ec6d106-6d0e-4134-869e-81d1f799cf4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309768305", + "DeviceId": "29b77111-9728-4483-9f07-2ecf1b227598", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_266322770", + "DeviceId": "4f652196-c5a0-461e-bbd2-36a3fb2f8406", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "57b00877-c526-4453-a555-d1ec723998de", + "TenantName": "Tenant-57b00877" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_817985797", + "DeviceId": "069099a0-91d9-48f1-88aa-ce8efd8bc876", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881619740", + "DeviceId": "acf5c3ac-4ca5-4c08-9426-fe51fd562de8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_760027597", + "DeviceId": "e42d3eb4-92cd-4e49-a2a2-813c289c6e91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557275644", + "DeviceId": "4dc74b1e-2cab-4b71-a090-17b7f903c9fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677968879", + "DeviceId": "289665f2-c7be-4c8f-885e-43036a133ded", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_994272082", + "DeviceId": "ce2e660e-964b-47cf-b67f-54cbf702b9ef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d5653c9-9aa8-40d9-bab5-c224e0bfb1e8", + "TenantName": "Tenant-2d5653c9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_224384974", + "DeviceId": "bc936268-3e14-4923-be7e-9eacb8b67d40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_226698128", + "DeviceId": "b8a52e4f-4e2e-46e0-8ddd-19293eda68b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699034055", + "DeviceId": "2926073b-393a-4a1a-8829-d513d0421627", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_968183453", + "DeviceId": "ca8edbb9-48e5-4025-9271-fb2ae2c682cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264319883", + "DeviceId": "9ea61d92-5a56-4ce8-93f3-3e816bdd93f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_223122526", + "DeviceId": "3d4b33fc-ce9a-4bb2-a446-1127daa48f66", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4b75cb42-4848-46c3-b510-8d2f5d7b87f4", + "TenantName": "Tenant-4b75cb42" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377138850", + "DeviceId": "21ef7c93-898a-48a5-bc1b-c779ab9a1a43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_503663083", + "DeviceId": "5a476bcb-69e9-41c2-929f-5a2d398c913d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826194323", + "DeviceId": "34018150-c9f0-4a77-b7db-a5959422fa9b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395465752", + "DeviceId": "81fce340-a7ad-4fb6-8b02-b00385bea22b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119400144", + "DeviceId": "081bb1ba-2161-4e8c-ac13-809e08474534", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_151296668", + "DeviceId": "d998b1b8-f0c7-4675-bf7e-0da52ffe6898", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c30d7721-9167-4b2c-861b-1f81dd07f872", + "TenantName": "Tenant-c30d7721" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292813321", + "DeviceId": "3b94deff-604d-41bf-82b4-61daf645d95d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900820497", + "DeviceId": "2eb7287e-a7c0-4d81-84f3-89a340ffc30f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372880770", + "DeviceId": "332c93ed-6b18-4c39-8e9f-5bf69faf0737", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368007470", + "DeviceId": "8e920db0-0ac5-48c4-b6ca-5f08b9a82463", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505147989", + "DeviceId": "fe10a6ed-0cca-428d-a2e0-d7b575822389", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_396550624", + "DeviceId": "5d09e91d-0bf1-4f1a-ae73-3475060149d8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e6ffa11f-7fee-4376-b0b4-2f2bb985f38b", + "TenantName": "Tenant-e6ffa11f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985592816", + "DeviceId": "28d72e40-99ac-4e29-b09a-acc221ac035e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115109230", + "DeviceId": "80a00910-1b1d-461f-9540-80ee44ef1e3a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526040117", + "DeviceId": "569eb1d8-f462-47a5-8a86-3da579920409", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_634156537", + "DeviceId": "4ae882b5-406d-48ec-aa4e-72a3ee3c7729", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613087483", + "DeviceId": "a760d380-f96c-425a-8057-960e116742fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_183630671", + "DeviceId": "8c7410e1-d4eb-4334-a5b6-cc69294c636e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fc7e7ab6-54e4-4219-97fc-416296312d01", + "TenantName": "Tenant-fc7e7ab6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680500144", + "DeviceId": "6db66d0f-a5b1-4a91-a3f0-36d4cbf96cb7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_527105964", + "DeviceId": "48f0e1b2-c34b-4831-b8fe-f3199d0e7c8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866697244", + "DeviceId": "7843fb30-139b-4af9-8e8e-f5e5771ae414", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809257888", + "DeviceId": "1ef3b62d-2f42-49f6-b835-6423049f1674", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698195831", + "DeviceId": "19be546b-47be-4ae6-83f1-b41cf83602d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_554992438", + "DeviceId": "a0cb2809-5b6c-49b0-ac41-68d0f76ba9bb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8b1f8dbc-f2c7-41f8-8342-cf8874b390fc", + "TenantName": "Tenant-8b1f8dbc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441468039", + "DeviceId": "8f33d4ce-ebb1-474a-80b0-56fd482f7556", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354291392", + "DeviceId": "5613c3d2-a47f-4292-8a7f-2f52d413f8be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_496777230", + "DeviceId": "76a69c96-eb46-468f-bd4c-3022cfd0f43a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_835133930", + "DeviceId": "56e9da01-6768-4ba0-bbab-88f3d213cdc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_801585000", + "DeviceId": "1371e118-c2dd-431e-b58d-a1380a535772", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_354815877", + "DeviceId": "d6afe665-f253-4061-b4c0-604b85f0d881", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4e73f0a7-a8ac-402b-8cf6-897a49ec8d4d", + "TenantName": "Tenant-4e73f0a7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713425130", + "DeviceId": "a9a6b8dc-b649-44f3-bb36-cd8f2068ccba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876630387", + "DeviceId": "ac881b45-306c-468b-8b24-927a493307e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295059944", + "DeviceId": "6e2e3d27-231e-4a5a-9ad9-b7b4985183c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_325366486", + "DeviceId": "56507d72-864a-46fc-813d-8d12a4ff0c35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_159784761", + "DeviceId": "9e699aad-672f-490d-bfa3-93d7446ac027", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_242182139", + "DeviceId": "8582bc62-126c-4abd-857f-19c40a0eba6e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a9fccfa0-39ce-476b-b476-d37fc787ee7f", + "TenantName": "Tenant-a9fccfa0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_361951580", + "DeviceId": "12d3d596-34ce-4f4a-bbd3-12bf404fdf0a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250355653", + "DeviceId": "3529689e-8df6-4c60-baf1-3dc0f58d3781", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233315948", + "DeviceId": "cd2d514b-f5c4-4d89-8ad1-0c35bc0379b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841833058", + "DeviceId": "4bcefa1c-5472-47ee-9d02-38eb0f6f2797", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172609510", + "DeviceId": "c24e8579-9b4a-445a-984d-176b817d3a33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_211678441", + "DeviceId": "65c53fb4-2edc-4569-b289-3c31753039fd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b2c635d-3f8e-4bbb-9c7d-72e8ccae397d", + "TenantName": "Tenant-2b2c635d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783666527", + "DeviceId": "641b42a8-ec22-45c4-bf5a-3dc142c4f10b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164734117", + "DeviceId": "36221bae-5dcb-4888-91aa-878259abfcfe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963742954", + "DeviceId": "a264679c-d070-4984-b45c-a7034c7659b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424618349", + "DeviceId": "58e85dec-c112-47de-b3ba-ba38abf7c101", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_388689422", + "DeviceId": "e8d08dd3-d1b4-49a7-b114-2057683ac3dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_480326156", + "DeviceId": "1cdd7eb5-a722-4744-a3f6-1d38306734a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9199e357-3181-4d14-baf1-0e5c891514ba", + "TenantName": "Tenant-9199e357" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_426498456", + "DeviceId": "66ecec17-dc24-469a-819b-f718c4558fab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_309500990", + "DeviceId": "16d133db-c4cb-45ac-a251-7ac30a6e0f1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279878866", + "DeviceId": "1a605fad-cc2c-40e6-affb-c299ff7b53d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808271537", + "DeviceId": "54aa1274-1144-4e17-b3e9-6d5a109c6eaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123896067", + "DeviceId": "b44b15b0-bc40-437c-a43f-28ea607d0c41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_653345440", + "DeviceId": "0fb05ec7-f9d8-4ffb-a7b9-dc5808fb5ae3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7df679db-0d40-43c1-a508-bc0a26cc6f80", + "TenantName": "Tenant-7df679db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_589386550", + "DeviceId": "08ad6a2a-3851-4bbb-b173-c8c14c0b817d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679596697", + "DeviceId": "eda8afe1-b0a0-412d-aab4-0c3bc95f95b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924953833", + "DeviceId": "2515a8ce-cd2f-4e28-b14e-ee68dc2af2aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283889350", + "DeviceId": "a536ef0a-2e57-48b1-b9e9-aa188be13b73", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737101567", + "DeviceId": "0af96f52-6caf-41e1-976c-a22c30d4e624", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_266231390", + "DeviceId": "b394b2f5-ec08-4515-8622-2b1d53b3f266", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e5f6e649-a968-47bd-9d8a-2f0936d17e0f", + "TenantName": "Tenant-e5f6e649" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688955174", + "DeviceId": "f5621866-9d2c-439e-8393-9d12a697587b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_479450250", + "DeviceId": "d5f0224d-54df-4bb3-87f2-78a8b68dda50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151206160", + "DeviceId": "8364b6f1-7fa3-42e9-bc2e-40ff190dfc2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_661385023", + "DeviceId": "438c1c2b-90ec-4d4d-b80f-90683a1dbb44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616769655", + "DeviceId": "ecd00aa5-28b0-4e8b-b643-0055b61a7452", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_522637100", + "DeviceId": "7811e86a-7c20-47f0-bbbf-978998a4e2ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bd385a89-2a26-4749-b3ed-f5b4f9eeb2ed", + "TenantName": "Tenant-bd385a89" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316217471", + "DeviceId": "b6d86f3d-4288-4303-876e-ee85d0178d22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_524551141", + "DeviceId": "f6f9dd4c-7234-4031-a42f-946e0f513e63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270200320", + "DeviceId": "692d5d5b-b809-48a3-bb19-0d2eb2a68ffa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450130535", + "DeviceId": "29ba213c-a06e-4a88-b484-af4da959091a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963687749", + "DeviceId": "65170817-81cd-495b-a379-ca5a2e9a10bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_305559620", + "DeviceId": "a8b1a48c-6810-4f22-908b-7736c657ef83", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8e291fb8-5898-4053-825f-f58916248102", + "TenantName": "Tenant-8e291fb8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115856532", + "DeviceId": "795e0e04-2cba-4e28-af9d-0d90168112ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_903386761", + "DeviceId": "5391fc78-7ed4-45aa-9a51-a74853fbfd81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_342423275", + "DeviceId": "570f8d93-921e-4e8d-8982-3f3623dfe36b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_106152028", + "DeviceId": "91bacf07-cb16-4693-954f-52fb9fabfe70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283238039", + "DeviceId": "77e3cf0f-6ac8-4ca9-ac0b-b20547842bdf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_831869648", + "DeviceId": "159a3595-6a82-40b3-b76e-d3a6740ab18c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1213fc8e-012f-4a72-a7b7-0c56c770abf4", + "TenantName": "Tenant-1213fc8e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163689674", + "DeviceId": "c5a8eeef-d934-4015-99a4-0fb0091e419e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541218969", + "DeviceId": "01e6bd03-92ca-4390-9bdf-0096866af677", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_118788414", + "DeviceId": "3bf6375b-bb2d-47e4-be4f-604fc7a7e1e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654265356", + "DeviceId": "afad704c-086d-4166-b4b5-0276f6649bc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416849715", + "DeviceId": "7768006f-e4a9-4be1-b520-f36a0b2a635c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_279001621", + "DeviceId": "fb8df9c7-3d4d-431e-8ff8-4372e785d0fb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5efbf38-9c88-4e82-9a6b-b18638edb6db", + "TenantName": "Tenant-d5efbf38" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182640863", + "DeviceId": "211c4621-261f-432a-b9a9-5887c9650df6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796568234", + "DeviceId": "f85e0778-64e9-4567-90d4-6900331f6d38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368992642", + "DeviceId": "ad41c65c-db71-474b-955d-623a48732026", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_783939427", + "DeviceId": "cf88bf8b-8238-4e1a-877c-a2ea3673859b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898203543", + "DeviceId": "f61315b9-9ea4-48f6-bf9b-c013f4989227", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_462098495", + "DeviceId": "e22a5155-07f0-44b0-9a90-1fe18c7f0eb6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87414224-6b34-4413-9956-cf743abd3452", + "TenantName": "Tenant-87414224" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944690091", + "DeviceId": "085b70b5-8272-477c-a3fb-ab898093fa4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_385473313", + "DeviceId": "c09cc15d-ef5e-4c7e-9915-a83a7ef4bc38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445026550", + "DeviceId": "ac93ca62-a212-46b8-8a86-a14906afb236", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681912354", + "DeviceId": "a36551eb-3e32-4efa-ba48-bda130c71ac8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918266609", + "DeviceId": "85435fb2-5c54-4e56-a603-e232cceca8c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_929750973", + "DeviceId": "f4466a2d-1190-491c-802e-146e3ebd0529", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f4136951-321a-46b9-bc15-3e8231002760", + "TenantName": "Tenant-f4136951" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_966574852", + "DeviceId": "6d9884aa-695b-401a-8fb2-48fb7ec862da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474267438", + "DeviceId": "4d6f8142-efc2-455e-8ccc-6c6c2b18793a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360514648", + "DeviceId": "93c160c0-dc5f-4062-b6c4-43c917378fb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177144635", + "DeviceId": "6874a690-3928-4637-a7e9-13a9d883e2cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580482661", + "DeviceId": "2ea8a779-c277-480b-8c4b-e781ac8f752c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_247827207", + "DeviceId": "008b504b-f4da-42eb-96f2-5b0eafcafb4c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "edcddb36-5613-4cbd-8486-750b595d00f7", + "TenantName": "Tenant-edcddb36" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508877691", + "DeviceId": "6f09dad4-afed-40e4-9a59-86158861d52e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599283833", + "DeviceId": "1b43bb48-9566-4173-9971-a3e5dfc0c385", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734121793", + "DeviceId": "b154bf5c-5e96-4793-984f-35999cf2f9c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526511664", + "DeviceId": "5317da85-c286-4fb1-98f4-0bd38efc7ff5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161539770", + "DeviceId": "077f9fcf-d612-40dc-bd24-2c01eab63d18", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_262940540", + "DeviceId": "d0187584-e0dc-47bb-893c-38e2df1b830f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a8ad9938-402c-45b2-9c19-9ad68185a1c4", + "TenantName": "Tenant-a8ad9938" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585622889", + "DeviceId": "e6dbb5f0-6c9e-4a5e-b67e-d62f1f8322db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494537399", + "DeviceId": "5febb762-f3a4-40aa-a5f9-b1a4e42d0465", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835018333", + "DeviceId": "7d3149c6-7440-4d12-9cc1-8858ad478207", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_497886280", + "DeviceId": "ee3f7dad-5ba0-4fc9-9028-587fa439218d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439496968", + "DeviceId": "420211a2-2842-4c78-ae35-bb8b535a7ee0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_659286391", + "DeviceId": "450e6a0f-d3d8-43bb-a0ce-e5ab07f8fcfc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "77a4b65a-2d50-460e-b7a8-95db07e3e682", + "TenantName": "Tenant-77a4b65a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_280435597", + "DeviceId": "e7b0cc85-b8d4-44ac-8e08-b3b7ba9d6431", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_465928452", + "DeviceId": "e16d12ba-95d0-4f8f-b868-2e23d0965777", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_216146758", + "DeviceId": "8f6e8ceb-0d44-4253-bac7-c6085e3826d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249140785", + "DeviceId": "f4ce88c6-70ac-4bb6-b0f4-928d9bd78069", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287565163", + "DeviceId": "9cb49243-a85f-4dfa-be67-d60ac67e3bbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_666750468", + "DeviceId": "c406b79c-2c9d-47dc-b77f-56aa491b9aa9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad7f30af-cf9f-492e-a2e5-ff53dff2670f", + "TenantName": "Tenant-ad7f30af" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241150823", + "DeviceId": "f31e9399-92a4-44e5-aa5b-9d12ef883ba4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_254814956", + "DeviceId": "315fccc5-3227-4a04-a631-e3664999af74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797187500", + "DeviceId": "64ecefa5-e219-4d8e-87cc-5b204d7da46e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657026522", + "DeviceId": "c9f7871b-fed4-4335-9e5a-b8b31fc4fb30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897602161", + "DeviceId": "e7583ebf-5f3a-4730-9ca8-1aa6b68730d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_184690703", + "DeviceId": "25d0bfbb-1f9e-4a4e-b654-6b0f014662cd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "155570e2-d87a-43f7-b96c-ec6a49d505b6", + "TenantName": "Tenant-155570e2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242220826", + "DeviceId": "dedf189c-f66b-4aaf-8f30-8fe1ab9bffd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742602971", + "DeviceId": "47fe2cab-5de2-4a5d-9de3-8ccdb9e121d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802737728", + "DeviceId": "0dc33c89-1057-4967-9d68-0d23f0392ec6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_304550419", + "DeviceId": "27934cf1-01be-42d6-9c71-58549d5ba668", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_325311407", + "DeviceId": "bcb88bde-7699-4f97-9793-6866a9b12d0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_840600691", + "DeviceId": "b0fdd713-427d-4b03-b89f-4ce7c6689825", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d697bc8e-2c45-4655-8ad7-4140966a7eca", + "TenantName": "Tenant-d697bc8e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693416698", + "DeviceId": "91fc1461-92bb-4b7e-914e-7cdc9043df4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991557713", + "DeviceId": "f488f381-91dc-4fa2-91aa-8d399f09c160", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687662094", + "DeviceId": "542055ff-6388-4349-a4d7-ce7c3e3867c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400024792", + "DeviceId": "873c88a9-4d32-4a4f-af39-3af01723a44b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379067401", + "DeviceId": "85396cad-39b0-4bfd-90d6-6ff1abfc5f2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_948229289", + "DeviceId": "73c02c1d-992a-43b8-9a38-119fee7759ed", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "25f906ff-3886-4884-b22f-028bb9a0f5dd", + "TenantName": "Tenant-25f906ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644230997", + "DeviceId": "390af646-c6e6-4790-adda-102d1e0b1b44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710972539", + "DeviceId": "22f0a902-e817-4ecf-8cae-5523bade3f12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_641633717", + "DeviceId": "c8db46ae-a08f-4d7f-9d54-e1f92fc4738c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850765953", + "DeviceId": "d5688ef8-1430-452f-86a2-3cea7f0cf658", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158480005", + "DeviceId": "530d3716-acaa-4889-bf40-0dacdf6da5dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_683462963", + "DeviceId": "66b4af97-fd88-429d-83c7-2bcf9e2974b3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b60b2d80-167e-48ad-b895-ab02081a6090", + "TenantName": "Tenant-b60b2d80" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533001896", + "DeviceId": "28921a8b-486d-4663-ba3e-fc949d01dc1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366726914", + "DeviceId": "c8195e75-7c1a-4cd6-9d34-2f519e7ac3d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_809886761", + "DeviceId": "3699f7b7-cab1-4610-a7c9-7f7b7e129699", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564243136", + "DeviceId": "70696237-2185-49c3-ae7a-a0bf52df8a62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_901740803", + "DeviceId": "0ed132f7-9a3c-4f2e-a0ee-66827ede4b2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_202478717", + "DeviceId": "8546aa8c-f015-432e-be3d-b8784298e09a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c21f3886-4f24-4400-90eb-77cae205fe1f", + "TenantName": "Tenant-c21f3886" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290034217", + "DeviceId": "7eb8098b-3b96-43f5-ae12-d22a08bcfc73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430119192", + "DeviceId": "bb8341cb-2d68-4f3c-94c6-c69735b3a307", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_946677461", + "DeviceId": "b98a317f-dc99-4def-a0db-c353da8b2206", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546068726", + "DeviceId": "b6c16e31-b166-420e-8cb1-d27247d1e3a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_717963704", + "DeviceId": "550a16d2-a93d-4f92-b747-7e0321522ed3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_425835003", + "DeviceId": "05e07c7d-ed50-40cc-b968-92d696aeac35", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "baf338e4-23b5-470c-9816-ddfba8e364a8", + "TenantName": "Tenant-baf338e4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_889379406", + "DeviceId": "f47beaef-888b-4abd-a781-366b704f0fc9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996241297", + "DeviceId": "cc519c63-47a7-4e47-a6a1-9b6530ad15ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867930516", + "DeviceId": "0800410b-9d29-4c68-8b60-8e169a344479", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836247345", + "DeviceId": "bd9fb915-e0f1-438c-ab8b-4d66fd61f272", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580358677", + "DeviceId": "b6621ee0-d30c-4ffb-b89b-8738f6f2da1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_858105328", + "DeviceId": "5c7b6c13-9dbf-4314-9fa2-9526c12ef3dc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "710f7c6b-4c3d-494c-bf1d-7d8ccf939d08", + "TenantName": "Tenant-710f7c6b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415281392", + "DeviceId": "b79e1f1a-7ffb-4949-9191-0ee74c3b1d73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380251349", + "DeviceId": "23928d25-aa10-4aaa-abe9-8b6c3056e865", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246756284", + "DeviceId": "d0dde0bc-762a-42e8-978f-a76c2a8d3f89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300065241", + "DeviceId": "393f1503-0245-41f4-9893-7e83029d0703", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_465732907", + "DeviceId": "dca7febb-37f0-4f34-ba94-c87254368021", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_613991100", + "DeviceId": "6e02ae86-12df-4251-8b36-3b9951064d9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a5b93012-68ee-4d91-8979-50d82db3f2ba", + "TenantName": "Tenant-a5b93012" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276283203", + "DeviceId": "4b6f0f43-e0fa-46e0-bfe2-22d699309aba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687566720", + "DeviceId": "0d076e03-18fa-47b5-b4af-28e9976d7ec3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_865866591", + "DeviceId": "2eb70c1c-b06b-4c13-951e-93160c44e54e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508737998", + "DeviceId": "d793969e-7396-4062-aefd-c14239354622", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182182508", + "DeviceId": "269cb3fa-bd3c-4195-a205-784b6bda5e28", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_180660394", + "DeviceId": "8df8fbd3-db19-45a6-ad65-ef57f3bcd202", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97ce584d-d000-444e-88ac-76c1da98e591", + "TenantName": "Tenant-97ce584d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284736153", + "DeviceId": "04bf1054-abd0-4623-b4b0-e566787afcad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650726836", + "DeviceId": "0a459dfb-6646-4383-943b-50e95846d8d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212010132", + "DeviceId": "dca4b05a-a154-445d-aa9a-c570bdbb81b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146418135", + "DeviceId": "a32628a4-206a-4ce4-8423-fd38579d6a12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456377891", + "DeviceId": "c004ab8d-feaa-4508-a831-aa31ef3f6514", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_895382334", + "DeviceId": "8042e25d-d235-48f1-a8a7-f72b79d25c82", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ff5e0ba6-6803-4dd1-baf3-45740d937914", + "TenantName": "Tenant-ff5e0ba6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295760635", + "DeviceId": "4d1a2a09-c0f0-42e3-b247-4e3cdcaeb857", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_406396032", + "DeviceId": "68190206-4652-46fd-8d1b-a5361a5baf49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154601855", + "DeviceId": "155c28df-2418-4ca8-8fdd-9fd3a9daa50f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453980435", + "DeviceId": "4ebc3495-a68c-4b00-a7e2-d48624f2e824", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_833535391", + "DeviceId": "b2dc0b89-4417-4f62-93c0-8b004939a880", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_121004380", + "DeviceId": "3cd1d184-172f-46f7-81ce-304d8bec9329", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8e3d19ca-e438-4683-ab92-16052784302c", + "TenantName": "Tenant-8e3d19ca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250632183", + "DeviceId": "e679100c-9db3-47f2-ac51-02241096230a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761244303", + "DeviceId": "1cc2a081-c522-4f26-9b45-572b2140f207", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822173914", + "DeviceId": "699a2a9d-00a1-4409-a985-5c0af4149efa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_775743747", + "DeviceId": "c4fbcff3-8cf5-4037-8fd1-2817c1fb8c61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583471772", + "DeviceId": "a29c0ab3-861c-4c43-9d62-ef98d18e6925", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_157547881", + "DeviceId": "f3262fa0-93a4-468b-aa37-84e2abd7143e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0a0e6060-15bf-484c-81f6-641ca747898f", + "TenantName": "Tenant-0a0e6060" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585142718", + "DeviceId": "309a1230-0579-42c5-86f9-cbe1c64d7be9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_308985202", + "DeviceId": "34b9d7fa-7cb7-41da-b684-035221440224", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304565440", + "DeviceId": "f9817ab7-e6f7-4916-8476-3a70f8966c9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933991497", + "DeviceId": "6b38ee61-d291-4e3f-8a29-905886f8a456", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606955478", + "DeviceId": "744d010d-e258-44af-9dd4-c68ea3f17c64", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_758196769", + "DeviceId": "f5815e2b-6813-4df2-9b65-646b536e642a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "680463a2-d3f0-46f1-b89c-5eb4c3472e62", + "TenantName": "Tenant-680463a2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354885563", + "DeviceId": "ca208f1e-c8be-4a1a-aa3a-dc1e0b7e4f26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_734877583", + "DeviceId": "a52bbe28-126a-4f8c-97d8-a3a83c5e5d73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_459467579", + "DeviceId": "764f1f88-5b5a-4591-bfd8-2141b19add64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495993759", + "DeviceId": "76976749-14a5-49de-b0ea-4ee47763f461", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564560504", + "DeviceId": "79994465-ff22-4d43-9ce8-f81dc993ec39", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_483742214", + "DeviceId": "bcf3d9ba-a358-43e5-9c11-7cda23bb3cf0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cd492876-2f76-4ff1-9f6c-833a41b54292", + "TenantName": "Tenant-cd492876" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897172831", + "DeviceId": "c9b44f0d-cfd1-42d1-b22b-992dcf43e0bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980833220", + "DeviceId": "2f8d22cf-f5ce-4702-989a-1da882c21189", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394882568", + "DeviceId": "c1a3d009-390c-4a1a-866d-b8ebb6e94812", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899008745", + "DeviceId": "51beffdb-c432-4a77-a3b7-12821cca85f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_198372284", + "DeviceId": "b28cc73a-0283-472b-9fe1-ad7a88226aa6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_382747705", + "DeviceId": "a4508b7b-57db-4fc7-9e07-4675e2d840a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "666c314f-a7e3-408c-bc09-cdf3315f8f5e", + "TenantName": "Tenant-666c314f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_479421140", + "DeviceId": "581f8e70-79cf-4fcb-8a35-9d7627a32b91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_965635360", + "DeviceId": "74b54c64-72d1-43f1-86e5-2d7a9e99e814", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_146306075", + "DeviceId": "a00326e5-15db-4f11-8c0f-8f51e4813506", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131394850", + "DeviceId": "be2632d9-da59-4817-bc14-d0726f224b71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376032889", + "DeviceId": "fc406576-cad9-4469-bc8b-bc86957cae05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_620358354", + "DeviceId": "6b2ca98d-8c33-45fb-a1e2-0bbe598c3ff1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "12385237-6779-4c7f-8fa8-bdb7e8aecbdd", + "TenantName": "Tenant-12385237" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617046915", + "DeviceId": "cbc2c2bc-98c0-4254-a404-c2ec1e8ea881", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538494592", + "DeviceId": "5c8d68f9-4550-4c11-bf59-5713f8be0856", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881669291", + "DeviceId": "719814c5-cc09-4e5d-9988-80cf2cd33459", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_714788162", + "DeviceId": "d22e2232-8eec-4395-b103-bad0317b67fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962548969", + "DeviceId": "2899172e-ad61-4824-a4ca-3c28bb0aa1b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_245941809", + "DeviceId": "db8f8160-fcf3-48a3-ab2f-424cbd9e6df7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "37161ecf-cf6c-48e5-8c28-4d1da25c569b", + "TenantName": "Tenant-37161ecf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922306105", + "DeviceId": "a523ed03-327d-4a87-9877-131633de6c12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420347859", + "DeviceId": "e00f9307-1a8b-4c51-9f90-8577ccfbba3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712454830", + "DeviceId": "7f1ab501-de7a-49ae-bfe9-c4c63e1c58d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397874050", + "DeviceId": "1f28a655-aae7-4fca-adbb-72ebfe33467f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496809023", + "DeviceId": "7e86f086-06bf-4119-8724-bf9a860e6114", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_636708664", + "DeviceId": "a9c392f6-63b2-4ce9-87c0-295720a50654", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b96f997b-2ec9-4e6d-a27a-a7005bb0905f", + "TenantName": "Tenant-b96f997b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_369122669", + "DeviceId": "50f7fabe-8b01-48a7-b62a-53735ccc9ef2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127517918", + "DeviceId": "e00c92e4-e17d-4007-a95a-7638300b6ac3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982853321", + "DeviceId": "1b8cb38a-50a4-4bdc-8e98-41729362e8db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760638856", + "DeviceId": "3aa839af-aed6-4665-8530-77633123d8e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136097519", + "DeviceId": "32592127-bb63-4a22-a4ee-0b1d0d8db93d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_889782441", + "DeviceId": "1ed9c613-e863-4e2b-bf51-e8179e6cf682", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "950edfe3-80e1-48ad-984a-623cd4b9f2ca", + "TenantName": "Tenant-950edfe3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186646066", + "DeviceId": "cf0bc473-f95d-4f6e-95b2-5e0f66c6805b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773517836", + "DeviceId": "1e189ba4-d445-4702-b312-287f54005a01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608262065", + "DeviceId": "fb4328da-0758-4905-b940-2a9892b01a9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_780744316", + "DeviceId": "6ebddbf0-7735-464f-8da0-a996770a8a86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965338153", + "DeviceId": "137e9797-517b-468c-a74d-d06a45645910", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_777924308", + "DeviceId": "27d59674-81ae-4f2b-a49d-d566af9ddd5b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "159f866a-5421-4c0f-9d35-b4f4ef2a7270", + "TenantName": "Tenant-159f866a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467859316", + "DeviceId": "6602c497-5449-4415-a0d9-872bf30ff202", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_994660319", + "DeviceId": "b80a6afd-a55e-4695-bac2-6a07b0c49728", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377964761", + "DeviceId": "ecc3c343-dfb2-483b-878e-50dbda4fe3e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658991656", + "DeviceId": "c535ca34-bcfb-48a7-9e5c-59f917ae1bbc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_683901214", + "DeviceId": "fdae159a-5608-4c93-8c9e-4b2fd915cf14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_290443906", + "DeviceId": "74b23e35-75e7-4763-b9f7-89ff99b39446", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cef4e56c-4dfc-4a9a-bc52-957c1b273eee", + "TenantName": "Tenant-cef4e56c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_378636496", + "DeviceId": "489c8611-623d-4a15-b8eb-46d101a70876", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869963378", + "DeviceId": "97123fc1-4ee9-4b59-8a6b-4ddb492f7815", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708654404", + "DeviceId": "4b8185e4-6a58-4125-b86e-a6c5a59ef103", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939395336", + "DeviceId": "070933cd-83e4-47b9-b98c-bd5ab53570a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726064005", + "DeviceId": "7d5f329a-6464-4886-87de-a378dbeedade", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_163060492", + "DeviceId": "e365f90e-ddfe-49c3-833c-d2cc2a3dbd07", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3fb4be8b-777f-4f5a-88ef-d6d423ca2352", + "TenantName": "Tenant-3fb4be8b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625950189", + "DeviceId": "35b8f6a7-74cf-44e1-a872-7d506c133347", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756432483", + "DeviceId": "212d704d-031d-45b8-bd07-402d9e9bcfd7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897085499", + "DeviceId": "516810c9-40d3-4eca-a206-b1fcd24c9e11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208667455", + "DeviceId": "58f4d489-ef1b-46e9-9821-d042e849540d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157530467", + "DeviceId": "eb6e18bf-302d-452d-9e52-225ef6417c33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_433218485", + "DeviceId": "650cbe07-8302-4cf2-ad9b-617acceadf77", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "de00a080-bc18-4c0d-bbe1-463d2621e34d", + "TenantName": "Tenant-de00a080" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144599442", + "DeviceId": "5d0be7d3-24c2-4cb8-a136-2f3d87e504aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430083294", + "DeviceId": "53504bcb-be42-4628-8f12-d2c51b59d0c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193403905", + "DeviceId": "0dccabcb-bf8f-443c-83f3-5cb8e4907d07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299469464", + "DeviceId": "408509f5-2d14-4e54-a9e4-7de73fd00585", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_912454903", + "DeviceId": "96eea10a-4bb0-43d2-9b32-af1faac35246", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_794397135", + "DeviceId": "017e46bf-0ccd-4dbd-80a1-fc63e07df435", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a765a08c-009e-4827-bb2b-f8d61726ea84", + "TenantName": "Tenant-a765a08c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166217567", + "DeviceId": "87aad567-f46e-464e-9cb7-48499122fcd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_486878489", + "DeviceId": "19ce7c46-05b3-444d-8661-c4bb72d956d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533048419", + "DeviceId": "eda0aaf5-e448-477c-82e4-d4c16bf13191", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258548986", + "DeviceId": "c1464607-679e-4605-9aa5-adc5e217111d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103856120", + "DeviceId": "54e4909e-fe8f-4000-86fd-c88cccc7e965", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_848666067", + "DeviceId": "a553649b-c957-4324-b57f-3fcf036e7cd8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af39af10-3d44-41f3-b269-6bd867102fd6", + "TenantName": "Tenant-af39af10" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757793595", + "DeviceId": "f5b7452a-8b54-4c8c-8215-f3e23c904b84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_971956108", + "DeviceId": "0f17911a-99ab-4427-99f5-11c944deb65f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755451608", + "DeviceId": "8abe5e0d-02ab-420d-99fe-cb81b8b09f3a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_245084217", + "DeviceId": "55ee5c1a-869d-4701-bb4b-38a5b7db0597", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384414010", + "DeviceId": "cbd4d0de-e3f5-4c57-93d8-a6d677406f62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_680420669", + "DeviceId": "886a79b4-16e9-48f7-9e09-f3b8b460c822", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96b1b43d-e9e1-424d-b4fa-3bf4d236b9b6", + "TenantName": "Tenant-96b1b43d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788869905", + "DeviceId": "99d7c0e7-4d05-419f-8fcf-2b959f3e2b7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_923684478", + "DeviceId": "70c9fcfa-33a6-4d8e-97a3-0d18f5f12e7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323699766", + "DeviceId": "28ac025a-a8ee-4b57-a85b-172ac9bd2916", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956026822", + "DeviceId": "b9a65bc0-0670-442e-b8f9-3c29967b08c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_567131593", + "DeviceId": "da0e3dca-1ea2-4963-a272-c8dad6879333", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_357332499", + "DeviceId": "c5017509-eb4c-4738-8786-dfa677310bf6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d1d86307-9836-4dbe-8df7-d96aafe19ddd", + "TenantName": "Tenant-d1d86307" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373798667", + "DeviceId": "ff410420-da89-4eaf-a702-02f92f8f0f64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748384465", + "DeviceId": "21ab7ca6-0d96-47c4-980a-655869322330", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_465032942", + "DeviceId": "a4b56f42-254b-41cf-8b59-5d0dee3a6769", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_317721491", + "DeviceId": "b6cd0209-8cec-41ab-896d-a50d44014ec6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_543312404", + "DeviceId": "da4636cd-24a2-4a66-9391-09636f577a22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_513713673", + "DeviceId": "22952c4a-1119-4b6c-893b-3bf5eacfcbfd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "564c2e32-9809-49e7-939e-ae608a7d1f2f", + "TenantName": "Tenant-564c2e32" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_297745377", + "DeviceId": "af42f8ce-bdce-4ea8-9279-a55493f2ac2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438120872", + "DeviceId": "405fe8cd-3ec5-4793-86f5-7a85b5c7a9c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120960381", + "DeviceId": "a4465e79-8337-4b53-8204-d0630835c4e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558706565", + "DeviceId": "70a8c020-c7f7-4de1-883f-55100655ee99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238228658", + "DeviceId": "11c0e5ee-0feb-4ad4-a8a2-cd2beb87f2ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_326036794", + "DeviceId": "c25b2c63-9de9-404b-91eb-47dd22991a30", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e15b9469-1953-407f-9216-5728e53209ca", + "TenantName": "Tenant-e15b9469" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166891398", + "DeviceId": "a2ae6646-ec96-4e7e-ac0c-254f047648ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881230896", + "DeviceId": "9a338925-f292-45ab-a6fc-45e32475bb74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_173838809", + "DeviceId": "8ab67464-25f1-4c8c-98cf-aa8a3b87abdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_800579160", + "DeviceId": "a6381733-0d01-4ce2-b566-73592814159b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915293425", + "DeviceId": "3951ed2d-2960-4491-b4f7-cb6876e8a340", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_166577119", + "DeviceId": "a0129cb2-01df-4626-af87-1bbad2da42b3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2a38d9b0-4147-4519-866d-0d4bd061250b", + "TenantName": "Tenant-2a38d9b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_855010727", + "DeviceId": "1a277283-2398-4ce4-8bd1-a7b018323fc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_300512817", + "DeviceId": "1ba05acc-dfbe-4f9e-80cf-d7176aaa4a49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899087960", + "DeviceId": "ccb2ba22-1cca-4cb8-b029-0afc7823475a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397278348", + "DeviceId": "80fb9f96-d5f4-47cd-bce9-1c0628292524", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127737326", + "DeviceId": "5ec35716-029c-46d6-a25d-1644444078dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_251153997", + "DeviceId": "fb04500d-4662-4c14-8ec1-65382d16a687", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9f0d23e9-08dc-41cf-b11c-038dd1f51b25", + "TenantName": "Tenant-9f0d23e9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_908653147", + "DeviceId": "fb531edf-3708-45de-803b-0472bd3112cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869687006", + "DeviceId": "f8729029-6415-482d-969e-ff6d48345990", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659475518", + "DeviceId": "d7a43642-af97-4672-a859-644d38fc798e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_491990100", + "DeviceId": "bce1bc74-706b-42df-9893-c1f1c1ffd21d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185607014", + "DeviceId": "6cf316da-0d70-437e-8938-20e75bcc3ee2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_190234122", + "DeviceId": "8bbb6723-b974-4958-9076-bed58ba357cc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0113d5fb-ac26-49bc-b924-d643c2e872e2", + "TenantName": "Tenant-0113d5fb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534186636", + "DeviceId": "bae91789-9d90-4b73-a969-0acd47975fe3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895069018", + "DeviceId": "b0f13598-9186-41f6-bcc7-ff9230e54771", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_289660702", + "DeviceId": "54d7a566-994a-4a4d-ba11-a5f637013f35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_447596781", + "DeviceId": "d63677b1-61d2-4e5a-9162-d9d56f64dc92", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573139665", + "DeviceId": "8034b33a-f160-4ec2-a26b-f9bc8ee03bf6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_550416063", + "DeviceId": "267f3d00-b650-4b1c-827e-0f9d725f8813", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "694a3151-e5fe-4aac-b049-aa53a35e6288", + "TenantName": "Tenant-694a3151" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694295652", + "DeviceId": "a538bfc2-1458-4d18-87ea-5490bc9b9de5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_913196141", + "DeviceId": "4d5e48e0-e7c4-453d-8cd0-24346db24ac1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_823869513", + "DeviceId": "994f47b3-bf4c-4363-8f17-ad3507e7fd35", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425080567", + "DeviceId": "a9218bc3-0534-4d9a-95a6-4392826693f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853181764", + "DeviceId": "5c1feb38-18dd-4fe1-ade7-d611103e71ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_298671744", + "DeviceId": "1b6e0460-fa33-4c9c-987b-7d401e5c7686", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "765dfa4c-e873-4928-84ec-fad4d0502b73", + "TenantName": "Tenant-765dfa4c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_464829131", + "DeviceId": "628c334a-8705-4a29-980b-c391093ec0a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784042366", + "DeviceId": "d71062fc-764d-448c-8720-16d9efcf0a3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756864383", + "DeviceId": "925ba715-08e6-4135-b3fe-f550fd283bfa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432759077", + "DeviceId": "5b7dc8ef-deb2-4b0d-9686-78d0827fbc50", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996001681", + "DeviceId": "c1f4d8c4-62ff-4ca2-81e4-04cf3f8142b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_329097471", + "DeviceId": "ac82455e-d580-4676-b202-fd783c4defe8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "50219c37-ca6f-4e92-babb-fc11bc2ccabe", + "TenantName": "Tenant-50219c37" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328872718", + "DeviceId": "5e851605-d7f9-498c-ace8-3e06e7ac0aad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117206676", + "DeviceId": "7d5a965d-722c-4c4b-bcf4-91f60f7fa078", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318197559", + "DeviceId": "4e32a98d-d268-421d-8d5c-6a1624184d69", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139829960", + "DeviceId": "d5713a96-bf7c-4bd5-bf7c-ab00992f6b9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273066687", + "DeviceId": "db4d3d57-d63e-495f-b2d2-04b2772e35a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_811272882", + "DeviceId": "e3a17412-8f38-44b9-8b5c-7cd5b338ed64", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b31ba8d4-0587-4045-8d12-6a90369bb210", + "TenantName": "Tenant-b31ba8d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652974320", + "DeviceId": "9c6a85e1-34e2-4b38-b203-e3f4e5a7b858", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108059223", + "DeviceId": "36843add-b0f3-4ed6-82ba-3045e709f9de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688076952", + "DeviceId": "0bca0de4-ee1d-419d-adf9-9ef80db00263", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368939633", + "DeviceId": "1ce5006e-e9e7-412e-bb44-45a6e0fdc9ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_840282057", + "DeviceId": "cfc25b7d-f668-419d-8df6-d923991cb8f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_509351847", + "DeviceId": "8bc66b2c-c546-4569-a128-3c83a41f94c9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "44bce882-339d-4ca5-a31b-f3b4def4a504", + "TenantName": "Tenant-44bce882" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212518184", + "DeviceId": "0811d591-26a5-4e61-8362-ae4ba8b6e917", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236477061", + "DeviceId": "896336de-13b3-42de-828a-d998fbbf50c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443035768", + "DeviceId": "c74d8bfe-fc6a-466f-9d89-f9767559a5af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_412340209", + "DeviceId": "e854b9d7-f47e-4c71-a034-e22ea5f78a91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966024575", + "DeviceId": "8b4fdae2-1ddf-498d-825b-0570474c2ebc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_195031746", + "DeviceId": "763f9561-a429-469c-9df9-8ed875944593", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2c00a798-2424-43aa-85f2-ee33c6cd0d70", + "TenantName": "Tenant-2c00a798" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272703581", + "DeviceId": "b032b74d-99b9-406f-b86f-988dca9aca9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292885261", + "DeviceId": "465b7328-2dfd-4e59-991d-41d7d6424209", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_947998794", + "DeviceId": "409a846e-db25-4e84-a3fe-1f3f636e4886", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146324560", + "DeviceId": "47c1ed37-3573-4dce-9b7d-7ff201880988", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270233956", + "DeviceId": "cb850fcd-d72c-4f5d-819e-cf21a6691c14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_146914878", + "DeviceId": "9c2c4b27-b4cf-4144-97c5-6a71b8b107b5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "09232bdc-2ac4-4c39-9509-7717574ff042", + "TenantName": "Tenant-09232bdc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_523304157", + "DeviceId": "3d97ada6-3b96-4299-b43c-353be4e45253", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428127079", + "DeviceId": "d48d56e1-8bf1-4271-9270-91ebd68b5857", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_524286016", + "DeviceId": "da99bd59-d9d4-4f12-9ab2-b8cc6eee781c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_978370365", + "DeviceId": "7558d721-8465-4b0f-8fa0-03e2ec2ab687", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570651761", + "DeviceId": "e545caf2-a957-4b6e-a284-801bbbbd0bbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_108947697", + "DeviceId": "94e7c414-32b1-49be-84e2-b253facf9b4c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dabd64d9-a4f4-4562-91b3-ae08a5f8af98", + "TenantName": "Tenant-dabd64d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474699505", + "DeviceId": "b1228431-b6b9-4116-9f3a-4812dc3cef2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_700786770", + "DeviceId": "741f12c8-59ee-4565-bae0-fe9a7cfaacf9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560643415", + "DeviceId": "e1a5c0a6-b9c5-44a3-af9e-c0e068299b56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_375699848", + "DeviceId": "7e083647-bda4-4788-af47-41cb603bea52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105390863", + "DeviceId": "20d01657-ee49-48ee-88a3-cd7cf8e809e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_575944562", + "DeviceId": "eafefffd-740f-4ada-8c67-c9ec7f786a6f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "51296762-bf8d-4523-ae65-ea61edefe752", + "TenantName": "Tenant-51296762" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429249397", + "DeviceId": "b170965b-0084-4dc5-b926-877655c63aab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494311393", + "DeviceId": "0a62e421-3760-4cb5-89de-345b99e045c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_537149825", + "DeviceId": "b20f00fa-eec3-44b5-aef2-5989774c47dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637894155", + "DeviceId": "844a8259-7b96-453a-acf4-53d12856eb16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342988915", + "DeviceId": "38142be3-f88f-4f35-9b25-d1930fd1d18e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_919085250", + "DeviceId": "0c6a4d84-474b-441b-8c9c-ed75b8fb5407", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5b85435c-19a3-468b-ba12-4f55d84521a6", + "TenantName": "Tenant-5b85435c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134036777", + "DeviceId": "04cb3184-bcfc-4148-b16b-2fbad018721c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991344373", + "DeviceId": "b440dd98-112b-4dc5-85e7-f442c9ab9210", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996668843", + "DeviceId": "e48f77a5-c397-4a12-9b12-264ca8ef7e46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636557643", + "DeviceId": "18bf4864-34ee-48d4-b1a6-5fd6e4ecddbe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701147085", + "DeviceId": "12d03df9-e18b-4c5e-b2bc-92eec459763c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_710213209", + "DeviceId": "75cd4f80-12f8-4834-8a1c-7276570d23f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b84018d1-3090-45de-91ec-e7e527d1e693", + "TenantName": "Tenant-b84018d1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675333953", + "DeviceId": "674ed670-1c83-45dc-8ae1-45651706dc9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_238385532", + "DeviceId": "811a71ae-1652-4478-8b95-c719f94401e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549748266", + "DeviceId": "7734dff2-718d-4cb2-b672-56e0f0a268e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688402463", + "DeviceId": "98162605-3511-4201-8e8f-5680659af695", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181809418", + "DeviceId": "134b5f72-ef88-4f74-8199-38ef56cd6629", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_912827851", + "DeviceId": "49bf7417-aa65-41a1-909d-da74071ccc1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0950bc60-4831-42fa-9ede-5ca62e80407a", + "TenantName": "Tenant-0950bc60" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739062894", + "DeviceId": "3a81f27b-5c7c-47ac-9eff-c4069de5f0d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912464791", + "DeviceId": "a572e114-2965-48e0-a043-a589c578d787", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329290644", + "DeviceId": "0db26f08-d262-4e01-84bb-116f03d8101a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335697983", + "DeviceId": "147d58bf-eb4d-4f9f-878f-855ea00a18bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_776994720", + "DeviceId": "a10448f7-50bb-466f-884f-3c54911b1eb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_254624868", + "DeviceId": "c5a6156c-76b3-44ce-9010-b531088071a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "78377252-344e-4462-af48-b7995081cb8b", + "TenantName": "Tenant-78377252" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981301286", + "DeviceId": "b9c430f0-4714-4dcb-b879-09eafa4b9955", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895805286", + "DeviceId": "c7c35877-ae7c-4b55-ad94-c8ffbfb8e182", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_932976301", + "DeviceId": "571abc56-9da0-4ffd-adf0-c5aa383e1a8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_492386838", + "DeviceId": "3aac3d79-40e0-4699-9727-6cd7e3277ab5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749997788", + "DeviceId": "11ff022e-3762-4033-a938-2b4bf5572820", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_548670015", + "DeviceId": "1960eb35-9c96-411a-abc7-714532b5ce18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bc68a6f7-60ee-4759-a91b-c94647babd90", + "TenantName": "Tenant-bc68a6f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475472636", + "DeviceId": "17b2a906-1518-4ed0-a805-5911b5611567", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151656756", + "DeviceId": "91d4f858-9d34-4814-87d0-72b952a5c885", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900291126", + "DeviceId": "d88df01c-ce2f-4733-9cfe-bfb5f2ca74ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_446500466", + "DeviceId": "40a68c16-1c75-4150-a3b7-26a0dc62a8b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_350582073", + "DeviceId": "1a6600d2-f94a-4579-86f1-e28289f08d88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_260423682", + "DeviceId": "7b765fd2-786b-46fb-98f4-87d6c17c6af8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e6329bf7-3266-4eab-b265-378ac210b5ab", + "TenantName": "Tenant-e6329bf7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893556656", + "DeviceId": "3c92933e-33c3-4722-a09d-17fcfeaa965f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825202903", + "DeviceId": "6a677865-e8f8-4ed8-8434-0c001eabaede", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561842903", + "DeviceId": "a20e824f-1c0b-4dcd-a5e7-cd2a6bf74379", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457267192", + "DeviceId": "f1a68276-a5d4-4bb1-a219-ec036d4e4593", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802527302", + "DeviceId": "f3223aaa-7db4-436f-ada0-adb2d6b98378", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_272552085", + "DeviceId": "f8130de0-1c82-486c-9988-3358f9a56525", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00670df6-5aeb-4e8d-83e5-c2c6a7f9d836", + "TenantName": "Tenant-00670df6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_198460262", + "DeviceId": "3a5d3467-aac6-402c-8973-ea19d3b80509", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793302147", + "DeviceId": "e4cd06b8-109d-4732-aa44-1ea7e2a37732", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677598941", + "DeviceId": "afd8575f-95d7-46e7-ac1a-977ad4feff83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_859324413", + "DeviceId": "035d1773-9f75-4769-8fd3-f54c30e0b5c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926615869", + "DeviceId": "9c11910d-5bee-46aa-9599-7c392215f521", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_483786673", + "DeviceId": "e7fd8951-9f67-4ae6-8078-2b848a507e54", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c19116d0-a737-4fa5-b0cb-20a73ca2f872", + "TenantName": "Tenant-c19116d0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227430028", + "DeviceId": "813de712-d07b-4d4c-b017-96d69bdc7303", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437713408", + "DeviceId": "28e4732b-dbfd-4388-bb21-ccc1830edd6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246951155", + "DeviceId": "f32311db-2ac2-48df-ba71-fa09276afece", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988748632", + "DeviceId": "aeaeb0ae-4bb8-486a-9bb4-dc155b2e34f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_819230643", + "DeviceId": "a07c7a04-d84c-4ce8-8002-4b9bca10226a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_888536595", + "DeviceId": "397069e4-8764-4b2e-b5a7-fadfe6dccac2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c7860c21-c3b7-4484-945d-4d01028df2f6", + "TenantName": "Tenant-c7860c21" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987876905", + "DeviceId": "8319708e-6d9c-4c2b-990e-349a8a02e49a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588010445", + "DeviceId": "f08e49ba-e716-4ad9-b652-06c36ac5314b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495450609", + "DeviceId": "868a6f75-00c1-46fc-b177-38eb49b896ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_504172190", + "DeviceId": "cf0feb16-02af-4f15-b727-20aac3f167a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287598456", + "DeviceId": "15afb936-1468-4219-9af9-cac08fa983cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_406644114", + "DeviceId": "778d4cff-62d9-4730-984e-36721afcae1c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9ec96569-ff7a-4cab-950b-7b39305d9ec8", + "TenantName": "Tenant-9ec96569" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_749663376", + "DeviceId": "2ff12607-b839-4d8a-85fb-62bd2a2c1668", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610729672", + "DeviceId": "9634f814-9fba-4378-9e2a-b6b40506e1a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500762716", + "DeviceId": "3c0aba7c-cf75-4634-a8b8-c3585f03f05a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918860287", + "DeviceId": "18547630-e750-4749-a253-708b9296cb97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557832044", + "DeviceId": "fa6f9fb1-64d7-468f-bb0e-1166f8aaa1ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_854334839", + "DeviceId": "7c0c77fb-32ad-4839-bdad-d67784231674", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "efc111a3-33df-4055-8d01-76d72a1e40fb", + "TenantName": "Tenant-efc111a3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210004119", + "DeviceId": "70f83288-448b-408f-bcfa-7f49b9cbc00f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236323968", + "DeviceId": "8556496d-062f-4448-b165-9cc17b26e80e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_782898654", + "DeviceId": "ac5189d0-db41-49dc-8937-fad82cb7cee1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672798583", + "DeviceId": "fb83ddba-d9bd-4c24-8df2-d3b8082ecf71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316996029", + "DeviceId": "8766d9db-ef73-4a39-90c2-193522de1151", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_559505668", + "DeviceId": "9f15a89b-e236-47e3-94e4-275e8525495a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3236b06c-c234-4f38-a2bf-a5ed2109e0ab", + "TenantName": "Tenant-3236b06c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680683036", + "DeviceId": "b7c69344-b80f-4257-abcf-14618d8b5782", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714187048", + "DeviceId": "20f3addd-234d-4670-965d-0ce61a422d5a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_517563251", + "DeviceId": "068d1137-99d3-4568-a6f8-4c9aa5c69fc3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596990271", + "DeviceId": "164fe7f2-047c-4542-bda5-59b326932c3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314896909", + "DeviceId": "1d04beed-9257-4916-ba07-a290912136c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_574865652", + "DeviceId": "9303745a-fcb6-4779-b843-08cc71cc4a93", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "311ef3e1-70ac-4ec6-8a3b-396f3d21007f", + "TenantName": "Tenant-311ef3e1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_322826252", + "DeviceId": "82b63127-7b93-4eb3-9c4b-91bc9458ddc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120752963", + "DeviceId": "37e74af4-70be-4309-8bc5-12b6ea1bc795", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974187842", + "DeviceId": "87e330f7-6f71-47ba-9105-6e6ac7006f87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960759106", + "DeviceId": "97b67a5e-b57e-4979-826c-14b13876a47f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223891970", + "DeviceId": "746f573f-9f85-465b-aab4-52be1e514fe7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_135438990", + "DeviceId": "c3cc5973-f531-4ad2-a778-d0032d824a5e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6b81a8b2-6e2e-4d97-94b7-9cf2d3b20035", + "TenantName": "Tenant-6b81a8b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794366101", + "DeviceId": "c5607b4f-b4b7-4c2c-ba9c-b700eb5377a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539066440", + "DeviceId": "d121450f-7534-4664-bfb6-0fc0a369466e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_335816137", + "DeviceId": "89ae435a-146f-4c7a-a074-3c5a6b1dc045", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_891558061", + "DeviceId": "49e43744-8ca0-40c0-bea8-b1e079819f23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755908919", + "DeviceId": "0d73b235-9796-4a84-8e7b-b4aeeb9159dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_967521531", + "DeviceId": "c719fd5e-9549-428b-a959-c6b0a867ece8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ec4bcb22-f827-44d7-9386-24b709031360", + "TenantName": "Tenant-ec4bcb22" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281138285", + "DeviceId": "763c09ff-518d-424b-9a61-744b837db1f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891487307", + "DeviceId": "86475176-4bd9-40e9-95fc-446f3f00b546", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612179445", + "DeviceId": "6bee370b-2f8e-4244-bab3-3c9234d7e27b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590716414", + "DeviceId": "9e8225df-841e-4b7a-a3ac-148bfddd9373", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_265850147", + "DeviceId": "5c762ee5-7146-4c99-b573-0b44604a1b2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_442299765", + "DeviceId": "2559b4ac-147a-4e53-a807-87ac77537ce8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c31f0af9-3822-4b99-a1ff-a7972edf6361", + "TenantName": "Tenant-c31f0af9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_669902779", + "DeviceId": "b5d4d4d6-f516-48cb-9eb2-b9b7e1697600", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835252977", + "DeviceId": "7efa055d-5f75-4eb1-b5e2-43d737d2a091", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646801961", + "DeviceId": "515a9cf8-4b07-44c9-9359-20c9f2ceb353", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656437900", + "DeviceId": "dc796268-a701-43dc-bc46-04431bcea3ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369553390", + "DeviceId": "157ccf2f-0b1a-4849-b1f0-96bfffb32b91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_188805720", + "DeviceId": "50e6ff63-8582-47b0-84e1-2c2e7194361b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "303b9a54-4b9d-4d43-8b86-88277ba2f388", + "TenantName": "Tenant-303b9a54" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661034042", + "DeviceId": "028a78cc-fa8c-4317-a9b0-74a9c75ef280", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279324991", + "DeviceId": "ac08b64f-041e-4c8d-80a1-4a51a49aca8d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_519746333", + "DeviceId": "30a97715-5949-4aca-a87c-6195700c4144", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961184008", + "DeviceId": "9cdcafbd-dffd-4628-8c11-8618df27837b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916561685", + "DeviceId": "e3e9ecf2-3197-4765-8332-50dcb5d47f83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_994600043", + "DeviceId": "01e92a1f-39ac-4ef7-aac8-c7fa8a03d58f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "40c77c1a-6b05-4286-9b2b-97c7a8bf0a53", + "TenantName": "Tenant-40c77c1a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_792558999", + "DeviceId": "c9b450c7-b906-48c7-bd8f-6a3a7697ccf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731699633", + "DeviceId": "f37bce7f-f268-4fd1-bd4a-5956d3709ffd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687017842", + "DeviceId": "f26c692b-7a13-4319-a2af-ea2d30f8d8de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_804982829", + "DeviceId": "1ec4370e-01fc-41f6-a3b7-0e9a7ba99c52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231192449", + "DeviceId": "1a7707d5-2d86-43c8-b831-2c548d50aeed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_808739261", + "DeviceId": "b44f0ff2-fe3a-4ebc-ae57-f75ee5e26e8d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "61f67be1-44dc-4f02-8a13-1df81fadef41", + "TenantName": "Tenant-61f67be1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_654461825", + "DeviceId": "34a5f283-bb31-4d1e-aff8-b908d9374bd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628983598", + "DeviceId": "7bbda390-406d-4fd9-bdcc-b077b157d157", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818072196", + "DeviceId": "f2a7497e-1ddd-431b-b0bc-f807f255f095", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105060065", + "DeviceId": "6e941ce1-1ce5-47fd-8723-d2819275772a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316723074", + "DeviceId": "a2b19d38-7255-4841-8bb4-85930105d8e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_298348445", + "DeviceId": "0e48cc65-af4f-422f-a74e-8fdb0c9cd2ae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7234c244-c707-4edd-afd2-a6b1a9e3bd6c", + "TenantName": "Tenant-7234c244" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867106012", + "DeviceId": "230777de-e072-45e6-b9f0-cdb8d1a61d91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304051191", + "DeviceId": "f160f06b-d9fd-4a2d-a743-8dc6d1fdf9c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319240319", + "DeviceId": "f02224e4-237a-422b-afea-3ae8d6ae7986", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123436109", + "DeviceId": "a5f1f0ce-741b-4c8a-a3b6-b7d9948064f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_788591623", + "DeviceId": "6bc458a5-b188-405e-a6e2-151baf816fe5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_279725596", + "DeviceId": "3bf80875-7fe3-4044-84e7-fe19723754f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e7cf3899-273f-4e79-976a-f628ffbf3652", + "TenantName": "Tenant-e7cf3899" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874715020", + "DeviceId": "317cb500-91e7-4039-ad55-82d68aa00ae4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565669073", + "DeviceId": "87e79b6d-540f-49b9-a4c6-e869e36c8e1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352792137", + "DeviceId": "037764b3-9742-408a-9e17-3a1227184e58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309588628", + "DeviceId": "1d00cc2d-ae24-4a3c-8494-b0830444b0a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609893941", + "DeviceId": "26eb6217-f26f-4571-856f-458861d0fbc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_164679865", + "DeviceId": "12b7c774-6686-46f5-b420-16ef0f5d188e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "806892ec-edba-491a-ba62-5a6cddee6148", + "TenantName": "Tenant-806892ec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574570486", + "DeviceId": "16866289-4e86-4d2c-9fdf-ee819ce8717b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841254756", + "DeviceId": "66ab7296-07e1-4592-b1f1-a71dbc9df283", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362426032", + "DeviceId": "270ae81e-3bfd-4d92-9ea5-01bbdb430bae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266792341", + "DeviceId": "8d898e24-955c-403c-86ff-d113240f605e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642536255", + "DeviceId": "9d55963b-4825-4632-a39a-7e83e40c9e9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_175123126", + "DeviceId": "4dc270c4-43b9-49fc-9fbb-813ac212398b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7a7355a0-e834-4551-b3b5-79b2b348f8c3", + "TenantName": "Tenant-7a7355a0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837168339", + "DeviceId": "35c56c53-ee37-404e-bd35-73d1f522d729", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233644076", + "DeviceId": "c538edcc-95a0-4952-ac2e-a8691479850e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_988394792", + "DeviceId": "519e1d00-3303-4ffe-aa91-e143ba20bd2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_444332039", + "DeviceId": "7dbeccac-1713-4e76-bb90-ff631378e2d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_275327420", + "DeviceId": "3d8f74ae-e007-4ab0-8f91-a1d0561b63b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_774840546", + "DeviceId": "737e2f99-de6b-46a9-9bdb-ffd959250adb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "440201b1-c9f8-40ba-a73c-77dfd4ee3629", + "TenantName": "Tenant-440201b1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270265445", + "DeviceId": "e2784d56-5ae9-4358-897a-cac7e4ddbc7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872967143", + "DeviceId": "3d98fc8f-6736-40c2-981f-4502c068de79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_595363702", + "DeviceId": "413e8f30-8d8f-4b6d-b947-b44fd61664db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609420304", + "DeviceId": "3a72de6e-3505-4648-bf07-b40be18dc329", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858554735", + "DeviceId": "3dd1a6d0-33fb-467f-8634-7416330d2a99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_769692374", + "DeviceId": "610b7c11-9cb7-4967-ba63-062fbd0be966", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bd10851e-aaf3-4bef-85ec-12b95e75a696", + "TenantName": "Tenant-bd10851e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468311203", + "DeviceId": "fae71c44-a92d-48f0-a5f4-dec223cd416c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_110027270", + "DeviceId": "f40cf9a9-aa4b-4eca-9abd-abfc4f820116", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455388872", + "DeviceId": "859eb7a1-329b-4dd1-a9b0-cc89f6b4cad1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_790292634", + "DeviceId": "bc5dc7af-87f6-4833-83a7-eca60a52d5d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107752136", + "DeviceId": "d2ff1bad-7be1-4107-b97c-1031b1e6a509", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_656758440", + "DeviceId": "a2404d22-ceba-4bde-8887-78444b6679eb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d4bf19a8-31d8-4a9d-802c-ea8810ff17e8", + "TenantName": "Tenant-d4bf19a8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591834942", + "DeviceId": "8a426d68-9f90-4314-b1c7-f1b4a6ce4ad9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916442694", + "DeviceId": "cbe0298b-f5f4-49c8-a135-5f8c8bcac492", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996463008", + "DeviceId": "4d0a9fd6-4f01-4304-b593-a14abe9f995f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176671057", + "DeviceId": "0008ba57-e7fa-4e32-9680-b6414e2a43b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846311398", + "DeviceId": "9cbe365b-0f55-4c47-b847-fb0cabbd9185", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_561596038", + "DeviceId": "dcbc7af3-2992-4a80-b428-1ce1d07a0420", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "546d2fb4-bb17-4aec-b7fa-854b70833bf4", + "TenantName": "Tenant-546d2fb4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130800251", + "DeviceId": "362c89ac-e1cb-47b7-a3b9-20de2a7d7ef8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720875541", + "DeviceId": "f41a926f-de88-4cf6-abc0-605741547681", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_517460514", + "DeviceId": "84b5caa2-4cba-494e-8930-32c69756d2b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_125134297", + "DeviceId": "af89b324-7405-4f16-8461-369ca0f195fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_712400131", + "DeviceId": "b003db0d-ca55-4bf0-8d64-462f39faad58", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_588887801", + "DeviceId": "7a9c02d3-62ed-405f-970a-ce00eddaa280", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eccffc96-f567-4fba-b35b-2eaf6af6aa68", + "TenantName": "Tenant-eccffc96" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806017857", + "DeviceId": "e2c1ce05-90a8-4955-85c4-88e7afdc32a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439597217", + "DeviceId": "22384a6f-fd67-437d-8ea4-671c8c39cb01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425076844", + "DeviceId": "428ce4fd-5b03-4b12-8924-7fb6de71a1b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965785554", + "DeviceId": "f8eff2ef-90ad-4c4f-8159-3266065deef2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199950029", + "DeviceId": "041d8516-3269-444f-ac78-c61b81e6b7cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_387260207", + "DeviceId": "ca24117c-41be-417f-9638-db4061f5b98c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ebac7235-f561-4097-8fdb-ad3d3202d5c0", + "TenantName": "Tenant-ebac7235" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_848759982", + "DeviceId": "027a0c71-3b02-49c0-9b99-74153728f70c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888839699", + "DeviceId": "3bc89162-d28b-4005-8d32-f30eef202b1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938865784", + "DeviceId": "8020b0dd-bf85-4918-b99f-35acfbb7de14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577725634", + "DeviceId": "42e7f2cb-c8ab-404d-a864-78819b93e61e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713170026", + "DeviceId": "314216e1-4ee9-4a2c-8add-55fbda2f37ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_102549454", + "DeviceId": "0466e106-2c88-4b95-8862-2075a77d1f96", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c53c084-6a42-4a17-9907-3131d2533133", + "TenantName": "Tenant-1c53c084" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568577640", + "DeviceId": "00a81e65-b051-440d-b07e-d337415401d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141668466", + "DeviceId": "eaca74c7-1cc9-41eb-b187-bd6b76125f12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731814282", + "DeviceId": "3e6cd425-b8e2-4029-9a86-1925c86ba8c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480257605", + "DeviceId": "6b6da96c-df41-45ac-8aeb-b9c067cf6244", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700541352", + "DeviceId": "315ec79c-0040-4baa-a5c4-5bc4c18550d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_141558357", + "DeviceId": "997dbe1b-2c1b-4e52-b0fe-065d297ea502", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96faee46-d14d-481c-a28d-cc1422308a74", + "TenantName": "Tenant-96faee46" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_268250504", + "DeviceId": "3389962f-3b6c-48b0-ab1f-9463bb0b1f12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_180361712", + "DeviceId": "4dc5b13d-f4dc-4918-abda-b26592581e23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_750357259", + "DeviceId": "286fab7c-0ec1-4581-8874-1f44fce404e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_870546883", + "DeviceId": "8b746edf-7bc4-4eeb-bc20-9c6b6ecaa924", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831936520", + "DeviceId": "aa86d620-dbfb-4169-9cd8-16410eb08c5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_788622023", + "DeviceId": "c0cf3311-be04-42ea-afa3-988c43905a0d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dd65390b-4c4d-4cc4-a94b-70cae219db85", + "TenantName": "Tenant-dd65390b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117780627", + "DeviceId": "f524c92c-329e-439c-9994-d027f05350ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_687166225", + "DeviceId": "fb69cc51-cd48-442a-9caa-d34e66693e0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_182335869", + "DeviceId": "d11fa5b9-7432-4ab9-8f37-f608bd52be05", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886566741", + "DeviceId": "7913bb71-c516-4e36-9d8e-96f0e100b625", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378808393", + "DeviceId": "5d42f681-4316-479e-8bbe-740fe88c2273", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_928610170", + "DeviceId": "8e4b911d-b71a-481f-b525-00e7d95c4cca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "75f6b35a-fc28-432d-add6-44448ee07caa", + "TenantName": "Tenant-75f6b35a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362798396", + "DeviceId": "e49e4842-fbe8-40d2-89f0-3e4b3d59a0a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_660477637", + "DeviceId": "bb645a9d-cd1d-49b4-804c-a38634fd31ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762674178", + "DeviceId": "a5583004-88bd-4f6f-9655-62939e2a2b41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933483633", + "DeviceId": "2e975ba7-af11-49bb-9923-11527ea5c968", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_361464690", + "DeviceId": "013570a7-0743-488e-b764-a2c85e191586", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_885368979", + "DeviceId": "8a1fd4ef-7149-4c27-b71f-33256c40b9b3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cdfdb0b0-d796-4ede-aa8c-665c641064a2", + "TenantName": "Tenant-cdfdb0b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186192310", + "DeviceId": "0e102d66-533d-40eb-9e45-3d516b26a044", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285166645", + "DeviceId": "8ddf0371-dc0d-4fd4-a02b-3a3a14bf106a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939379449", + "DeviceId": "7eaa75a6-da38-43f0-ab71-4659f6f577e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399214802", + "DeviceId": "ad580887-9a11-4f03-af90-7dd9e4b47529", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168581154", + "DeviceId": "8639253c-1247-43cf-b0d6-a0a879ae112d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_810969260", + "DeviceId": "8d190fab-169d-475b-bee7-2873a417b43e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cfd556da-a35f-42b0-ae7f-e136ba0b27b6", + "TenantName": "Tenant-cfd556da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993960220", + "DeviceId": "e2b790a4-11bc-445d-9317-550bd907bc1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744097764", + "DeviceId": "414b8ff5-6e0d-4a5c-8525-024f4a2961b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998743139", + "DeviceId": "48f6a6db-0cfa-419c-b018-8ab40e23cff5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_829925692", + "DeviceId": "94a9456b-5aed-4efb-b3fd-a860a91f4f3f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744324274", + "DeviceId": "5270ea7d-c902-4ae8-98f0-0c0bbd7f5279", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_676896826", + "DeviceId": "aaf2869f-30cc-4768-bca6-0fa2fff20252", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2daafee0-b507-42ae-b035-023b380c6841", + "TenantName": "Tenant-2daafee0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498961180", + "DeviceId": "ade27a2a-bfda-4b1b-81df-3df78affb19d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936971615", + "DeviceId": "c0ef827a-d09f-48f9-819c-2a19fb63e7fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806624877", + "DeviceId": "2e86f97b-2f9c-4103-aa8b-46a9b254009d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297451663", + "DeviceId": "07ae2355-35ff-48e7-a9af-1deb079f6da7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999596203", + "DeviceId": "5cbdeffb-3da3-40d1-a3a9-c373aa983b88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_375019595", + "DeviceId": "0ec0f8dc-b927-42fd-8dc5-95b729efc701", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "94a68b70-ef63-4ac9-bb5f-85b1fcfd85fb", + "TenantName": "Tenant-94a68b70" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836005591", + "DeviceId": "e902c8e4-0478-4426-93c5-8f662f1ff370", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231156893", + "DeviceId": "f310867b-20f5-40a9-9756-4a8f60b69687", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827147402", + "DeviceId": "59ed1b51-2da6-461c-a604-bfadd526bb87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263142005", + "DeviceId": "9b7a22b0-a8ec-480e-8f4d-1dc6288f83a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843102968", + "DeviceId": "ba05e146-c889-4148-a07b-2b1afe8d9c9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_183424835", + "DeviceId": "04f3fc2e-0880-409a-8abf-58293d75c2c3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "42101bf0-1773-41cb-a24d-949e40aaf0db", + "TenantName": "Tenant-42101bf0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611197349", + "DeviceId": "d3708ca9-4a3d-4766-8ba9-03d5731cdbd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461943638", + "DeviceId": "676eb83e-eb69-40e7-ba91-c0fa2c53024a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787966805", + "DeviceId": "4a6a9141-2283-43b5-acd3-19d935656747", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286536290", + "DeviceId": "4452fab9-ce5f-4b40-bc80-13c6c657f1a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312900501", + "DeviceId": "e4f4e9ac-5191-44f8-9462-1e4e2bfea62b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_858285093", + "DeviceId": "1b36d864-bb26-469a-bdd8-8fedd9ea83ca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d3b7511e-d127-4b7e-a7a1-ae9c40468c40", + "TenantName": "Tenant-d3b7511e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567155761", + "DeviceId": "01565715-cb0c-4931-bd8e-c3cde2c02183", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525063854", + "DeviceId": "c66cd42b-e155-40fb-8ee3-085ec6c98ae7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_209010087", + "DeviceId": "2c34c1a4-eed0-45e0-8649-46d681855e22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703163719", + "DeviceId": "6b2730ed-5899-4134-bd25-32a03c96818b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_133603917", + "DeviceId": "c6b8308c-fba2-4dbe-b9db-0bc50a213bb2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_808826383", + "DeviceId": "c09261f7-6669-4198-8e2d-098736b744a8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "465071f6-3baa-4d74-a125-119aa2925749", + "TenantName": "Tenant-465071f6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_695038352", + "DeviceId": "4c6beafb-5695-4524-985e-e54ae0b64051", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556490720", + "DeviceId": "20240bd2-ffe8-4916-bbdf-6bef6ce7cdd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678089432", + "DeviceId": "7dc44609-e28b-4fc4-bb6b-e455fa263c65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581319631", + "DeviceId": "9d9e3236-9bf4-438c-b05c-4227e3d5201a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337463848", + "DeviceId": "f3f3ae0b-6f87-4482-8996-a08153527786", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_198337293", + "DeviceId": "5e69de48-4750-4438-93ed-a9e8d3c78e96", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d63086da-fd2d-4d57-a0da-398823695cf1", + "TenantName": "Tenant-d63086da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352812359", + "DeviceId": "f3ac0146-2965-4216-81a7-87062e96df58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_689942215", + "DeviceId": "4b5b394a-e505-4e1d-afae-72b7c2a632ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515637307", + "DeviceId": "429717e0-26be-45c9-aa27-ee475ffb7167", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_166388041", + "DeviceId": "e9ae6c6c-b39d-4a96-b366-b3526261c5f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392907161", + "DeviceId": "9dbff551-da5b-4a01-96e4-ae91eab2da78", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_418542452", + "DeviceId": "ff5af53a-1b54-48e3-bf91-fe4c005237f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "504b9540-8059-4b01-9989-4e6feb5bf91a", + "TenantName": "Tenant-504b9540" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561443194", + "DeviceId": "dd0d4a03-6598-4c5e-93bd-ae0731f496f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_395079180", + "DeviceId": "11153271-f845-4ef3-a502-0eb999c07ddb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728567730", + "DeviceId": "60deab7d-bd82-4572-8471-2e203984ffea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511119281", + "DeviceId": "7af0cf68-e90a-4eb5-a118-19d53980973b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_285967497", + "DeviceId": "38218c92-5770-43fa-844a-28994f0072dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_415322849", + "DeviceId": "eb9ab0b5-9192-475b-96d4-6afc008f0d90", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dbd341c8-d9d0-419d-8df9-4c5c418a357c", + "TenantName": "Tenant-dbd341c8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362300809", + "DeviceId": "f541b1ac-4e00-4c54-93e4-3cf294abe296", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_383802003", + "DeviceId": "12d1adb4-7c5c-49f3-84f3-1f63a09f6139", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419214207", + "DeviceId": "e64cc688-7257-4ea4-a95b-144001423a92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742808665", + "DeviceId": "cb677ed4-5fec-4237-a3a4-d893116214b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660739825", + "DeviceId": "533a4d06-5dd0-4296-aef5-905d3bb3e46a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_555731164", + "DeviceId": "af24e192-f1c6-4fb2-99c6-62fe925b8088", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ca543ba9-6adc-4014-b77b-3bc5de128eb9", + "TenantName": "Tenant-ca543ba9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718397877", + "DeviceId": "c6d108d1-461d-426b-9343-ea20c6bc9ee5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533315927", + "DeviceId": "65284dab-3086-410e-9fae-cfb3d155e561", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482472810", + "DeviceId": "7c375f9a-6048-4073-a0e8-c41c2f7a4866", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_738351424", + "DeviceId": "1bf1a355-2893-4bb1-9f69-802b4f9f5259", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_415650133", + "DeviceId": "b033c981-c60a-426c-a17b-ee8a3ba98291", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_993946327", + "DeviceId": "dfa8fc50-9337-4192-a0bc-1b9453b6b74a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b12ab5a3-2e0b-49a9-a857-efe4cb203c53", + "TenantName": "Tenant-b12ab5a3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248475642", + "DeviceId": "74c56609-e0b0-4ea2-a91d-2021aff8133d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650634358", + "DeviceId": "8cd5e17f-18cb-4d7b-a9e9-a576dd24c0df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_871586689", + "DeviceId": "d14ddc6f-1bfb-49a5-bcce-f84f714959a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709194978", + "DeviceId": "75656da4-08a0-4076-89b8-89de025b7381", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742374894", + "DeviceId": "4df4b509-e893-4ae3-aec7-2dc9b9c4dcc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_584240479", + "DeviceId": "e56b5ada-4c66-4fa1-9238-17210aa737d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2adab593-ab65-4f7d-93e3-0303672c5909", + "TenantName": "Tenant-2adab593" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_522617856", + "DeviceId": "9c80dc54-6ce3-47fa-a5eb-937bea46494e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410615008", + "DeviceId": "745e2ba4-d25c-4471-81ef-6e91856265c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163435600", + "DeviceId": "c06b0284-f7e7-4003-9dc3-af4217288729", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969374951", + "DeviceId": "522fdc90-19dc-4097-b71c-0034a084bd5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_212154469", + "DeviceId": "86a153da-2a51-42e4-821a-738e1dd6f242", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_323620400", + "DeviceId": "dbd5408e-a715-4a6b-9bed-b8f9f0a3728c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7edeb3be-23b8-43ca-a0d4-9b14680cb538", + "TenantName": "Tenant-7edeb3be" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838622133", + "DeviceId": "aae8becb-6dc4-4ffe-b775-bea25ee2d7fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992510658", + "DeviceId": "d9850c0a-ca83-4ad3-b7e2-093ec400dbbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_528555144", + "DeviceId": "fef8f6ba-3ad3-4437-8625-a3ef21c37c50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_230833880", + "DeviceId": "57c0222f-35a2-4034-9abd-bc478af16690", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_111822967", + "DeviceId": "1801478e-292a-478b-95dd-187f52b26d91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_360888884", + "DeviceId": "ad124570-c845-490e-bb65-a8c793220032", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f5c5b73f-ef35-40ba-b7c1-f25ac30e18e9", + "TenantName": "Tenant-f5c5b73f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610765802", + "DeviceId": "012d7d1a-0955-4561-aa5f-ba2876f93b84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200675479", + "DeviceId": "e64c1969-72c3-4a44-90e9-9a0a519ecd04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203298088", + "DeviceId": "426ee7b5-2bd4-4488-8b98-bb67f75c689f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711414395", + "DeviceId": "2dbd7ec0-4a72-439b-a007-5687875d774a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592340320", + "DeviceId": "6cf96c01-e90c-480d-afa8-eeb5b57e96d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_392197648", + "DeviceId": "72aeed35-ba5a-43df-a3f8-4784e540938f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "64354f6c-89c4-46f0-adb6-14a49a7013f9", + "TenantName": "Tenant-64354f6c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622126743", + "DeviceId": "8eb9a810-7aca-4147-bb98-c5ea1566210c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377946083", + "DeviceId": "17d28ade-d0be-46ad-a5a4-fce040533218", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461796799", + "DeviceId": "32e154bc-a76a-48e3-b83c-10d0241e6606", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176386661", + "DeviceId": "8c9fd48f-f3bf-4a6b-afd6-7f925e409535", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105074156", + "DeviceId": "7b9a7c4c-5767-4825-9117-31f022246b7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_318927843", + "DeviceId": "1b4f489c-1e7a-4cc6-8f36-090453a26233", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "318c2053-43c7-4190-a4ca-aa9057918c3f", + "TenantName": "Tenant-318c2053" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834219574", + "DeviceId": "443df45d-b0f6-4605-8e90-da01a0263a83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628876650", + "DeviceId": "89222244-27f4-4f7b-9795-ddf86ca283ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675440904", + "DeviceId": "8b4b1512-8535-41e0-8b41-8b1c1f9b1482", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_588068507", + "DeviceId": "2b2cf387-1304-423e-837a-f105037737b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590410707", + "DeviceId": "fd7fb0da-eb43-4834-84b9-5a3d5fe18cf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_778823898", + "DeviceId": "d84e203d-7173-4b43-8794-a24dfeb1daac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e443f55a-0b0c-47cd-98e1-32c11027f3fd", + "TenantName": "Tenant-e443f55a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730918489", + "DeviceId": "0b8a3461-cb61-41a6-bb8d-be64a2970fdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371421254", + "DeviceId": "1ae2373c-73ac-4487-83eb-580bb87e3a4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611590521", + "DeviceId": "1e23d474-a686-44cf-8cc5-bbad24067592", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152105728", + "DeviceId": "b888d5f5-01c2-41e8-8f1a-b2d0e41edfc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806411100", + "DeviceId": "7b662bbb-9bc3-43aa-8a69-3df266379b3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_552424049", + "DeviceId": "2049d191-dd90-45ef-bfa5-e963f58dec63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "39a0bc20-7290-49fb-9b09-52df45e43287", + "TenantName": "Tenant-39a0bc20" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876472347", + "DeviceId": "76679a1e-e242-4c85-a5f0-276229fe188e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511947504", + "DeviceId": "7b31b29f-a811-45ef-881a-f75cf0ecf1a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699258839", + "DeviceId": "26ab8d8d-f91d-413d-8ee7-382fe1eb97e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364102748", + "DeviceId": "8dd186f6-2deb-4020-b4e4-ed4fecba16b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_501189368", + "DeviceId": "cd696757-50f3-4ff3-abd8-3d41b541f88b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_718356699", + "DeviceId": "8cb7a652-1e37-4c74-99ed-8a86564f2e0d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7c4ade39-0a2a-4afc-8937-cf225983074e", + "TenantName": "Tenant-7c4ade39" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272834399", + "DeviceId": "b1e7d07c-657a-42cc-a65d-f2323114d14f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162142478", + "DeviceId": "d9371bca-648d-493e-9412-acdac20d86ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885970975", + "DeviceId": "2e2b11c8-7475-45d6-aa23-476e0567671c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_992982538", + "DeviceId": "8653a161-ad6a-4ed8-b436-cdff23868613", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_864395617", + "DeviceId": "6672eeb2-feb3-4fa2-ab7a-989611610aba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_230499353", + "DeviceId": "9a8b0540-a050-42ab-9fb9-4e64ee3e1135", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "48594717-4f06-444a-854c-5fd604c9030d", + "TenantName": "Tenant-48594717" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109652637", + "DeviceId": "0a8c793a-4250-4681-8434-7f24dcf18ea0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896432073", + "DeviceId": "f9637718-878e-4b8c-a957-9f383f48c004", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957964677", + "DeviceId": "d09b1dde-ab82-4e53-beab-6dd2dfbbde6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_493177632", + "DeviceId": "3eb8c5f3-9682-4f70-9785-10542277263e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916128351", + "DeviceId": "19b83aba-4b9b-4026-a818-176b41288e34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_551425188", + "DeviceId": "9744df8d-8f6d-478a-b378-f8c875b62295", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4344a736-a976-4c3b-abb0-721d5d77ca56", + "TenantName": "Tenant-4344a736" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121158578", + "DeviceId": "c45ed937-2dca-4eb1-bb48-261299715d9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972431273", + "DeviceId": "cb54689a-eb54-45f2-85bb-b55ef0a4a179", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232093079", + "DeviceId": "846bd641-fe92-422f-a3a9-748d0cfa96e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_211820202", + "DeviceId": "429cc054-1f28-408f-a62c-cd495c460ee4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_438497844", + "DeviceId": "975f6031-ea9e-4fbd-870e-6c7de70c589c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_972205765", + "DeviceId": "857120b9-2c4d-491f-af40-3c63c700cf53", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "86883e40-1669-4900-9708-95519bd5e63c", + "TenantName": "Tenant-86883e40" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_746980908", + "DeviceId": "96244e60-ca7c-48df-a108-4e30451af2aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113078646", + "DeviceId": "039f640a-fd9a-4c92-b79d-5f5339646527", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610628655", + "DeviceId": "dccf2106-6e66-445c-a5dc-88f0cc60cf9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798693888", + "DeviceId": "b76a3ac6-fad6-4e3f-8b92-289f7fd3c5f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760386338", + "DeviceId": "503896a1-dcac-4031-9f2e-383bfc36d9fa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_763911562", + "DeviceId": "594b1cca-60e0-4dab-9b0a-1831e44bf013", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c0b96b2f-244c-4767-a162-87833d04937e", + "TenantName": "Tenant-c0b96b2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895604063", + "DeviceId": "4f7af049-0bf6-4a97-8eee-4091572ff251", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352921343", + "DeviceId": "a682941f-e435-40fa-9de5-a2df55f44783", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325759530", + "DeviceId": "3c2fcb50-683f-46b4-8924-2268e7393050", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_664513289", + "DeviceId": "10f526cd-8044-4867-823f-b3e422166ff4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_156099500", + "DeviceId": "999ccb80-cf58-4666-a5f3-4674896ca147", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_830517540", + "DeviceId": "1b0c816a-c0c1-4d45-ac62-fa51fdb96328", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a94a1341-3ba3-459b-bf6b-859de3e86679", + "TenantName": "Tenant-a94a1341" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_749219952", + "DeviceId": "8b79684e-cbd3-4573-896e-cca7b3da6be5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_294359785", + "DeviceId": "4fa52fb5-a5b6-4b47-9f23-310da613a533", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789539123", + "DeviceId": "e03f687a-3460-46f7-b62b-6f8c2b9d5cc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455083005", + "DeviceId": "5ad07088-c9ca-4831-911a-ef9d24536ddd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700008665", + "DeviceId": "a93ef499-49d3-4e39-88dd-86d6b3596a9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_423695501", + "DeviceId": "42d0dd78-34b4-4dda-bd98-ae4b03d46879", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "db730e43-3e5f-47ea-ad9b-dbebf7831d31", + "TenantName": "Tenant-db730e43" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_903585921", + "DeviceId": "af6a35d8-c107-4a0e-9b2a-f0f8d99e30c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314793647", + "DeviceId": "a9fd3fd9-e93f-415b-8f94-854ce2bafd86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793392371", + "DeviceId": "96b1c9f1-2b66-4397-a0cc-dcc346ce3a94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_646702032", + "DeviceId": "8da56bbe-7b08-496f-9896-bcf52d3d48b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_362738198", + "DeviceId": "6a5d1342-dc77-46dc-93fe-8f3f8f959d4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_184299396", + "DeviceId": "0325c9b9-c8f1-47b9-b326-20a6c358b03d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7771a9a1-5ac6-40ee-b481-4734490e1efb", + "TenantName": "Tenant-7771a9a1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_237153408", + "DeviceId": "e1b36d76-9124-40df-849d-2772142ec928", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_513819536", + "DeviceId": "9c423dd4-5d0d-4413-8d86-c6375095dbf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617417649", + "DeviceId": "d303c5c3-03e7-43aa-a92a-079d967af71e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335137049", + "DeviceId": "a6a6895d-3578-4e42-b25d-d0625592ffce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644868666", + "DeviceId": "81b151fb-712b-457d-b390-4f1b9478ee69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_273524581", + "DeviceId": "3f810f32-d40f-4f74-b2f5-b12a74ac6822", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2622e0bc-ec56-4196-b42d-0877d499584c", + "TenantName": "Tenant-2622e0bc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484138019", + "DeviceId": "bdce1e91-2ee4-44d4-87fb-bfb1232c19f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599308354", + "DeviceId": "ab9ee5ba-cffd-4c0a-a1f5-470773fa684c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303099106", + "DeviceId": "391c795b-06c9-4b15-983d-2dcb7839c888", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795151704", + "DeviceId": "d8f15654-1919-4454-b280-b2500469efc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657094866", + "DeviceId": "04e0c666-b659-4faf-82ff-bacfceb82535", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_197644623", + "DeviceId": "ae18f42f-16e8-4a42-adb5-794793fd5b95", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fc9029dc-f8d1-456e-ae6f-8e0111359ad8", + "TenantName": "Tenant-fc9029dc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_496335349", + "DeviceId": "7d35f2cc-4364-4c31-849b-d443da76878e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571824024", + "DeviceId": "2b9d894c-e1e0-4144-915a-84e83939496f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612652319", + "DeviceId": "ff31a68c-d42e-4c17-b356-3ab542b0904b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_560424627", + "DeviceId": "5430aa0a-3a36-4e11-95d0-028a5a6f925e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583349132", + "DeviceId": "4a9261e3-56ef-4bc8-a542-b71f9356e53d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_417524000", + "DeviceId": "e56125de-d653-4e31-94f2-54366e0f6e96", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "496385d7-ea20-439a-bfdd-0ef64a4396af", + "TenantName": "Tenant-496385d7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745663970", + "DeviceId": "b3c4395a-1860-4f81-82aa-fcf3937eca2a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_512236343", + "DeviceId": "ce6476b1-9a1f-4d3b-b8a7-922a149d20c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_528089884", + "DeviceId": "cfa10115-7b8f-4c2d-b98a-2036371fa5b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232674867", + "DeviceId": "2cfa4353-1e84-48c3-ae1b-0dda3700219e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386470088", + "DeviceId": "886df08a-a719-4362-8600-c07e307b7006", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_552635223", + "DeviceId": "5deae9a4-d9bb-4182-8531-f972490f3fe1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5c6a5f21-695b-422b-98ee-ae96748b2b64", + "TenantName": "Tenant-5c6a5f21" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248975993", + "DeviceId": "66c8ac53-1542-4a1b-97f7-300ad16eb551", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199227556", + "DeviceId": "bd1c5e06-7994-4dea-8f09-1b3209ed0e77", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313774097", + "DeviceId": "c95f942a-44e1-4a07-8945-ae5f4bea4274", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_920500232", + "DeviceId": "a3e1602a-0a81-4c3a-be52-f351c53c1327", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749369759", + "DeviceId": "7b3e06df-0a46-49f9-a477-6fc87cf9081d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_939392897", + "DeviceId": "cf87cd15-d422-44c2-97f7-5b3a288b4ad1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f32ce2de-caf3-4412-8291-da5490f31844", + "TenantName": "Tenant-f32ce2de" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934083091", + "DeviceId": "2b8e8dd1-7bd9-477f-99e4-f2186fbeacd7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972721199", + "DeviceId": "20a4ad7f-da15-4b7e-b6d3-134612c268a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329425046", + "DeviceId": "a6391b65-e975-4117-89d3-9da13fa1f497", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357655156", + "DeviceId": "e57e791b-e08d-4fa9-8841-6f02715301e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_734899210", + "DeviceId": "2237ac45-6b4f-4e80-a3e4-008b61741cbe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_276504683", + "DeviceId": "eedfeb0c-a03c-41f6-bf4b-7f13cd68a453", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "efd265c6-9d5d-4d3a-b78a-af98b600f4af", + "TenantName": "Tenant-efd265c6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756719427", + "DeviceId": "d15358e5-d3cf-445c-a5ef-b3da25f93402", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360378189", + "DeviceId": "e7ce7135-fe4b-45de-bb26-62656ff6e703", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_807845708", + "DeviceId": "6d489615-f162-4997-b454-dd7cb8aec272", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_792181361", + "DeviceId": "f9ca5aae-ed22-4a0c-9125-fab82a5d2018", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177449045", + "DeviceId": "9677ed5b-ec1b-4f96-afe9-5656c143303a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_197926573", + "DeviceId": "68082a0b-e325-4d37-a9ce-3f352a39b3a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3810cf24-0ba4-4a19-9644-b5ae9e79f4d2", + "TenantName": "Tenant-3810cf24" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954022330", + "DeviceId": "e4cd9250-41cc-460f-a829-d6527856d632", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676788899", + "DeviceId": "7cb0426b-fa2c-4d64-a1cf-b152fb8a8b9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728940290", + "DeviceId": "587cbf53-c778-4c47-951e-9e53cb89e9d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916176775", + "DeviceId": "236e1f00-f997-418c-a113-6438ced6fc92", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678345839", + "DeviceId": "8ed8312a-7d13-4e2e-a18c-249635587dd6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_300107028", + "DeviceId": "c7bd94a8-ab25-4aa1-a072-ba8b5cfefb80", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e853f8d3-9f27-4280-8003-c25c040b991b", + "TenantName": "Tenant-e853f8d3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115761849", + "DeviceId": "8ac561cb-3863-4401-8771-a0ab3cf1f776", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346520632", + "DeviceId": "a36a60fc-7ca1-4cfd-80a5-a4fa3c6ccacb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_855461032", + "DeviceId": "9b13b036-9321-4432-83aa-15f9049b4955", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_279347310", + "DeviceId": "1ebf8842-d23e-49c7-85ea-ceff776158f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677516081", + "DeviceId": "1554aaac-ffd6-4c4e-92da-1c358eaebdc5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_682111014", + "DeviceId": "4393051b-7014-4d5f-9340-dc285e230bf7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f78a2d89-bef5-4f6e-8155-952061a35496", + "TenantName": "Tenant-f78a2d89" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_932887691", + "DeviceId": "c956e9b1-de62-4c01-9ae3-68c00d6f6874", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_784974839", + "DeviceId": "c7bd6d81-680a-4ffa-89b1-8b28e4b443b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509228445", + "DeviceId": "57a40832-4183-4db6-8c73-4db8064efe71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_214944409", + "DeviceId": "e2191476-429c-406e-a506-df465588c9f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553269650", + "DeviceId": "06da64ea-240d-4a0b-bdb3-6ba09c7b5c6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_192287129", + "DeviceId": "88c29976-792c-4db1-b802-e8d13624c2f2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c3f6462-49fb-4a67-8fa4-d2056ea8d528", + "TenantName": "Tenant-1c3f6462" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_764555391", + "DeviceId": "3bd13834-0026-419b-93ed-df3107b5b1a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752816921", + "DeviceId": "484b3e90-3dfc-444f-9106-a07bec5a7e3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482181236", + "DeviceId": "676d35c0-ae70-4766-90ed-da8bca60c301", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989071224", + "DeviceId": "481df289-b7b8-44dd-8eff-1cea8f2d6935", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814150119", + "DeviceId": "37c17fdd-76ab-4359-895e-70a0e2d18d02", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_123986643", + "DeviceId": "6264036c-cef5-4baa-896d-eac4a559c32b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b1b53bfc-36f9-4b89-a8dc-de0d2ad2b57e", + "TenantName": "Tenant-b1b53bfc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271001935", + "DeviceId": "3afa8b83-bff6-4713-bbda-8349918c5108", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914579435", + "DeviceId": "a81ffd4f-ca76-4dd6-a3ed-aa683c1767cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_418662770", + "DeviceId": "1f3cbae3-c222-4768-8e66-455b3772cd12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836949633", + "DeviceId": "cdf792f7-a39c-4a71-b57a-8ac0717f03ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_919977136", + "DeviceId": "db57dae9-cb53-4f5d-86da-98a91897641c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_730799516", + "DeviceId": "9a79ad02-7492-4cf4-882a-ed020facf600", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9b4465ae-d593-4c1d-bda6-8bfeaec24d21", + "TenantName": "Tenant-9b4465ae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756204567", + "DeviceId": "2dd633a5-f339-4630-972c-4532cb3e45a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538745312", + "DeviceId": "15679f38-16c2-43d2-96f3-c385e6870f0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806494411", + "DeviceId": "423d8430-12f5-40e6-84ee-5dea50c365ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618630680", + "DeviceId": "5124da68-7f4b-40fe-ba9c-74450568ae65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_428390034", + "DeviceId": "cc954127-f887-4368-8410-89c01c34ed3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_163352410", + "DeviceId": "91da694d-bafb-4903-9703-3c9632b451eb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "43163ad6-5675-41aa-8a83-b46f0411bb9c", + "TenantName": "Tenant-43163ad6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_855705801", + "DeviceId": "576a7ce6-0b8b-4a61-98a9-8cc245be1c9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676529218", + "DeviceId": "787928c4-ca42-403b-9c18-3c07ada0a214", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839033196", + "DeviceId": "b1b155a2-1c21-4eff-a3ba-a9a16790e686", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763131652", + "DeviceId": "85b60a67-0376-426d-917e-a09fe0bf993e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703326550", + "DeviceId": "1a12e895-e445-4c8a-a958-bbaf2500bbcb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_185863255", + "DeviceId": "d3806288-08e9-4515-9e92-57315c0f41fb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80cccd0b-305f-40c7-adc7-c92e6088f50b", + "TenantName": "Tenant-80cccd0b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833541184", + "DeviceId": "cbce01c5-35f4-4a37-99d8-17721a947ad4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_256128220", + "DeviceId": "27cc4cd5-6d2e-4098-96c3-11dc0afa4f6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_909482834", + "DeviceId": "58bb377a-e724-4b76-91c6-faa396e897ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795483030", + "DeviceId": "165b64af-cf55-4437-bd40-bfa8bc15c735", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499003036", + "DeviceId": "6a324006-8f1f-4c6f-be42-121653246645", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_561762103", + "DeviceId": "4373c1f9-91a8-4d33-9dcf-78f7250aeaae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2f28d3e0-322a-4cee-bb86-4d8b8c8b55c8", + "TenantName": "Tenant-2f28d3e0" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2906260256.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2906260256.json new file mode 100644 index 0000000..22871a4 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants200-sensors1000-2906260256.json @@ -0,0 +1,11002 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_612304998", + "DeviceId": "836d4d04-6d6d-4c5e-a466-cab885e2c4c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477620418", + "DeviceId": "c870b0f8-5281-482e-8372-0bc4f724539a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906034794", + "DeviceId": "1e6f9445-6bac-409b-b295-2d5b14981791", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456328788", + "DeviceId": "10d5d198-e792-4f3c-b02a-77b622fe1e81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433273845", + "DeviceId": "48a9286d-e593-423f-b2df-0975e05b8e6c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_539889552", + "DeviceId": "feb52de6-d60f-419a-8c50-40c9cd59a460", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08638e13-413d-4db7-8f39-2a2b6089f715", + "TenantName": "Tenant-08638e13" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_707716238", + "DeviceId": "81a1eb53-ebc2-4b83-888f-2269c30dd179", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185935380", + "DeviceId": "52b27805-ade1-43c2-a094-0d4083301874", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476551078", + "DeviceId": "0411d3b7-db60-458d-994a-27cac68f0cb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289793374", + "DeviceId": "8bc57da1-0d6d-4c30-a2b9-d283dacda552", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_722423395", + "DeviceId": "204303cb-da74-4b40-b0d8-3aef6316f3ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_405985065", + "DeviceId": "4959ddca-6c0e-4fcc-8329-1c7e60109cac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9207d4de-301f-43ba-af43-22ed3b7ee4c3", + "TenantName": "Tenant-9207d4de" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979748929", + "DeviceId": "a73fa74f-ba74-4c47-be01-e3cb0a7d68d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_188319709", + "DeviceId": "061aa95c-8ee3-4f23-ac67-2d3ab11b1af5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_558552297", + "DeviceId": "8f32ae24-6c18-45e9-a087-5011860b05a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195342153", + "DeviceId": "8afe1690-6b6c-408c-af12-11a66a209431", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743836874", + "DeviceId": "9c163cad-ef1c-4101-9639-38877ac13ed3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_257535708", + "DeviceId": "600e2f3e-cc17-4bcb-986d-f098baf18a4d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ae42bbf3-584f-4760-a26c-7322d4d4c629", + "TenantName": "Tenant-ae42bbf3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618543841", + "DeviceId": "db42d54e-e77d-43fc-8d9f-8adb4b1e76a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693175938", + "DeviceId": "8c0f1af6-0767-4845-aece-7f6ea2680701", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154760639", + "DeviceId": "79e61696-cd0a-4aa6-a450-c6e1b7d7d910", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554364649", + "DeviceId": "74927693-a2dd-4ee6-82a0-d48e29fd9ec5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_239466330", + "DeviceId": "d6a844fe-e725-4ba5-8892-b826c48aa723", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_434897772", + "DeviceId": "beb6d2b0-0501-4f45-b6cb-7c451ead04f1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3025717a-89b6-4907-ac84-ea7742d33b07", + "TenantName": "Tenant-3025717a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632010865", + "DeviceId": "ab9ab261-18cd-4129-8460-ba16217fe891", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808819825", + "DeviceId": "830ad2c9-317e-4c2d-a096-bcb11645da3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483058795", + "DeviceId": "8051e5f4-daa9-45f6-bdcf-3f27a4c9f899", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_108877584", + "DeviceId": "cc056ce6-b77a-4d48-a2e4-bd3faf631ca5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566317829", + "DeviceId": "8cb9d736-b485-4490-bbbf-c88a8feb3ef8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_739904962", + "DeviceId": "e43f4bfd-74c4-4f58-a981-015f8b673405", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dd268c12-28f0-4122-adc3-90bda3420ee3", + "TenantName": "Tenant-dd268c12" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_870679146", + "DeviceId": "997d8d53-45be-4784-8cba-e5634b751139", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916091673", + "DeviceId": "5afcaf3c-283f-4a6c-8161-cc1340c30a3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215288466", + "DeviceId": "bbb29787-d655-4f65-90bb-5d5bd7ad8ec0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_503219109", + "DeviceId": "d293e80d-5e32-4364-bb69-4467c7d2b79c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592532034", + "DeviceId": "1c8ec5f0-07ce-4f5c-a528-f07ae47ae9fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_332118412", + "DeviceId": "e33a6b25-eb97-4b46-8e32-1be28a9a3632", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b57eeecb-9a3e-47b7-a311-d4680dc05231", + "TenantName": "Tenant-b57eeecb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731578568", + "DeviceId": "421548d9-8ac1-4337-9a5c-be11f7769a75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549607341", + "DeviceId": "2dbe4b0e-6a27-4f97-949b-bde6c81f0aaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842705462", + "DeviceId": "17ce2d73-d07d-4a92-a007-e6db791a8194", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935286804", + "DeviceId": "ed1bbbd1-848c-4783-a926-a00161544817", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_217220119", + "DeviceId": "57c38623-ae44-4e81-9a06-8b81e73a8d0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_584010639", + "DeviceId": "4084c29d-b375-4ed0-917d-320e72b1c2d0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "484990c9-3dfb-4859-8992-3658a36f8696", + "TenantName": "Tenant-484990c9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437796439", + "DeviceId": "88eb5d85-2fbb-4066-9401-2a978d2bcda8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393901802", + "DeviceId": "ab062f96-ca9b-42e6-ae8d-57ca31632789", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163888770", + "DeviceId": "1c84f90e-9a2e-48a6-a585-a320d39b6245", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519009835", + "DeviceId": "04c2063f-b2c7-4041-b318-93051d3b3938", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730087921", + "DeviceId": "fc7272d6-ed60-4f1e-830a-accce36b5186", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572176965", + "DeviceId": "96c475af-5deb-4110-bdec-2572efc0b512", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d99d4967-fa5a-499a-a965-f789bb1ef063", + "TenantName": "Tenant-d99d4967" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_361945377", + "DeviceId": "a79efbb7-90a9-46be-acd7-02c2e71cfe8d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192125962", + "DeviceId": "a9735c19-b414-45bd-85e5-d53ae68a9f04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_637132701", + "DeviceId": "d9208d76-992c-46a1-896c-fd458bcdb4bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962921318", + "DeviceId": "c941cc28-10a3-4567-874e-eba8cfeb557e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809120120", + "DeviceId": "34b0b09c-1d9c-4019-8502-7d494f2a72ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_135057687", + "DeviceId": "c6a6d516-fb9a-440d-badc-74bf3fceb240", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bbc5a162-9478-428e-aafc-736779fec709", + "TenantName": "Tenant-bbc5a162" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_538012708", + "DeviceId": "48289386-85d8-4e83-803a-f5a816bb4024", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727191605", + "DeviceId": "502eb71f-5544-49e6-becc-fb6102cc98da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412366127", + "DeviceId": "41e7ac00-e164-4bbc-86dc-7c3f9739eda4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841777507", + "DeviceId": "0668294c-4b39-4389-bbce-30e2385c3b30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_773261353", + "DeviceId": "cb29499a-7583-469a-9b65-52d73b39d096", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_669446791", + "DeviceId": "3af70f4f-ff70-4e07-872f-dd393b2137bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "213ed809-8884-45e8-b231-39eb709ea49e", + "TenantName": "Tenant-213ed809" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925297996", + "DeviceId": "62d23a9f-1bb0-4659-95ef-c114add7c9f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_337476593", + "DeviceId": "65bb6a03-8e6d-4dc5-ad59-8ded40165f07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347042134", + "DeviceId": "dfb210c6-ef54-4e43-b0d1-53f909ba4595", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220644318", + "DeviceId": "65ce3ce2-b3d5-4bdf-9224-38bb01bf0cbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611254410", + "DeviceId": "fe36108c-4857-4694-bb90-37b31d004f25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_906812216", + "DeviceId": "5505f423-2bdf-412c-a6a0-3f360350340e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2e669936-fc40-427a-800d-cf227c70f56f", + "TenantName": "Tenant-2e669936" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639417257", + "DeviceId": "a10e38cf-fa9a-4780-9710-da6131c5f28b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873386366", + "DeviceId": "43cfead1-d9df-403d-ad22-ec0b31b23644", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417181060", + "DeviceId": "3b57a192-ad24-4819-beb5-25a5daa538f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190189380", + "DeviceId": "6ea127f1-c4d3-47d4-b68e-4c2d34a078e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_262948676", + "DeviceId": "7bf5e7e7-0004-4bd1-9633-2310d5dd34c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_473241615", + "DeviceId": "1cc0f368-7059-4a05-92b5-f3c171e0af62", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3bd7b881-083b-4943-82d5-6cd6f6e650bd", + "TenantName": "Tenant-3bd7b881" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255719967", + "DeviceId": "527217bf-1cb1-43d3-9ab8-ebe5faf51d51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872378775", + "DeviceId": "353416f8-7715-41a3-a6e1-b6fc7aecc0ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244884322", + "DeviceId": "4b9422c8-a071-4d45-ba97-28720dad5a13", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_882928269", + "DeviceId": "09b8bad5-e317-4266-b2a9-fabffc9e230b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143528632", + "DeviceId": "9cf77c7d-ebca-4848-9404-b7f19645c756", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_144879342", + "DeviceId": "61130012-a1db-4be1-95d9-a01f392331dc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1aef386e-5239-4a97-a4b4-b6af5f8f3ade", + "TenantName": "Tenant-1aef386e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425664442", + "DeviceId": "047c5ec6-4694-43fe-9006-d3410585499a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122374778", + "DeviceId": "5c59661f-7480-4fd0-9f7c-23b53afd5598", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860587726", + "DeviceId": "09453cf0-1752-4087-9b1c-b5f13a35ed41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838100826", + "DeviceId": "92d1830c-daa8-43b2-a88b-70d6e7163c38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234068969", + "DeviceId": "5cad0b55-6ec3-49c6-932a-e45de1c17e9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_827022217", + "DeviceId": "476cdcb8-6703-454f-afd7-33258c12ca0a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4ef0e339-3631-48a8-9f23-67c200aaa5c4", + "TenantName": "Tenant-4ef0e339" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_353264217", + "DeviceId": "796e1974-ddfe-48ad-8d9d-ceaa261872f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_489508210", + "DeviceId": "8a6292bf-078f-4e3c-843d-97114fa8cd1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305639396", + "DeviceId": "accb3150-3c76-4671-a019-3b5def598ef3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642306168", + "DeviceId": "f96154d0-b29f-4dec-b591-9a26226e5bea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_627113401", + "DeviceId": "8b2b3d26-4cf0-4653-83ca-0f048a5b09a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_230841294", + "DeviceId": "c117b988-3f3b-4c93-98f4-9ad8e0dd8aef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "262991a6-21ce-4c33-a744-8d972871d54a", + "TenantName": "Tenant-262991a6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495451048", + "DeviceId": "a0348a1d-e9b6-49c3-aa34-86a715d682be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732112192", + "DeviceId": "7a48ec05-ff95-4a4c-a675-f42058498f55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450977023", + "DeviceId": "cafbba3c-ceb7-4ffe-9416-0e79141e5d1e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_624689105", + "DeviceId": "d13e1c00-cf5a-41fb-a7b1-e93eab291b31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_415515128", + "DeviceId": "e81440e0-d59f-4ad1-b862-3b936f374fae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_782542989", + "DeviceId": "3071b1e8-c78c-42ee-9993-fd2bac21673f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8c361667-a09f-4157-bf92-4ac2241fbfbe", + "TenantName": "Tenant-8c361667" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_481739578", + "DeviceId": "1e33742a-8053-4869-bc67-81920d7d85e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_480586423", + "DeviceId": "dfbac1dc-e32f-4775-a2d1-7b5243babc93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605653324", + "DeviceId": "71e7e9f5-6311-460d-8a12-dd6475193644", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_955731993", + "DeviceId": "f2392d16-ccdf-4850-888d-b4c7f885489d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_849597669", + "DeviceId": "2c3042bc-509b-459a-8eb3-79e628c653bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_735813347", + "DeviceId": "0fe7f281-7d42-429f-bcbf-b312915f5a9f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c799bd05-2228-4452-9c4c-d2c1f071a47f", + "TenantName": "Tenant-c799bd05" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596185023", + "DeviceId": "7938a069-d00c-4313-bd25-0fb481ffd909", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317462785", + "DeviceId": "0dfbb6e7-fb12-49bc-97ac-b886744186c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639794337", + "DeviceId": "ea34495d-7df8-4e10-89bd-e7ae851a37b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582273726", + "DeviceId": "b7738aba-d7e5-4e97-8ef6-640fe64745d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_448471693", + "DeviceId": "f5394a93-8fe6-4081-81e9-97ae1e3ee738", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_500666706", + "DeviceId": "905f7c7a-e57a-4420-95e1-99167ce2b5a1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2cf6db30-0e07-41f2-8c3e-ce91e966aead", + "TenantName": "Tenant-2cf6db30" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_137579782", + "DeviceId": "4cbd63e6-ac6b-4c53-a5cc-ca3d5f571276", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982884732", + "DeviceId": "c2f34074-e961-40b2-a330-2b4226570a89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_157522368", + "DeviceId": "37ac3d69-54e2-4c55-bf80-ae0ae85f42bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900386116", + "DeviceId": "1e4e6162-ac91-4afb-bc37-030ea0de8dc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933738490", + "DeviceId": "34138fa1-de2f-481e-b70d-bcd39e2cb104", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_583168833", + "DeviceId": "ccb619ef-17f2-460a-98b2-584cdd0076ca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9b9cef97-e6fe-486b-9bf6-6b64ed47f927", + "TenantName": "Tenant-9b9cef97" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273262865", + "DeviceId": "405f7681-1e52-4893-96b7-c8dfa9d727aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710005333", + "DeviceId": "4d213a4c-1ff7-4c90-b4d9-f6aea1fbb1f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_775535927", + "DeviceId": "2cf656d0-ff4a-4664-83ea-e1d3e392b11e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693236516", + "DeviceId": "0c6aeb05-82fb-4046-a6df-f02e93dc1568", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_407174011", + "DeviceId": "e6b6938e-078b-4f2c-8f76-fe0056cf36e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_846427756", + "DeviceId": "0afb8841-15ce-4be1-91db-ae058741c206", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0e285fc-f3b1-4a41-a051-12abad07dbca", + "TenantName": "Tenant-b0e285fc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747238081", + "DeviceId": "c15a8262-6811-496b-9a91-193b62a3e7a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442165153", + "DeviceId": "16425293-aa00-402d-96b7-267528ea4cb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_219426202", + "DeviceId": "e026508f-e078-4de0-a1da-c88397e4350a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_699875985", + "DeviceId": "8898e9d8-663b-4cea-a175-4a527d7c5510", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_186133620", + "DeviceId": "379466eb-4d97-460b-a259-cd684bba0ffb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_757759769", + "DeviceId": "98f0a05b-6c3b-4e54-b3bb-5d5919e0c5d1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "461f5cc9-20f2-428b-a0ad-fe62512b958b", + "TenantName": "Tenant-461f5cc9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275743050", + "DeviceId": "746f3d14-7726-45d2-b707-4f513d886ba2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_103474464", + "DeviceId": "d92f8490-8d5e-42c0-b35f-ff410f80620f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979668798", + "DeviceId": "0c98d95f-7e2c-4c14-93a0-44868dd3c280", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522024141", + "DeviceId": "f97af89d-ded3-460d-b839-4bcc156bc08f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552231506", + "DeviceId": "2d775d53-b575-4b0c-9ec9-05fb1f77e952", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_952942658", + "DeviceId": "6d473c8d-2a85-446f-ba2c-cc4b1e312ae4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a5513290-926d-4a19-8a3d-f663f5d9544b", + "TenantName": "Tenant-a5513290" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916537433", + "DeviceId": "a66ce8d3-640f-488b-ae5e-433fe7cd5b09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922498863", + "DeviceId": "25b1b2a6-bdd1-49a4-b0ec-c76d2cc18e31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_573096061", + "DeviceId": "e8d888ad-0216-42e1-873e-7fc1ccc3f921", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_924572137", + "DeviceId": "9992a5b4-be31-4f6b-95eb-2a74dc422ef6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576731435", + "DeviceId": "4ed98511-469f-4f61-87da-631d2a3122e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_847428772", + "DeviceId": "5f32c827-0fc4-4594-8413-d85073f7df81", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "74b5ac90-3c57-4652-bc47-2e7370518ccc", + "TenantName": "Tenant-74b5ac90" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397284955", + "DeviceId": "f45fc43b-c9ba-4d1a-a647-a8b9dc114d07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_222906953", + "DeviceId": "6811e237-9952-44d3-9493-261cd0463c31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500081969", + "DeviceId": "e79e1b32-b526-4596-92ed-36b69d4f3b68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_600220067", + "DeviceId": "ee639ac2-48d4-4d21-b641-84b03653ae61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_332135338", + "DeviceId": "13348be5-a106-49b9-b1ef-108249c17fa3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_217887265", + "DeviceId": "183f73e0-6d8c-4885-b98b-de7832c79f58", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e0ce1ac6-1a45-4c7d-a81a-83d3b4501701", + "TenantName": "Tenant-e0ce1ac6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484682661", + "DeviceId": "8c43306e-d25d-43e7-8405-baed754f74c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_711864337", + "DeviceId": "fc10b14d-cfa6-4ab8-aa20-50b4b8797906", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236326509", + "DeviceId": "847b5f76-3b5c-4b46-ab52-897626815088", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263077122", + "DeviceId": "d463eb7a-9c96-42cc-b40f-89ceae8bcb8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841250157", + "DeviceId": "3b2ad74f-108b-4f5e-bff9-f02c2eaba5c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_457005763", + "DeviceId": "e0cc754c-45c9-4774-9083-d026ded9e0c9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f0636a66-c369-4fb9-8367-cdc388f31cf5", + "TenantName": "Tenant-f0636a66" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744849048", + "DeviceId": "982806a3-662d-465f-b668-a7cf903031ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571429759", + "DeviceId": "486f9178-998a-43c8-9812-d316925457b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_968720838", + "DeviceId": "60a866e4-bd62-41a3-9ee3-b6d9a19b300a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_877233648", + "DeviceId": "2d58158a-7792-4a6f-a20c-56f15cb273aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_652491807", + "DeviceId": "fe230553-ce10-4fc5-8a94-5bc4a5e965df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_980425264", + "DeviceId": "eee2c20d-4fc9-4201-87fa-11b2bcb7441f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c44886b7-3d55-4a66-876c-18aeae24507d", + "TenantName": "Tenant-c44886b7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_811350343", + "DeviceId": "3b152fc1-fe13-4c9b-b8f6-d3166c0be8e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822509023", + "DeviceId": "3e8cc5d2-3e23-4b13-b182-6598f39dd6ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399745926", + "DeviceId": "33c2ac1d-b076-4995-abee-5b983a4bf622", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590605209", + "DeviceId": "bfaaa852-4ece-4647-9144-d2ace9aa544a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651663431", + "DeviceId": "72fe1a86-387b-4d99-9783-99dcb433c803", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_595458008", + "DeviceId": "1a77b262-a0a6-4f2c-a395-695cccd1be1d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8110b338-5736-400d-8d01-b3b218c0338d", + "TenantName": "Tenant-8110b338" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336252131", + "DeviceId": "d4aa420d-a607-45ad-b9b6-dcb4b20a31de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212152885", + "DeviceId": "2f702e1c-dc95-4a03-b4dc-f0e5fea936e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164892781", + "DeviceId": "74286cd6-0e62-457b-a349-963a302c1f31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_207060733", + "DeviceId": "d6a5e7fe-62de-48a0-8408-bfcfdd1713ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766969151", + "DeviceId": "760a6981-3e92-4501-905b-cb67cd492ac5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_687718580", + "DeviceId": "b34e4338-c89c-4a93-891c-65efbf2a1e20", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7c16e9da-0d62-483e-85b0-1ee12f83af58", + "TenantName": "Tenant-7c16e9da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717584325", + "DeviceId": "82e0deb1-71ff-4202-8fa3-53dac860a584", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_282809632", + "DeviceId": "c241adf2-d64a-43f9-90a7-46f196e54043", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680320003", + "DeviceId": "1f140356-acb0-45b2-8956-39131cf13789", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954064986", + "DeviceId": "4114248c-365e-4dc1-a05b-87b7fac7318e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442677807", + "DeviceId": "8122ec24-7991-41ef-999b-401ab23f3d26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_833645171", + "DeviceId": "b6c7303f-25fd-4ff8-b0b0-460b0d682f2c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fb769619-76a6-43a4-9078-49a0a9929c4a", + "TenantName": "Tenant-fb769619" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509887690", + "DeviceId": "a5757c24-7e06-443a-9382-2d570383b9dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131884639", + "DeviceId": "ab1babef-7a67-47c5-aded-cf36cb536894", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869213384", + "DeviceId": "6b82cc90-9d76-4141-a27e-7f225a411b1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802552862", + "DeviceId": "af4ecc40-dca1-4ffc-adb3-33eadc083486", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_473629709", + "DeviceId": "84b6d876-69d0-4c29-b5d8-9ab14de807dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_838929274", + "DeviceId": "1f41d4a9-dc00-4d33-b93b-c6b74b4f3ace", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9c802293-26fd-4ac9-97cf-833409e4e458", + "TenantName": "Tenant-9c802293" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249645727", + "DeviceId": "038ea120-47d1-4381-8587-57609cf75959", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610843145", + "DeviceId": "4529de57-b656-4763-8bd5-00a14abf0057", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822318172", + "DeviceId": "50fc0dc6-5846-4a42-9390-93788b7d8653", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533444742", + "DeviceId": "80881dcf-4d37-4410-989e-36a4f3216e42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406968398", + "DeviceId": "d3dcf5f3-6881-4460-aba8-e440ccea7a3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_695241357", + "DeviceId": "b8beff1d-7d0b-40c9-9c1a-65f18bbf1507", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "efe836e5-0859-4c3b-9f89-f90af393e9f8", + "TenantName": "Tenant-efe836e5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379514254", + "DeviceId": "b74ba517-d40e-468d-b8c2-107cbb4714eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175250890", + "DeviceId": "6eca3b1d-7a59-4860-92c8-fbcd7ec9a17a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_219163652", + "DeviceId": "eda68823-bd1b-4e95-9423-36d5a0c6792a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286392815", + "DeviceId": "d9ed41ef-efeb-4bac-96c6-4ac88d4000d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389305155", + "DeviceId": "45f41344-4625-4d73-876a-4fa0c23821bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_960221388", + "DeviceId": "1297ea7f-9baf-4fa8-af33-825e7242fd28", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "91734082-a9a8-42dd-a23a-0c05a7086567", + "TenantName": "Tenant-91734082" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_174756009", + "DeviceId": "63359ba8-47ea-41cf-be91-8b95fe37ee59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565659129", + "DeviceId": "82c9c490-d942-4aa7-9295-22adc3563c29", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193209128", + "DeviceId": "b7cf4e0f-c65e-4168-b1ac-e10846c74d87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757818738", + "DeviceId": "1536d4c0-dd0f-4f8c-89ab-90c2657cf867", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747810795", + "DeviceId": "51cfedd2-d707-4005-a166-ba9b2e926294", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_817048900", + "DeviceId": "e35a67e3-eee6-4aee-9499-5f14d49f3a1a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "861b81ee-01c5-4f48-a22a-6292617301df", + "TenantName": "Tenant-861b81ee" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_190881043", + "DeviceId": "406001dc-7742-4631-9d7a-d7964c9517e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_861584543", + "DeviceId": "6f751aac-7053-4217-b754-120cbd0999d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_750858464", + "DeviceId": "1f07b586-9cb1-465e-a2fb-addda90668b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364374287", + "DeviceId": "fd7877eb-6657-4416-90c5-862d8e9612b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176785669", + "DeviceId": "774e8e49-8cda-4aae-9f90-45a8bc1534f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_594921479", + "DeviceId": "a4b6599f-16f1-44c5-90f5-bf11a32ddeed", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fbad5f89-d412-49fd-b3de-dfe9c6b5d4d8", + "TenantName": "Tenant-fbad5f89" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646129634", + "DeviceId": "232e5d1d-7d6e-4ce4-ad10-bd21f27ffb78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568833763", + "DeviceId": "3be07f60-0750-41ca-b0ba-051d41449a41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616900180", + "DeviceId": "0d2cce82-8ac9-4f9a-a63e-191393c3040c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148586606", + "DeviceId": "0d4f2c26-059f-45a7-8910-d587cbffafc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524548855", + "DeviceId": "c15a3aec-3fa4-41ba-a1d1-a9b7f59bedbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_141718583", + "DeviceId": "9ff72358-144d-4bbd-93f4-147af7532a3f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ea5e6d4-6a90-4c4f-b2f0-f2e11572cb86", + "TenantName": "Tenant-0ea5e6d4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914980861", + "DeviceId": "6c5f37bb-3c8c-4cc4-b54c-373ebba775bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443585741", + "DeviceId": "78fc8067-0eb2-485d-af63-5f9ea9573070", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825407458", + "DeviceId": "da953d30-13d7-4e59-b49d-469445b486d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_953162341", + "DeviceId": "85e318f8-d1af-4a9b-90c0-c675dec689a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299786927", + "DeviceId": "eb3eb449-1df7-4acf-97be-d3b4b80d7cfb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_198023545", + "DeviceId": "dfb75fe2-3a32-48de-ab22-1f0515d266bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ba5e230-3ae1-4bf8-bb89-21b9762b03d9", + "TenantName": "Tenant-2ba5e230" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401168669", + "DeviceId": "00ddb8a1-62c5-4fb6-9e5e-7807f3e41aaa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466350521", + "DeviceId": "8a35501c-bd5f-4d87-a993-bc787f3ba16e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757075194", + "DeviceId": "514fbd09-597a-4d6e-a80f-1480a65385cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743471479", + "DeviceId": "13b4ada2-91b2-426d-aa10-c506a9013325", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_905028786", + "DeviceId": "d29bffdd-341b-4230-9704-0d5245d46fa0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_861849509", + "DeviceId": "e6ddf18a-cbe5-46bd-a430-d67ac2b3eeae", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "996a8c1e-9594-4a33-9f90-5a6074a2a767", + "TenantName": "Tenant-996a8c1e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_363265395", + "DeviceId": "bd2082a2-3112-41a7-b727-e891a1e5046a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119689237", + "DeviceId": "35de1879-5fe0-4f04-98ac-10125230cade", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860472895", + "DeviceId": "2306aa7f-246b-4489-b00d-13a7f7945c6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_894171410", + "DeviceId": "e66507e0-4aae-4ae7-b4c3-9ad94a0e733b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_957199666", + "DeviceId": "7a53e069-8e20-405b-b346-6a0a7acfbb22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_546881384", + "DeviceId": "7f583b04-38d0-4115-9e74-c675bee6c929", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1993a648-dcb4-4d9a-b5b7-21ee34219e4a", + "TenantName": "Tenant-1993a648" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788051381", + "DeviceId": "0ca3433a-9fa8-4e88-bbe6-4455056e7253", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914621633", + "DeviceId": "c5b27a64-21bd-4b0a-9ed3-9761dd8fa81f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864609363", + "DeviceId": "b2ff9ca4-54e8-4f07-af76-8949a9de909f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_350497518", + "DeviceId": "fe578c81-c0dc-4017-adff-34c1fb8cdba9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960007858", + "DeviceId": "b15ca5f4-5508-4453-a735-e874af898ee5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_862478824", + "DeviceId": "96b6f6ba-04f8-4850-8c61-79641c01a273", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "544dba5d-af48-425b-97e8-df8ff14ab2a5", + "TenantName": "Tenant-544dba5d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755143841", + "DeviceId": "bde4af03-a24a-46f0-a334-7557690728cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561448082", + "DeviceId": "98cf2a5e-2f60-465c-89f6-1694b394a9db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806861410", + "DeviceId": "41708391-300a-4b3d-807d-1935b3a6f93b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456633904", + "DeviceId": "868e88c2-92a1-4f59-976f-8861c2f27459", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_133959341", + "DeviceId": "ca1bf068-34e0-4c43-937a-66d507f4da8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_392782997", + "DeviceId": "74486335-cb69-41f6-b527-4f98744b9fd1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bc30bd86-4661-46aa-ac3f-7b01860e4b7f", + "TenantName": "Tenant-bc30bd86" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610556347", + "DeviceId": "d35e841e-8cbe-4e87-a418-c73e05edfb85", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210015271", + "DeviceId": "16335b00-3fc1-4783-8aa4-05ce4ea0f234", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741019247", + "DeviceId": "7cfd2e55-40b6-4af7-83bd-b733dd18000c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_249590044", + "DeviceId": "638dde41-1a51-4a4c-aff1-e72e81805f35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730776050", + "DeviceId": "6112b37f-11a9-4d7e-a969-1588d37f4284", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_315170886", + "DeviceId": "ce20c601-ef93-4b0b-9d3b-b768d1ac2912", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "07577e0f-ebf8-4242-848d-2d7c15a1ca4e", + "TenantName": "Tenant-07577e0f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_464226683", + "DeviceId": "904965b8-3ee8-4fca-8e40-ef635e2a52e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895311614", + "DeviceId": "84a8f90f-171f-4784-8c11-6d4cb9f0ee2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680013647", + "DeviceId": "1f9fbcbc-0ffd-498a-b955-dc34a1cd1556", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999348773", + "DeviceId": "13e4e53f-a875-426a-b1ec-16228a28c3f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_946056875", + "DeviceId": "a282753f-dad7-4d56-8481-7269152dd1f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_125573386", + "DeviceId": "8fbf911d-8560-4b43-bc05-34a9d69324b7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "abfa9a4d-7c80-4a83-8180-168fb7736a8d", + "TenantName": "Tenant-abfa9a4d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458632609", + "DeviceId": "b42945e1-a6c7-403c-b9c8-68c57653eb0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119589841", + "DeviceId": "9de0e321-6b78-4378-9581-b92ce0b4ad65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423545964", + "DeviceId": "da0a00f0-a493-46a9-a4c8-836394871b23", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896852976", + "DeviceId": "d3a5ca34-b014-48c0-a2a6-ba7fb15737fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_224645005", + "DeviceId": "b8445e43-2ed4-4c1c-8ab5-8b985e2e82c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_335740907", + "DeviceId": "41714056-7332-4c63-96b0-f3043258ccca", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "96c920fa-340b-4e3c-8fee-6f22300cc1e7", + "TenantName": "Tenant-96c920fa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276357850", + "DeviceId": "42beb426-5d63-4312-8db6-b372acfad323", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413216883", + "DeviceId": "1e8aaecf-d3fe-42f4-9459-2097190b7fdf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_278539275", + "DeviceId": "eb054039-d3f0-41e7-a2cb-4a8f282b1892", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954763894", + "DeviceId": "7a57ac17-08f0-44bc-9c84-09b882cf1e95", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_905529220", + "DeviceId": "6ea04a9c-83e4-4362-9f78-53b72c68d972", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_550485939", + "DeviceId": "04867739-5ce8-4d8c-925a-e3192315d4c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "abf91023-e1df-4828-aea3-a7fd1dc134f9", + "TenantName": "Tenant-abf91023" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617266410", + "DeviceId": "0603ec0b-fe79-4b39-ad9b-8c7de1776ce3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579688776", + "DeviceId": "8ea88c4a-a418-4f8c-8e54-61093ede210c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376103765", + "DeviceId": "63005042-fed9-4443-8faa-8d93e514e625", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347072750", + "DeviceId": "9e008f14-9705-40bd-a1d0-545f72ba1ae3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961036365", + "DeviceId": "45827d15-e43f-4fe4-965b-c65304d3ed11", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_827664718", + "DeviceId": "a3f6ce3d-7639-467a-9c3d-150e564a66f7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d8a1325-6595-432b-abc9-4aab467cae3f", + "TenantName": "Tenant-8d8a1325" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753501765", + "DeviceId": "4cca4a4d-9f95-471e-8647-008f1d9e8e65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838907614", + "DeviceId": "a64b1c7b-dca1-49d8-893e-289286371607", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485479523", + "DeviceId": "28644b80-6a7e-449c-9155-faef5858c9a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718701294", + "DeviceId": "bb22220f-593f-4cf8-bde4-165bd24ce12e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213231312", + "DeviceId": "4c22078e-0f7b-44e4-a70c-5906ea21391c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_954435175", + "DeviceId": "fdc3ff1f-a832-4faa-8721-a8af57c78310", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "41259b32-8e2f-4aec-941b-ca16bfd2a352", + "TenantName": "Tenant-41259b32" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_229064860", + "DeviceId": "fe845279-e83d-44e3-bf38-12d66f994988", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924782392", + "DeviceId": "98d84b5a-5ca3-4f44-b287-b48150df5d5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207281182", + "DeviceId": "187a9508-7edf-4ed0-8807-5bb2a0f6c302", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_261283075", + "DeviceId": "c3168d8d-34d8-4299-8121-2486269e9a46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818844563", + "DeviceId": "fa6cf755-aae0-4133-ad91-0292bd9e1d81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_660096242", + "DeviceId": "b71727ec-f129-4230-a372-c4d385065504", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c15ac01a-553b-4bfb-9d85-dd43def946ec", + "TenantName": "Tenant-c15ac01a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307319674", + "DeviceId": "2e8c0696-8cdb-4c35-ba70-ad072796d28e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442973703", + "DeviceId": "0e550a77-5dba-466a-be33-c4398a0ca07e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709296954", + "DeviceId": "6e718e08-3015-4669-b63d-d9daee17b614", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784449417", + "DeviceId": "f1648758-5481-4716-ac56-bd3ff776e76a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172074511", + "DeviceId": "4a167f60-cbdf-4142-90ec-4beb2a6c5fd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_687031015", + "DeviceId": "c59659f2-1ab2-4453-a4ee-1db9654d2f6f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "70f30d0e-4293-49f0-9b64-559ff9152cdf", + "TenantName": "Tenant-70f30d0e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_809678954", + "DeviceId": "4cddfdea-de9f-442d-afa0-22166822059b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288432060", + "DeviceId": "e55ae16d-ebbf-4cf0-b4de-75c8ecc7fb8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_937116824", + "DeviceId": "0c7123fa-16f1-4ea8-bd3c-0d87869a15f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422335179", + "DeviceId": "73b1fff0-992b-42a9-bc5a-520121177904", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906279851", + "DeviceId": "1b752c48-9c94-4865-aa9a-f1586a442320", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_254898549", + "DeviceId": "7fa1cf16-bbf6-4158-87c7-7b3c9906e428", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e06d71f6-fb85-4282-8ab3-8250c66864d9", + "TenantName": "Tenant-e06d71f6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404137619", + "DeviceId": "f3ae1408-5c48-4f2c-b302-556932c31dcb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_133688471", + "DeviceId": "7e6cd690-0a48-427f-8efe-14bea316210e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505312161", + "DeviceId": "4a2d47ff-4d3b-461c-9437-e363bc1cbf99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827974354", + "DeviceId": "09edbff1-e975-408f-9dff-4a5307d127a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694261356", + "DeviceId": "6e081244-0060-4642-af38-a0be5a344b4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160150215", + "DeviceId": "4391edc6-d705-4867-9851-9d58385f3d5c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ee3d571f-c38b-427d-bf39-796d75ad83e7", + "TenantName": "Tenant-ee3d571f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901792845", + "DeviceId": "64b030b8-38f3-4831-ae2b-d6cc03b4683f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_146166254", + "DeviceId": "99b87ff7-4d3e-49ab-8173-fa6db83eb518", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_253693626", + "DeviceId": "584cee95-5e2c-47fb-8f74-9d80cceec51f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932778185", + "DeviceId": "546f6c56-b65e-49c6-8b83-bd81a00a632c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561258939", + "DeviceId": "d58c1e47-cf81-4181-b506-384156545739", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_137329424", + "DeviceId": "23ded72e-bb7c-42a6-8ebd-a2766ae1b53e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d645a45e-2cca-4f24-967f-28c438027517", + "TenantName": "Tenant-d645a45e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250095675", + "DeviceId": "86d02905-4da3-44c2-b797-d76a70729b55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875345096", + "DeviceId": "c56c41a5-a812-443f-bd1c-68e292627410", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549730197", + "DeviceId": "ad59c9b6-5859-4943-a3f6-80f331209f67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615795989", + "DeviceId": "eb7e85e4-1800-4dd6-aba5-a122215066cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300268450", + "DeviceId": "b68b8a64-f7cb-4055-bf2d-2fd088915873", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_350477957", + "DeviceId": "fcec537e-357d-4c77-aaf0-e3ed81e999c0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "42c9e85f-d801-48e6-bdab-5a1b215015a6", + "TenantName": "Tenant-42c9e85f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610515008", + "DeviceId": "4c293478-6159-4a09-a82d-f790f0105322", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841987890", + "DeviceId": "2b07aadc-f6b2-478d-ba0b-87ae22d6f2ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319847476", + "DeviceId": "a366285e-b3f7-41dd-8268-72312b9b9977", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795153882", + "DeviceId": "88d51750-0165-4a38-bac5-50f946a1df6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749378390", + "DeviceId": "654be6b6-920b-4c3f-b718-35a21586716b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_135111667", + "DeviceId": "d496c932-01e0-4780-addf-df12ea66ae60", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bdc56e4e-ccee-4211-ad5a-43b92d4ef940", + "TenantName": "Tenant-bdc56e4e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906347248", + "DeviceId": "596b9ec0-4cc7-408c-abce-78d604b1d2fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_911937283", + "DeviceId": "06cb89d9-a39f-47fd-adb5-817ed98358bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668567883", + "DeviceId": "6cd6b3ba-d97f-4ee0-9ead-f122bbdb7515", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509027915", + "DeviceId": "c6977cfc-37f2-4aa2-a76d-2e2e5c46c507", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817241421", + "DeviceId": "0fc47fd4-2083-4a75-9bd2-cd67880164b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_666115758", + "DeviceId": "c9c51a0b-a4e4-42cf-88c9-9509b61435de", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2ca2f77d-8ca1-4e87-89d3-94c82d5b90fa", + "TenantName": "Tenant-2ca2f77d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518221959", + "DeviceId": "bd413e59-94d2-4248-b5e8-4bcb26ca72a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919322131", + "DeviceId": "65590248-56bb-4198-9937-9df5690469e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504609876", + "DeviceId": "dbcbe05d-d658-40ce-8f0a-d8053acdaa9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_215669932", + "DeviceId": "6f0ac709-312c-4cd9-b860-65d37dcb710a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784504777", + "DeviceId": "09367a81-157e-4e55-b984-b580bb813f26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_104966866", + "DeviceId": "865d3aa1-90df-476c-82e6-18d60924da9e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1e0a05ac-46e1-4bd7-be0a-f04e0ef98719", + "TenantName": "Tenant-1e0a05ac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436139991", + "DeviceId": "26f4a65a-4285-41d7-93ee-35b373bcc3b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347794712", + "DeviceId": "f6fa4a54-b394-48c4-92d8-08b3fb1c8576", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442261372", + "DeviceId": "c7ebcfd9-eb67-408a-8465-08a7355afd4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_941193625", + "DeviceId": "9579dad5-7c52-46db-aa25-874fe9db477d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_139875520", + "DeviceId": "c65dac98-7151-450c-8556-1d8bfde11530", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_448215170", + "DeviceId": "1537d3c3-0eba-4d11-a546-5cc6f25444fa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8ed59a36-3801-4be4-96f9-9f101ea14fbc", + "TenantName": "Tenant-8ed59a36" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227947827", + "DeviceId": "ecf1313b-b10b-44b2-a12d-4fa643a8db60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164596832", + "DeviceId": "39eb5b6d-268d-423f-ab2d-ddeaf3512ece", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351967547", + "DeviceId": "104198dd-c950-4f97-9246-76b581f89a14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_239925265", + "DeviceId": "c84de43a-efe0-4155-af15-442f683a3e22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590635799", + "DeviceId": "c943bcd2-1b85-4191-8566-ca3de46ce788", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_161426509", + "DeviceId": "a4a9abaa-53dd-44e1-a0ab-06e1b587c01e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "92a43bc7-8efa-4d4b-84c1-9c3677a58885", + "TenantName": "Tenant-92a43bc7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471381192", + "DeviceId": "89fc2565-9b04-40f2-b0c8-ca6ce0901bf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242041314", + "DeviceId": "726daddd-e62f-418a-b165-0a147e5901f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122254144", + "DeviceId": "13e7da86-9503-4fea-a4c7-5ab09385c4cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_134463406", + "DeviceId": "7df257ac-a5e7-4cce-974b-a8d0fe2a2fb5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_259308176", + "DeviceId": "c31f3294-4415-4f06-80bb-a50994d3f7dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_684301088", + "DeviceId": "c1fdbde2-051c-4e92-8de7-db95acffc7e2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "edda87ab-f360-4246-a5d5-d00f0a397aca", + "TenantName": "Tenant-edda87ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184082350", + "DeviceId": "cbcdcbae-166f-4a5c-99d8-2c4616b2bd10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640166749", + "DeviceId": "09473974-a524-4952-a374-1a32bcd5d187", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311617203", + "DeviceId": "4afe418e-8217-4615-a00b-57ec9d189186", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667290235", + "DeviceId": "730a3bd5-8d7c-49e4-80d5-25d7ec4e6258", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429926146", + "DeviceId": "13e0be91-f49a-47d2-8feb-35cd5baf3b59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_213779624", + "DeviceId": "694d2a4d-016c-4198-8117-4d1027aba867", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6444de45-1a39-4a24-acb2-be539a819619", + "TenantName": "Tenant-6444de45" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714670429", + "DeviceId": "b0624f3a-d2ff-4d05-bb81-e31f49f9a0aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119199969", + "DeviceId": "92268eac-caf4-4b12-9854-22e99d0dd636", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_448055628", + "DeviceId": "53d3663d-01ca-4482-9683-17654224f9a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_986208544", + "DeviceId": "c580e270-637d-4a58-8938-b28eac9ca530", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_824431527", + "DeviceId": "228ab280-69a8-46ed-8ccb-62aed7f282e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_335427190", + "DeviceId": "b30fe149-ae66-43d0-8889-7effbfb6e76e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97709ba7-0cf4-48ae-b197-c6d357204e52", + "TenantName": "Tenant-97709ba7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841293631", + "DeviceId": "0afac9da-f89e-4fc3-ac26-cbc025c922a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934296695", + "DeviceId": "979e4039-1950-4b14-a5f4-1e6ae345f0bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_502668725", + "DeviceId": "dedebeed-a602-4b62-b14d-0b454f184389", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425813398", + "DeviceId": "118ce52c-72e6-489c-b9c3-904892fe6b95", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_521308270", + "DeviceId": "a7066c56-1a88-4c22-bcbd-3324d15cdfb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_274966934", + "DeviceId": "e4cb340d-6ea9-44c4-be87-a80583a185a8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "179e45ff-ecee-45c5-bd22-5d1788a4b343", + "TenantName": "Tenant-179e45ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_442927601", + "DeviceId": "03251691-ed27-48c3-9458-48d1c27de45a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_792793948", + "DeviceId": "b4295776-fa14-4312-8b94-92d5d774822c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354340529", + "DeviceId": "196ddb8f-5cda-4172-a1ea-93c9d724ecf2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_409191723", + "DeviceId": "0119b2a5-38f9-460d-8c86-80b6436277c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_957965882", + "DeviceId": "2237da97-f398-4b58-bd75-11e3f052fb01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_775149788", + "DeviceId": "6316780c-5b10-46bb-a9f6-5b38f6e3ad88", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08d6dbf8-50de-4498-90c6-3625a36becf1", + "TenantName": "Tenant-08d6dbf8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_859250770", + "DeviceId": "fe0111e4-d265-4af2-b23c-7f58fad33cb8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568868559", + "DeviceId": "49630bab-f2cb-4628-8401-103ff24d2ad7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588140436", + "DeviceId": "fac83d8a-e36a-48d7-80b9-423de1bb7e26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_864369223", + "DeviceId": "b0cb7755-4662-44f6-af81-9bc8952c4aea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784849070", + "DeviceId": "bdf5476c-e6e2-407e-a658-e75f541548d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_230036237", + "DeviceId": "37946e3c-790c-4878-88d8-b70418fc8005", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ef5b2d5c-fd26-4187-90fd-ed28abaa9470", + "TenantName": "Tenant-ef5b2d5c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858972241", + "DeviceId": "55f2673f-b041-4418-8e86-2e8d169642d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_769598513", + "DeviceId": "f344961b-69d2-4c2c-8b3c-194e9fc41839", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123400036", + "DeviceId": "375e83cf-e4ad-48b3-93a3-3d831d30a828", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707877718", + "DeviceId": "5ebfb02c-43a3-44bc-b243-967b92e41ffa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_682285260", + "DeviceId": "6e9e0d3e-5094-4ad2-92d2-52b10dbd51ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_881644029", + "DeviceId": "96d9111c-87ab-4515-9039-e0893d26c0b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "32d598fb-7ada-47ef-9ca3-45cd6880492d", + "TenantName": "Tenant-32d598fb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638430651", + "DeviceId": "a0776d8a-38c1-40e4-89cc-680ad1c4bf64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_335705803", + "DeviceId": "e68536df-24b0-4e3b-b442-df3edd6bd5fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377648718", + "DeviceId": "a406b466-0ccd-4cce-b2b8-41e88a8f2c27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123369036", + "DeviceId": "2bd02667-70e0-4719-8b8e-2b9b8d4ca341", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110445140", + "DeviceId": "c00e5d19-f240-4bef-b43d-313b8ba7770f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160108762", + "DeviceId": "4e9b4185-0dd5-4e39-b53c-5a73b7274729", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f9be96dd-0ce0-4d3f-a2c4-f972389e76f5", + "TenantName": "Tenant-f9be96dd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_121636823", + "DeviceId": "7050a369-8441-44b5-b6ae-235bcc52a377", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141125083", + "DeviceId": "a364c164-d456-4b02-b00e-8dee36494e97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666287308", + "DeviceId": "7e598556-81ea-4235-9211-4db2ce88aac5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_388106003", + "DeviceId": "aa9e9874-0acd-4fa0-8b84-ba51fdc89acf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580545008", + "DeviceId": "5663a1ac-c705-455c-baef-499380ee7e9e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_814091669", + "DeviceId": "f653f574-6b60-4690-9834-f60e2eb7bb4f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1883794b-34bd-48d9-adcf-7ec14ee200af", + "TenantName": "Tenant-1883794b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996597834", + "DeviceId": "fc41e3e1-d50b-461f-8fec-67a6c05fe0f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_138264607", + "DeviceId": "2074530d-043f-42da-aadb-ecae63ed47ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731539736", + "DeviceId": "84b88ae1-5010-4d73-b68f-1a7902bc3355", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_226570513", + "DeviceId": "cd5fb032-9106-406f-a975-6a52e5a23e9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453048942", + "DeviceId": "82e0a328-016d-41a8-978a-6087b04592ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_148560833", + "DeviceId": "4e2149d4-cbf6-4b23-a1de-212c7db32d51", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cdd06851-13bd-4bc8-9e88-4047a48cdfa0", + "TenantName": "Tenant-cdd06851" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_886813066", + "DeviceId": "16e88521-8e7d-4624-89f0-60dd9c15a72d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_942904513", + "DeviceId": "c4d97355-6c87-45b8-9a31-af2e96e1e766", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_994609138", + "DeviceId": "7b9cb93b-5b20-4b20-89b5-8d6e496b9c6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_604061352", + "DeviceId": "36d76e8a-fc7a-44a0-a59e-1d045a7e58bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_576226823", + "DeviceId": "1da418a6-116e-45eb-8592-36473d09a279", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_196469191", + "DeviceId": "80b0acd5-5999-4899-b647-32c599aa9778", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3a792665-9299-431c-adde-f528aebef78a", + "TenantName": "Tenant-3a792665" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631299839", + "DeviceId": "71e4b12a-8a33-4184-a4d1-78a585637783", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_686018236", + "DeviceId": "1b4229f5-f687-41ba-8509-54fe6537e3b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692396902", + "DeviceId": "8ae21725-2a9b-46ba-ab2d-9df4bd8774c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_465300654", + "DeviceId": "60744694-028b-4fcc-a804-4e0e332de5a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_147359764", + "DeviceId": "2447614d-8f39-402e-b5a7-e08df348c203", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_405128106", + "DeviceId": "d9d48c8e-66f8-4f4a-937f-0868dd267746", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "282ed98d-0cab-464d-96a0-4848da58009a", + "TenantName": "Tenant-282ed98d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352985230", + "DeviceId": "ad1ecdf2-6ad4-401f-97d1-60bdfc445565", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838947919", + "DeviceId": "07a15896-b3a4-43cd-bc1c-45770ef86137", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571559601", + "DeviceId": "d3aaeaca-c365-480e-99e8-6b3d3bd312f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_750369258", + "DeviceId": "dbf8ae29-0279-4bbe-9b24-a02e96fd8cb7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_502820794", + "DeviceId": "2ac3cda4-0701-498b-9b96-5aaf22a56aed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_965448419", + "DeviceId": "8846d5d3-ef15-4483-b5bf-ed7d90de1fba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4b0d7b77-c284-44b2-8a0b-0fd82824cb99", + "TenantName": "Tenant-4b0d7b77" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900280966", + "DeviceId": "b03a44b5-507d-47b2-ac5f-79db1392c480", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605996139", + "DeviceId": "c95f203a-dd97-4158-8d0e-e994a62d697a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242512501", + "DeviceId": "eeef019a-30a8-4e6c-a1e0-fd99f8387cc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_669129502", + "DeviceId": "417defa8-8b56-40e0-84fa-2d28011e8453", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733600725", + "DeviceId": "4ab2750b-1818-4442-9932-4d212f52b692", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_910989994", + "DeviceId": "b97fb672-11ce-41c7-85a0-9b1c41eef868", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9999cd25-12ae-4866-90ec-0401af4673d7", + "TenantName": "Tenant-9999cd25" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726240011", + "DeviceId": "f2c980b2-b544-45c8-bacb-2ffc409c175f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_215321006", + "DeviceId": "c723275c-911b-4e42-8200-b4bef24368ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_643541409", + "DeviceId": "8f50d52d-3823-4c9d-9050-625033f6f2f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_759354820", + "DeviceId": "b05433e2-7bdc-4691-a0ee-6e5622610c2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141464702", + "DeviceId": "580ec111-e926-431f-9b74-73ed991bf7ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_883764918", + "DeviceId": "c56a7dab-151e-4af3-9f83-c1868d1437dd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "46de2922-bc87-4516-8be5-8ef9924415d0", + "TenantName": "Tenant-46de2922" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856388388", + "DeviceId": "a24e6e4c-99e6-47f4-9d00-3c359ee3dd5a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521538748", + "DeviceId": "066030f5-d63b-436d-afab-867c22f4f323", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_983547292", + "DeviceId": "d2eef1e5-44fc-437f-b0b1-8452edfe3a03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556613363", + "DeviceId": "b5cf82ee-5552-4339-a50b-b0cbbb27d309", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_111428655", + "DeviceId": "15b5c56b-e831-48dd-a0b2-312ca6f32160", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_305609573", + "DeviceId": "10e1142e-bbb4-464f-a4bb-9e749abf141e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f6a4c15b-9e49-4a49-8bfb-c96f64d5ab97", + "TenantName": "Tenant-f6a4c15b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_791090129", + "DeviceId": "365ba32b-2f37-44c2-b71e-0df3f4710c50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596836879", + "DeviceId": "867d2f4d-edb3-45cd-9665-fdd8594bcde4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276936550", + "DeviceId": "d6e1e868-f00d-4c23-8c6e-71a997563683", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860640115", + "DeviceId": "e37b543b-210a-4c47-808c-c282cfa7ce91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609975137", + "DeviceId": "0e0e6c8a-9c82-45b8-9b61-8d4464d20417", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160471718", + "DeviceId": "a9fdb34f-f95f-4588-a8fd-b1101edf1e45", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "909ca4ca-63c1-4630-9b23-092789691b9d", + "TenantName": "Tenant-909ca4ca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450136389", + "DeviceId": "72e75d96-d88e-44d5-955e-16a365e3d2ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869763536", + "DeviceId": "89f0f7ec-8bfe-47b0-a20c-b7ceee6fc2f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130964149", + "DeviceId": "486f2d6e-c8c5-49e2-8db0-a8e30818508b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525537037", + "DeviceId": "4a323eb3-15e1-477c-85c0-e62d64ad3486", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_648146808", + "DeviceId": "75a3a9b9-c1fc-4782-a068-d05978f97952", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_228326680", + "DeviceId": "f017d959-799c-4483-a02e-02ef53e19f6a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7446b269-6ac3-4fa3-8fcb-be097fea9df0", + "TenantName": "Tenant-7446b269" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_636241106", + "DeviceId": "4dab0b18-02a1-4a11-8005-56e3efeebeba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853966817", + "DeviceId": "b258397f-65c6-4786-80dd-74488f73800b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545882618", + "DeviceId": "30842d70-105b-4bff-b4a8-3df5673cbe28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155944639", + "DeviceId": "9a0da1a8-3178-4e3a-8c14-9d4d379221ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_365634879", + "DeviceId": "68983359-f5f7-4500-846c-934909e2c9f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_519878354", + "DeviceId": "a54e777a-ba9f-4c8d-9496-2dabc830ab52", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "30329316-8470-4da9-a4ae-b054675a8676", + "TenantName": "Tenant-30329316" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844204065", + "DeviceId": "9b8cb4a4-1eb6-47d0-bd6f-6fa991ca7d31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_769432588", + "DeviceId": "0fd3f006-9902-4d25-9a6a-d4002d4c8345", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567957728", + "DeviceId": "f96cba32-1cb9-4945-9214-61618fd47caf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238942837", + "DeviceId": "fbe51dbb-ce02-4741-9824-15a6218d8a25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595038604", + "DeviceId": "797e5fae-6171-4c2f-9880-8c7372a8596a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_530813277", + "DeviceId": "29ef1d5f-33fc-458a-abf6-d349d08bd384", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4641d284-fa77-4abc-83cf-01131cf46c01", + "TenantName": "Tenant-4641d284" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731142827", + "DeviceId": "9529eca9-2302-469d-a4b0-d26be0427d8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281375582", + "DeviceId": "5c7773e6-a13e-4cf5-8901-b4a2ccb5d93c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597929267", + "DeviceId": "75e5273b-2526-4597-ba28-4e7864b5578b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176464286", + "DeviceId": "a3e0d259-8d21-4fff-9f90-38f8a8205c0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231635095", + "DeviceId": "97ea1d66-f404-4789-a888-f37043cfd605", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_333236032", + "DeviceId": "2331fb55-14a7-4d97-9b90-1365f81a861e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "88dbb091-835b-4b44-bd75-8edb478b7871", + "TenantName": "Tenant-88dbb091" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_828153829", + "DeviceId": "d375e910-b5ff-4d59-93e4-747af0ee2b3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202395059", + "DeviceId": "4b303cd2-6982-4886-9060-1b2338603f2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218433465", + "DeviceId": "2a472412-b0fa-42b4-90f1-9553c6d3241d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636659633", + "DeviceId": "b882b247-c03e-4b38-92e7-58f862db1b1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793057905", + "DeviceId": "00040d5a-899d-4145-8b29-bd23d51049fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_756818159", + "DeviceId": "8d0e9f8c-61f8-4229-9a3f-f51c49280777", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d83a1b86-c34b-4bf3-85e1-e69715c71de7", + "TenantName": "Tenant-d83a1b86" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713444738", + "DeviceId": "25a2048f-46d9-4d5f-8765-5429336b0e00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_371662182", + "DeviceId": "0a446468-02d1-45cd-a343-d578cdbc3e10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652775064", + "DeviceId": "ef730294-247c-495e-a4df-4c01df02f5fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_774921227", + "DeviceId": "31c18413-0a09-410b-8715-0ea20faef72a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_159693688", + "DeviceId": "bc599a62-189e-42a9-95b0-d91a50ed2c74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_107810307", + "DeviceId": "20c0b98a-5b3e-4c5a-a65b-46b0c9a925bc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cb96fbff-b54a-46e1-87da-10445ada89ff", + "TenantName": "Tenant-cb96fbff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849182879", + "DeviceId": "2f4ab7f8-a3fa-4d7a-9d4b-c3e09c8fa117", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969261337", + "DeviceId": "fb38c5f0-3af9-4102-887b-308b0e5e4ca1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617297268", + "DeviceId": "436c5d45-998d-4849-94db-0c99d04d888d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597202122", + "DeviceId": "2a68eb2d-9bd6-4ca0-907f-df614e40800d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948329650", + "DeviceId": "1c78d18e-7a1b-4c19-98a8-3feaa61519ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_430273120", + "DeviceId": "2cbcd19b-fff2-42af-8ab7-83d9c3c1be26", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6f9ea127-f4ff-4baf-829a-9e1482c44acb", + "TenantName": "Tenant-6f9ea127" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954069464", + "DeviceId": "70863583-972e-4186-9e62-96cd2b2ca3d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836679947", + "DeviceId": "c4bbfc35-6ea8-48db-b6cc-749b80f352dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444176611", + "DeviceId": "eb9b32a1-c0c2-43c4-b807-f1150ac105e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392551048", + "DeviceId": "82b10865-1081-44cf-b6fa-3cabad55edcf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455594528", + "DeviceId": "70d32595-b827-4be9-92d5-404b9ce605f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_838055354", + "DeviceId": "515c8fd1-181e-4a68-bcd3-239d81c988b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "35b624e3-9f51-46ca-b071-bc53e24088a9", + "TenantName": "Tenant-35b624e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779990310", + "DeviceId": "1828353a-4e1c-41b3-8f72-4d0b8ce2dd28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_799559589", + "DeviceId": "2d9aa246-385b-45da-a993-b05353b8645d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697379614", + "DeviceId": "14353d34-321d-41b6-a05b-9ffab01d2c44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_465638391", + "DeviceId": "2c57545b-c6b8-4284-84dd-b675f7dd7749", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574107621", + "DeviceId": "f88ad8f7-e773-44b6-b060-940add4ab401", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_721781679", + "DeviceId": "c1125e22-73ba-49e5-9db0-2c55822b433e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f90acd6e-a0b9-4256-aba2-a16445838c49", + "TenantName": "Tenant-f90acd6e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329841475", + "DeviceId": "0e614fed-6be7-40be-9db9-49475975bb67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_990819256", + "DeviceId": "9f4a08a9-0055-4f2b-8d51-962fb4601e58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_653882536", + "DeviceId": "9d6137d9-f4f1-4b7d-a77f-4d246f29318d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910562855", + "DeviceId": "d7224707-1a9f-4e0e-9771-6981194adc90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_690162813", + "DeviceId": "bc9568c8-b1e9-4aff-87cb-cc53f8652c35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_676298629", + "DeviceId": "f490693a-93b4-4bf2-936f-98109be3f079", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a55fe89e-828b-429b-9cfb-0ce62a488bd9", + "TenantName": "Tenant-a55fe89e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_508642939", + "DeviceId": "af4defe3-bc9b-4685-819f-c3876422a6cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550431140", + "DeviceId": "d49de075-6254-4d52-aea4-039ffc4b0921", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405946838", + "DeviceId": "1b0308bd-fd45-42ac-bea8-f48421cfb5b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313123675", + "DeviceId": "572413e9-2d7c-4b30-bce1-4e60e505780f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278495481", + "DeviceId": "510bfa3e-28cb-41b2-92f2-e449cd19dc5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_454692763", + "DeviceId": "3f38253c-282d-419b-bee7-10b42d2109ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "701bc0e0-c95e-4e68-8071-773a3ed757dd", + "TenantName": "Tenant-701bc0e0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494102038", + "DeviceId": "5a5bbb66-b9f2-421b-bafe-090879e6f4ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844917492", + "DeviceId": "9b69150b-483a-4c14-bb2c-9e8ca1c52107", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_469902517", + "DeviceId": "df02eded-5f4c-4f0a-a685-2d75bba9c505", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700002369", + "DeviceId": "5f7749f3-1302-4176-9942-aef2da96442e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422699210", + "DeviceId": "c0bf1a21-cdbf-4638-a059-932eb57f9bfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_419185693", + "DeviceId": "4a5c1392-c598-4bc4-8e42-2babec8a5deb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2f216b06-c61c-415e-b8b4-36694efc90fa", + "TenantName": "Tenant-2f216b06" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986652626", + "DeviceId": "e43cb8af-f27f-4b41-a09e-72d5927c388d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_892603089", + "DeviceId": "03b6b3e2-b3b2-4dbb-ae0e-77ead58e2cf7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490084414", + "DeviceId": "77f7d2fc-b836-46c6-8702-968e55b3d8f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424404733", + "DeviceId": "7d0490f0-e0e6-424c-a90d-ecd654325a06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452206918", + "DeviceId": "8197d01f-413c-4477-8af5-092a6160c459", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_994100644", + "DeviceId": "b58b233c-1d47-41e2-ba36-dd7dfd1ca04b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "466b5252-86ce-4e2a-8efc-6bbfecc27c37", + "TenantName": "Tenant-466b5252" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213398035", + "DeviceId": "ed70a2fd-be57-45f3-97a2-78ea818eb861", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176560722", + "DeviceId": "d8f7efa1-ea12-4eb1-baa2-4760501e1e40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895171379", + "DeviceId": "f9c8cfd8-7f0e-46b1-b5b0-5d591100ad2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300518406", + "DeviceId": "81e496c0-d53c-404e-b45b-b2d399b1d607", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_648810335", + "DeviceId": "ce1e2e1c-5638-4b22-9bd3-6df934bfad23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_939192176", + "DeviceId": "91058dd0-42de-4954-89ec-7851c4405115", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "17b8693a-e486-4a11-a2d8-30963df9bbef", + "TenantName": "Tenant-17b8693a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_342152790", + "DeviceId": "0525265f-883c-4574-927b-a64766160b9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504374129", + "DeviceId": "37406954-1a16-4fae-bd58-639ec59e7a40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969732084", + "DeviceId": "86a7dad3-c3c8-4d18-b834-59254b04693c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818635072", + "DeviceId": "fe166790-43c6-4f53-bd49-cde261090795", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989175105", + "DeviceId": "f646fe24-4793-4bd8-9fac-3b3d409bd04a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_473451178", + "DeviceId": "93bffdf6-4830-4352-a3b1-af5302d13eab", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2fbf7c33-adf5-4e22-a87b-336ef31afe55", + "TenantName": "Tenant-2fbf7c33" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752980692", + "DeviceId": "567b3e88-2b8b-40c0-b4cb-f6c9738e3d50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929828250", + "DeviceId": "9838a063-92de-46a1-8350-bd2f9f004a31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540494550", + "DeviceId": "7e464923-47d9-4598-9349-6c066a5c97bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309757314", + "DeviceId": "fdce28fa-6f27-4855-a608-33fee1cfdbf4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_588604500", + "DeviceId": "c5dcb839-033a-4295-8acb-c323a84890c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_850886259", + "DeviceId": "5a2a1d0e-5deb-4a22-ae53-ab65c6523431", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a290429d-c96e-44fd-8652-1484f29de4c2", + "TenantName": "Tenant-a290429d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252587630", + "DeviceId": "a1d567de-6f2e-4632-b3e6-8ba244b0800b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708304897", + "DeviceId": "5b12d881-0d7c-49f9-a233-ade658ca4d83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944482601", + "DeviceId": "a0a89313-1d25-4a66-82cf-d2688d17011a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929611312", + "DeviceId": "c8a989f9-6c12-41c5-810d-6b2760c8bd96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926781955", + "DeviceId": "29e7329c-d139-4ecf-ade7-575938d0e05b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_825621099", + "DeviceId": "e6f65847-f8e3-4d73-af7a-fa7dff32db41", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b963361-f44a-48a7-98aa-225b2209d5c6", + "TenantName": "Tenant-2b963361" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833384386", + "DeviceId": "e549e286-6912-4971-a109-4996dd568b53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690760612", + "DeviceId": "8dcd91be-ace8-4b77-a296-a46d979bdca5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_832354793", + "DeviceId": "6cd19ac1-7eea-4041-8881-b6dd337832bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585050267", + "DeviceId": "308feee5-3d33-4ef0-948d-d7d09ae54a1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547647704", + "DeviceId": "37cd8e1a-cf22-4265-a24e-45649aba391f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_266606915", + "DeviceId": "a4610825-a3e9-48ce-b7d6-7c629ff3ee2b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9c7d3279-2645-4227-a4ab-1d416d6d53b0", + "TenantName": "Tenant-9c7d3279" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362937090", + "DeviceId": "7f40d0bf-4eb3-4694-969f-590d07b5e559", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236263502", + "DeviceId": "f588ce97-fb30-4648-aef2-dd4eb6d05014", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_744477463", + "DeviceId": "e4b5ce45-dd60-418c-b592-ff7ecfb348c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643818827", + "DeviceId": "bf6aee21-e2e4-4ebc-94bd-0c28d0a233f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_799924303", + "DeviceId": "6b01199e-fc1e-4830-acc0-323d8f74ce4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_571524539", + "DeviceId": "427bf320-82a7-4ffe-948a-1412ac97ca49", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "00f31192-2a7c-4c4e-b80e-21e64d4c7abc", + "TenantName": "Tenant-00f31192" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_725458715", + "DeviceId": "cc241eec-89d8-4157-a9a0-d57137cd7557", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_737437766", + "DeviceId": "cfbda05f-e075-4676-90a9-61b5d61b67ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_189997737", + "DeviceId": "7e6ce9fa-b4a1-4887-98e5-eaa62077069f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_692411785", + "DeviceId": "29cc8d64-6186-46f9-8a6e-a31a01652923", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843148613", + "DeviceId": "7bce7a5a-9409-4154-9933-b3628fe52191", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_469133255", + "DeviceId": "9d6927ee-3e30-4413-8774-be7f22bab183", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c4ba25c3-e651-49c5-bec6-97ef5e1e52a9", + "TenantName": "Tenant-c4ba25c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873984099", + "DeviceId": "4098a14c-dedd-4b08-82c0-2c487845f342", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305954589", + "DeviceId": "a3334d46-66e7-4b1f-b21c-29fdde72dbc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742934062", + "DeviceId": "f7366d77-5f71-474b-a0f2-cc658334778d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_366428390", + "DeviceId": "b3c4343c-62de-4eb1-a9d5-46c33e09015e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725489957", + "DeviceId": "80da429f-9927-468d-ae50-2d3ac5af52b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_153792599", + "DeviceId": "2a8e9b5c-c9b4-4670-ae8a-3c23b2851b50", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e69c7bec-021f-4a5c-a5fc-c44ae4d99b18", + "TenantName": "Tenant-e69c7bec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159116341", + "DeviceId": "89baa3c7-5a34-41d9-b67a-83965de49120", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225729162", + "DeviceId": "1f4d617e-34bb-41f7-b909-01075495d122", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678754830", + "DeviceId": "61d7202c-4690-4874-a4c8-01be49abc118", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702799604", + "DeviceId": "b26828c0-47c3-45d1-b78d-f9731209cc3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256870311", + "DeviceId": "9764b8b6-57da-4360-8465-8bcf5b2a138f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_877772982", + "DeviceId": "a1fca1a8-433a-447f-b108-700b5174c364", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "65f7fd48-2a08-4044-9624-8e9a0ea16e32", + "TenantName": "Tenant-65f7fd48" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477700629", + "DeviceId": "170a20f9-f31a-4e51-a7cb-f38646911548", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935496254", + "DeviceId": "74526ae4-b2b1-44e4-9998-42d52c145b73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679762346", + "DeviceId": "d0884431-7a57-42d6-998c-5c2e0d68ea22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_216266250", + "DeviceId": "13312348-b524-464f-84ee-00128b0ca9c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742530958", + "DeviceId": "aa986359-0b31-484d-a330-da6109985158", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_265014507", + "DeviceId": "0ca7d961-ac18-482d-9569-0f7d3e347e01", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bbcc03a2-2f4f-4422-a215-596f19c0c34c", + "TenantName": "Tenant-bbcc03a2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790789391", + "DeviceId": "708e90ad-354d-4f87-9047-6d8d57248299", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833233592", + "DeviceId": "f307d427-f450-4090-8637-a68847c50a5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560924277", + "DeviceId": "b640252a-c947-4c76-9947-d3d8ebbf2352", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189490505", + "DeviceId": "2b5999dd-d212-4092-bf6f-ccb8c6c37dae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_928602273", + "DeviceId": "4255ea0e-5ced-4325-9c5a-ab56b66e5d0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_148136257", + "DeviceId": "54beae11-394c-460b-953c-4f9e9c469c68", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6e681fca-f667-4588-8337-aa2c73105cc6", + "TenantName": "Tenant-6e681fca" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_711616361", + "DeviceId": "986f26a3-e011-4eb2-be10-2e085283df6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_959552706", + "DeviceId": "beabd2c9-d318-41fe-b3bd-2afd1e2b638c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_197707848", + "DeviceId": "68956bb6-9e43-4fa4-95b1-a9f1f58cd49a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270128827", + "DeviceId": "21e85faf-5b4a-40aa-8cc5-4ea66fc73e79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306135037", + "DeviceId": "80e0d763-c7d7-48f9-b9b3-92ad6f3e66c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_159649160", + "DeviceId": "40f57882-0b55-4931-9b44-c6a3c649c36c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "311bb58a-6b8a-48ac-9a83-c0537fdee2e4", + "TenantName": "Tenant-311bb58a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_898111947", + "DeviceId": "9ae71541-9f41-4166-9a85-23485f029825", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358572248", + "DeviceId": "ed502ba7-6743-43d0-b0e1-4f8dd951485b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720103733", + "DeviceId": "ba03a619-f13d-4a16-9225-31527f0522c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_296020277", + "DeviceId": "231305d9-ad5e-43f6-a82c-a34b6046bf51", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794971257", + "DeviceId": "771f8ca9-86e3-4f84-910b-6c38e3ea9820", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_656855505", + "DeviceId": "65052add-b04a-401b-ae15-87ae0bec4d22", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "968c29db-3bba-4168-bd96-892e28b629c0", + "TenantName": "Tenant-968c29db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_411556905", + "DeviceId": "b764b6fe-ad9d-4c00-9064-3506792abb63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768290112", + "DeviceId": "e511a871-e765-4f3f-be5c-e6364a837e44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699468168", + "DeviceId": "74e7fdf9-7909-4a3d-b846-33dd8cf383ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709451378", + "DeviceId": "e06b9ac5-d474-47d7-bde0-1b6db8a9c450", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_782357991", + "DeviceId": "a19e06dd-be6f-4115-9a4d-53cf08d20109", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_893834172", + "DeviceId": "0f5e5495-cab1-41ca-82fc-d10b28879154", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf02c840-7500-43e8-8804-f5c469666ef4", + "TenantName": "Tenant-bf02c840" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_520753113", + "DeviceId": "bdd0e366-1d43-490f-9312-d0482ab43ddf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560727667", + "DeviceId": "fc68b72f-0ca0-473d-a59c-f04e595f8d02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658961134", + "DeviceId": "012c5fde-20d4-4247-8585-685817951d37", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393905049", + "DeviceId": "4ecc8d0c-ce59-4d5e-86d6-2227e0c0fde7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810521061", + "DeviceId": "a3ccb650-43f9-4f5e-b026-c8bb1e5fceec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_389278247", + "DeviceId": "a10ccc61-3f10-446c-bca9-f1f8b22a076a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "681db9fa-fd4f-460a-a648-0f6e433c15e8", + "TenantName": "Tenant-681db9fa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839818137", + "DeviceId": "438d03a9-f46a-427e-9532-1c1d18d23200", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600601330", + "DeviceId": "ce761628-8d95-4eee-be2c-ec66b98ebec6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_251397584", + "DeviceId": "0468a355-9ea1-4e41-8769-c842d92e85f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_856954672", + "DeviceId": "8b3f4b89-3eca-462b-a08c-4541e5fdbaae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517040914", + "DeviceId": "d06326f7-6f0c-4258-97dc-cbd6011ec06b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_928865172", + "DeviceId": "6e961b92-20a0-4e1c-8033-1edf34729c82", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7fafe0f4-39ee-4746-a5d3-bc3bb3d7bc0b", + "TenantName": "Tenant-7fafe0f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377963055", + "DeviceId": "de0b29f8-7185-4216-87f2-80513d1d1603", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731342392", + "DeviceId": "2913332e-d651-48b8-abf7-49297ecfcce0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147727689", + "DeviceId": "dd3d0c90-be2b-406d-9326-c7647b226d0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357520013", + "DeviceId": "185fd9f0-5f61-42f2-ad7c-856ea131cfa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395531778", + "DeviceId": "3dc57cf8-77ce-4e81-af8e-1c69155bc0e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_520495365", + "DeviceId": "b63f0418-ee52-4719-93de-833a812a6d8c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4f7fa2d6-4492-4d84-9424-fe8e9615db94", + "TenantName": "Tenant-4f7fa2d6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_293875928", + "DeviceId": "41d804a0-b193-46c1-93dc-6e00adb51823", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113037804", + "DeviceId": "a44174fb-d714-4c16-863c-f449c1490aaa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705921731", + "DeviceId": "58eb6a96-4f28-4d1b-b51c-9111f631703c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_892872300", + "DeviceId": "6cd9f00b-501b-4f6a-909c-802ba75c067c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119699019", + "DeviceId": "b95e82de-1b7f-4a05-b284-14845adfdf5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_475350527", + "DeviceId": "9801b1cc-2996-4b16-9a16-867d6f02105b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3a5ec822-27c4-4765-8c86-c6e2156d983b", + "TenantName": "Tenant-3a5ec822" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461208157", + "DeviceId": "f2a45393-503d-422c-9dd7-da7c9642af28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_769737223", + "DeviceId": "61c9e9d0-ad59-42a8-8962-e51830480ea3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298637179", + "DeviceId": "87076607-8a3f-4f6b-8eb6-57f13b90693c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_354438231", + "DeviceId": "31b94415-8aa7-4021-bcd8-c456ccfa1da8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973428939", + "DeviceId": "09114cbb-a007-47d5-90a4-a3170bce6a93", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_234192106", + "DeviceId": "5b2b4b7a-4405-4c7f-b9ff-3b652426fbbe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "40e14a58-59d8-472c-9f68-7cb8dd75d713", + "TenantName": "Tenant-40e14a58" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102565710", + "DeviceId": "8e0b8be5-e4cd-46df-9b23-2a430786b7ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658967788", + "DeviceId": "dab109bc-4be1-43f7-84e7-470883604ce2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922175980", + "DeviceId": "227709d9-7cd7-4172-a056-4407d601d917", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961086102", + "DeviceId": "b62d499d-1c8f-4c9f-99df-eef0593e33b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_366505117", + "DeviceId": "f973adcc-3b20-4f30-8221-4611e77af746", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_959143638", + "DeviceId": "040c67af-bfa7-4cbf-9705-fc75a0b4c324", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3baacfc0-988f-4537-b881-9d9c0b68d793", + "TenantName": "Tenant-3baacfc0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_389317596", + "DeviceId": "039f2165-630c-49e2-8b54-ed3c365828fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444276152", + "DeviceId": "b3ab1080-f511-45c1-88a0-6dfc138d0db6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360145136", + "DeviceId": "bac6ccd3-c644-46ac-ab70-7e2694e3a644", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_846620756", + "DeviceId": "304913f9-ce06-4f95-990b-d6324cede66a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_265822735", + "DeviceId": "d8f77aa3-9eeb-4e20-a9c8-31a374411701", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_771661444", + "DeviceId": "1e04e2e7-59d0-49b6-b1db-36f6bdb63461", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "280a078a-f879-416d-a6c5-4b01a72d6d45", + "TenantName": "Tenant-280a078a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_352678745", + "DeviceId": "9cbdb0bf-5ead-4d94-9e45-f28cf45f3ff8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461174418", + "DeviceId": "87cd5fdf-6186-4057-b6e5-2c2b8f43ff48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930070588", + "DeviceId": "2e672c8a-c521-4c4e-8bee-94c2093db362", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463221218", + "DeviceId": "afb6cf88-8e77-48f4-b5df-0634d42775fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672130324", + "DeviceId": "3b4b9b40-d033-412d-ab17-d67a228b5bae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_849778542", + "DeviceId": "2bc2373d-e405-4e93-ae2b-095345c56655", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d71e903c-5143-4e8c-8a6d-4cd3e411515a", + "TenantName": "Tenant-d71e903c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429349075", + "DeviceId": "7a3c726a-ac70-49d3-89ca-9bf26bc32736", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_109157657", + "DeviceId": "0302c3ab-bcb1-429d-b21e-3c9484fb15b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984598961", + "DeviceId": "9d61a550-c3de-450d-94cc-4dd8e3c5f472", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_887835016", + "DeviceId": "c789b6f4-cce0-4ae3-8c11-7be36ac472a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818550590", + "DeviceId": "a1b18967-9234-45c1-8b17-6a20a4130b9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_282426633", + "DeviceId": "1f19fea4-43e4-40ca-b5fc-3baa57e34565", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad556e63-8b47-4dc2-80d9-a1ddf9a1017c", + "TenantName": "Tenant-ad556e63" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450815897", + "DeviceId": "2c0f89e1-7ae4-4429-813e-4ad41113c1d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193590070", + "DeviceId": "ff14c595-bcfc-4cb5-ab53-5fa15352b286", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951438155", + "DeviceId": "dc8ffffe-9461-4fee-8dd4-96c4a4279123", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453327517", + "DeviceId": "a88c08ba-3cc9-43cd-ab7c-3dcfe0d0757d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939355455", + "DeviceId": "31f04d2c-082e-4481-9881-42dc388b87e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_259506295", + "DeviceId": "bc64e3ef-ced2-4a27-ab38-79b6be66d1dd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8888d026-3c9b-4930-9dbf-7ebe2940950e", + "TenantName": "Tenant-8888d026" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354723235", + "DeviceId": "10e4f197-2dff-4b14-abdd-6dbb392a8f00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169865902", + "DeviceId": "3961071e-2ec3-4b7a-aa77-d833bd09410d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_702951991", + "DeviceId": "4146f41a-6bf6-4eb3-9849-64b78560c2f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672815758", + "DeviceId": "7ca11883-23b4-4028-acc7-57cecdee3ef7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534842788", + "DeviceId": "3f21ab89-f282-4ef3-98b0-6512cbb30c3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_705050380", + "DeviceId": "7725c05b-1d62-4c99-a731-424633f6e41f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad1d2c62-106e-46f9-bed9-c72a522605cf", + "TenantName": "Tenant-ad1d2c62" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_877173163", + "DeviceId": "6c7a7b90-42e1-4515-a949-d98ae351a494", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259392522", + "DeviceId": "ecb17497-4e14-421f-bc18-be78b32b5df4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394816178", + "DeviceId": "7fb3e4d9-9d2a-438d-ab3e-bbac9c122395", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_161214133", + "DeviceId": "656efdff-076b-48de-ae07-40107eadb0f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885571619", + "DeviceId": "a0a59079-3c68-44df-8385-858d788876b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_966911187", + "DeviceId": "b4324609-e456-40d3-9648-e65369834b87", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4c8ef83b-38d7-4c39-ada6-4e6aa488891e", + "TenantName": "Tenant-4c8ef83b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515269148", + "DeviceId": "f010e5ca-8d5b-4903-8091-4b7c936180df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_157474000", + "DeviceId": "931d47a7-4b2d-4fc4-ab2e-01d65c04747c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800141971", + "DeviceId": "8cd69b6f-870a-4981-8ae6-394d91a0689c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_663086696", + "DeviceId": "7e4f70ab-062f-4e0b-b33f-3a239dea7744", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422661299", + "DeviceId": "fad46cfa-57ea-4008-81eb-2df5dfd9fa05", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_225905826", + "DeviceId": "953efa31-0ce4-4df0-8584-8825c43f1df7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ef0796fd-a34d-43f9-abdf-fe86f43967d4", + "TenantName": "Tenant-ef0796fd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_745137973", + "DeviceId": "a760bef2-4002-43ac-88fc-cf33e0975869", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936156391", + "DeviceId": "792bada3-1e71-44ea-890c-47bcd51f0415", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753932947", + "DeviceId": "69eb1bf3-d4ca-4045-b7c3-6f0cc9660dd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432150806", + "DeviceId": "941c3227-ea58-4b5a-9b0c-5a664344b716", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793699885", + "DeviceId": "1de81d17-3fa5-4284-8ed6-347448604021", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_838089623", + "DeviceId": "1596eba2-2bc1-45fb-805c-755686495954", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "95b81360-2f97-4312-9ae7-ddca6ec083e2", + "TenantName": "Tenant-95b81360" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550934164", + "DeviceId": "09b8512b-13aa-490c-ada0-df62fbbd56dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494554513", + "DeviceId": "6898d3c9-9fad-470a-9c74-ba3d75d72f1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642868504", + "DeviceId": "dc26d5e6-ecb6-4dea-a44d-6d5c47d2e4b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631991225", + "DeviceId": "3180a09b-14e8-444d-b178-c750112f3d65", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434209632", + "DeviceId": "f647b0bf-10fa-4847-89c9-2c8c27ba7ab5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_778725166", + "DeviceId": "e59c007c-c32e-46b9-851a-bdf0064ded19", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97b93ce7-26eb-491c-b373-15aa6e7172ab", + "TenantName": "Tenant-97b93ce7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101802899", + "DeviceId": "6d7ece2f-83a3-4574-8d90-c114c01943e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264832206", + "DeviceId": "e74346db-9d8c-4686-8bb5-ed7d0a4ff1bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675243494", + "DeviceId": "15e87738-c5f3-4a34-8f18-397a00da0942", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384521042", + "DeviceId": "75b06f62-98b5-4055-8075-6cbedaa22fd6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319501666", + "DeviceId": "913ed1c2-e6f1-41b1-80f5-dea3f10efd34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_201295855", + "DeviceId": "8dd96942-163d-40cf-8623-8551d7ae98d8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f4345f05-16da-4542-b31c-88d7cc466f0c", + "TenantName": "Tenant-f4345f05" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271182169", + "DeviceId": "b0015d69-cc4d-491a-b612-3ac1a3fda831", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250932067", + "DeviceId": "6b7e09b9-28fc-47b5-9a16-94bd00ff00b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199298263", + "DeviceId": "e33e04b3-1558-408d-bef3-7f07fe4fc180", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836197642", + "DeviceId": "87bc7e8e-f816-4ab7-9de9-0850cc0d2aa1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_598822732", + "DeviceId": "8d8df408-2e5a-4d6c-a6a5-b3dfd2e3b644", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_268000332", + "DeviceId": "875636ac-920e-4a02-87e3-d79fe0caeb18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8b028224-cb6f-41d1-870c-11ddd68ac217", + "TenantName": "Tenant-8b028224" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980470053", + "DeviceId": "e1c7c2f8-1d22-4979-90c1-7aa696e2e475", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740489892", + "DeviceId": "01773083-caf7-4d9a-b1a6-2b8f770f7caa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979337343", + "DeviceId": "f2df2cee-1e61-401c-b5b9-53238abedb46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952527065", + "DeviceId": "52640589-d923-4cdf-b603-cf5543bf843a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703335429", + "DeviceId": "9a186e0a-50e5-48ee-8098-9e0b4675b921", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_722286912", + "DeviceId": "dfdac922-6292-4548-9b5f-cfcd5e6b8372", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1206f98f-21f1-4432-b620-f77208307b0f", + "TenantName": "Tenant-1206f98f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_729295767", + "DeviceId": "4ccb2a29-3f5e-4839-bec8-3f46c63f94d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203297809", + "DeviceId": "33a35bf3-925e-4ddd-b7d4-d54d5c895284", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774615237", + "DeviceId": "9b94ac26-9835-4563-b538-dd1168881032", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702305906", + "DeviceId": "299acba8-d6fd-44ba-9be8-a83a30afe072", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727932414", + "DeviceId": "84af4631-7fe7-4d18-9b19-58b10ddbc00d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_138480878", + "DeviceId": "1329374c-b4f6-4655-8c34-77a47ea6dd88", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "38fcd19d-e937-466d-8d02-900f30967410", + "TenantName": "Tenant-38fcd19d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712494259", + "DeviceId": "acd54246-c84e-485e-91ac-43d61432e7dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939861495", + "DeviceId": "cca58d93-0504-4010-a7cf-018ab3725c51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_197211515", + "DeviceId": "c9c94c4a-cae4-422a-be26-bd8ddec3085d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137034499", + "DeviceId": "5de73cdd-6844-4895-bd09-aceaceceb2c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266771379", + "DeviceId": "15296e2c-ad6f-4f9c-bbc9-888700f3558a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_855891096", + "DeviceId": "1f3cff00-b800-4632-97e6-d7b0383c80d3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f3a091c8-e0e8-4d52-a7dc-fbc309d3ca44", + "TenantName": "Tenant-f3a091c8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_114090663", + "DeviceId": "c29e7fb9-3a56-4a3a-ba97-bfe7188d52cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_440603537", + "DeviceId": "7f18da8c-94fe-46e7-ad30-4bf504ad9842", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403162635", + "DeviceId": "34a6d71d-afd4-40be-b599-ade4eff46682", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241895863", + "DeviceId": "50d2c30a-fc53-4e9a-9f0c-d2a8a3dbee0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613250118", + "DeviceId": "aeddc305-5d76-422f-8b35-87af6aca7b7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_957302809", + "DeviceId": "bacaed37-eec5-4308-a3f7-25ce70c9f946", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cfd771ab-a380-4871-9ae7-d57545c711a5", + "TenantName": "Tenant-cfd771ab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_763615260", + "DeviceId": "bf771e25-d65d-48c8-bab6-1e540595b9e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632953666", + "DeviceId": "a1cb0b29-25eb-40db-8470-23281cb2e5b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904657054", + "DeviceId": "d07465f8-4815-4571-bb50-d62a90fce41a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740495813", + "DeviceId": "e63da265-b463-4c9a-8fd8-d357e56a8404", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626036769", + "DeviceId": "1ada9e3c-64c5-4805-adc1-bac51be19299", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_405691082", + "DeviceId": "17014401-a9c7-4812-8d47-93b7ad2203c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "17337555-e42d-4f32-b437-e278872b383f", + "TenantName": "Tenant-17337555" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904092636", + "DeviceId": "4e72e8b8-e6df-4b46-8840-d1d7111a18ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939560837", + "DeviceId": "7a37920f-0ea2-43cc-9235-0ff10658c869", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423966363", + "DeviceId": "81f0ab0f-755c-4253-b627-5c2269d81c0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_992936521", + "DeviceId": "78a9bc9f-d168-4784-87f1-8310bb926f25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784540156", + "DeviceId": "37ebb532-25ae-4595-89ff-75deb549b6c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_885684064", + "DeviceId": "a31862ce-ebf0-444d-a8be-ca1e7f1cde18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ef89c63-5c97-4a8a-832d-d23bdf0a13e0", + "TenantName": "Tenant-0ef89c63" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303117729", + "DeviceId": "c5132113-f216-4209-8e79-c3dc63e035ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_149673275", + "DeviceId": "1dec0d58-4bc3-4c12-9cca-c5ecb1e8997a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272290602", + "DeviceId": "bb00eccd-e3c4-4fbc-871b-b00784c77204", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_461488604", + "DeviceId": "4b5847f1-1bdc-44d9-b588-316bd13b2902", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552484350", + "DeviceId": "d05315b2-7410-414c-a592-ab258d62f598", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_285281713", + "DeviceId": "d60e81e2-c243-44f1-b3d7-8009c1f3695a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6b3b7399-2205-4056-b9bb-296a881c3a1e", + "TenantName": "Tenant-6b3b7399" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314257010", + "DeviceId": "af8cf8b8-66cb-444c-9abe-1b2f19a38f97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397805985", + "DeviceId": "527bfa8d-2b9d-4963-ae5f-6586083c3417", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345937284", + "DeviceId": "73fd4d29-22c9-4a84-a3fd-efc5a773903a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910963128", + "DeviceId": "0af87eab-0258-4fd4-9f48-d0152e27c590", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_793619780", + "DeviceId": "4cf57ea9-b6ca-4f5d-9e4e-e8fc853867b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_908451850", + "DeviceId": "7b6beaeb-1326-48a9-a864-696dc9c288e7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "eaf1e6e7-6bc6-4647-a07c-4b410f93ba0f", + "TenantName": "Tenant-eaf1e6e7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_936174583", + "DeviceId": "f6b6b126-b6d2-4ae9-ab2e-f77c221247cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_983477747", + "DeviceId": "b2d038de-5091-4ea1-b725-dd4f2a74d028", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_411523799", + "DeviceId": "c435ed64-055c-4ad0-b336-50d479a877a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938073890", + "DeviceId": "147c443b-35a4-422b-bf37-85f33ae60540", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399343052", + "DeviceId": "59a42a77-b766-4b0c-add9-f543977c6b4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_431088853", + "DeviceId": "1ff05771-3ae7-4f19-9a94-de396a21d904", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "55befe80-cad4-46df-8958-79119c8f7230", + "TenantName": "Tenant-55befe80" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210531294", + "DeviceId": "e758af5c-e563-4f6c-8445-6f94396758bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_725457409", + "DeviceId": "da071338-decf-49a2-9a24-2da1570fb545", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139417281", + "DeviceId": "f8a0f8e3-9950-4b10-baf3-386661db176f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348522949", + "DeviceId": "93de146b-3725-447d-8c52-498a7fbcbf33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137464436", + "DeviceId": "fb593919-f64f-4adf-b853-928889395f27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_627528944", + "DeviceId": "43ab8d15-0ffb-4828-8217-4aae271395f2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7fc16d04-246f-48c2-8beb-aafa221085e6", + "TenantName": "Tenant-7fc16d04" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_132139107", + "DeviceId": "4a8bf623-034a-4ddf-858d-53d70df3eb25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708244872", + "DeviceId": "e748796e-0a3f-498c-8303-1d480982977a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842362284", + "DeviceId": "95934854-c859-4f39-a020-817638c0352a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_352224619", + "DeviceId": "88903545-a4e7-4cdc-9d4d-8e310ad14dcc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866531032", + "DeviceId": "79c8b7ed-e465-45bb-8978-34d35fd15dcf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_724533352", + "DeviceId": "9908feeb-20de-42c0-93ac-a6c281b7c378", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8a26a443-8d8b-462d-97ae-68474ffd76b3", + "TenantName": "Tenant-8a26a443" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_401789429", + "DeviceId": "c4904d89-53c6-4738-9287-74979e8d95a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_662675754", + "DeviceId": "f6b4a7cd-fd81-48f3-873e-9be13f3c2968", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710329565", + "DeviceId": "5ce584f8-3541-46ea-a6ec-c9874f1ed1f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_822807360", + "DeviceId": "591cb2a8-5233-48d4-93f0-a0db7ea7d39d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930775243", + "DeviceId": "4473e47a-36d1-4e30-89bb-ded3f61aebef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_205748668", + "DeviceId": "6ae11374-ce81-4687-b119-5636428de317", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cea85498-e4dd-4d96-9609-6796cd9e71cc", + "TenantName": "Tenant-cea85498" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972102605", + "DeviceId": "0c27ca16-b904-484a-9bc8-1ff03d3e5598", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227069085", + "DeviceId": "565c2e47-3ba2-4090-9fd2-fd7465338988", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_322249519", + "DeviceId": "b1b908b0-0168-4376-9437-ff492d0dc472", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_435964655", + "DeviceId": "68158749-d465-4e99-b419-ec2480f75b36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757870422", + "DeviceId": "c59dfd2e-70c0-4c16-aebf-88103571babb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_810264200", + "DeviceId": "d691373b-c57c-4ffb-8511-24d6970a94d1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e065347e-acf0-4ac0-adfa-a7286ad98dc1", + "TenantName": "Tenant-e065347e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_935761524", + "DeviceId": "1e21b717-7daf-4216-a3ac-56f485b74029", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601229414", + "DeviceId": "d0b2b653-ddee-4630-aa9d-b9c824960bed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275222237", + "DeviceId": "ea6dc5d2-f6e1-4f80-a5ef-8d26cad77758", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_519063979", + "DeviceId": "e1f1d3f1-e729-4f36-b318-f7334ccf21f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369601271", + "DeviceId": "c5f15548-8fd3-4af2-a4ce-2003e73ecb8e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_356543383", + "DeviceId": "5a8d7e6c-17df-44ea-ba3f-fff510a54f16", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8b9e4a3b-3d72-4baa-8126-54e8f5554570", + "TenantName": "Tenant-8b9e4a3b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839513388", + "DeviceId": "c1f40f7a-3f83-4ec9-af5f-ccabb6db79b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166044136", + "DeviceId": "b34ced70-8559-40ea-af9c-d6e7831b8e07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564893065", + "DeviceId": "f4bdbdc8-8e61-4f2f-9582-7146b1de4b1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_144117865", + "DeviceId": "707f8827-3d84-4420-b463-c35c444d84d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817232287", + "DeviceId": "7af4c05c-830e-417c-835b-9bc0940c73fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_613345438", + "DeviceId": "80c41e41-b7e8-4269-bd0c-8013aeaa2383", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "390bc3d9-bf4c-49ee-904d-17a576ce36d3", + "TenantName": "Tenant-390bc3d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145306031", + "DeviceId": "9ae618ed-e0d4-4385-8e20-41fcc572862b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498142790", + "DeviceId": "269ff6be-80df-4e35-8789-010e9f1e6067", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_481742385", + "DeviceId": "975d7d1c-7555-4459-9473-b628aca5125a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378130437", + "DeviceId": "27528bd2-76c1-44bd-8619-fea0e326ad3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_211845379", + "DeviceId": "ef9c72c4-e483-42e4-8e5e-9689949ed736", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_405615933", + "DeviceId": "7125254b-1b54-4f04-8d75-5f83f7b437ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4a61fc6c-27e6-4ffc-b207-d1a6ddbc7883", + "TenantName": "Tenant-4a61fc6c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545016548", + "DeviceId": "80c39acb-ced0-4bde-9dd8-f6d9127d9e49", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751606050", + "DeviceId": "2c9a92e9-8179-4a7c-9e88-5fe8f2362a93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_862555540", + "DeviceId": "9aa64615-be15-4041-9389-d4e840466b51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152638785", + "DeviceId": "5f92cbe3-d8a3-42de-a65b-cae3f3e191bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369769067", + "DeviceId": "4d20f48b-b696-4629-adb0-dbce06f769e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_701869026", + "DeviceId": "a610f44b-83c4-4efe-be98-b813e2c58cd8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ce4a9fe5-efc0-48b3-b744-fa51a77ed7dc", + "TenantName": "Tenant-ce4a9fe5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_887521149", + "DeviceId": "ede9e633-fd92-4f00-944d-5e8de1608a2e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761513937", + "DeviceId": "532afb81-ecd8-4087-bf33-b1a73eff5c48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580369978", + "DeviceId": "14951cc0-2a03-498e-bac1-2df15f4b074f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875979395", + "DeviceId": "3ff2becc-99ce-41dc-8f39-c62ca0619f54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_829104435", + "DeviceId": "8b6fcbe2-2d47-4370-85ed-87ef4d761b3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_590729387", + "DeviceId": "9035676d-9538-4d9c-b618-5aaffec748b7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "af46ba45-a31d-4448-8a37-9803d2cb6cca", + "TenantName": "Tenant-af46ba45" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970270212", + "DeviceId": "f1648011-6182-4407-abe8-e7fc2d696c1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572635979", + "DeviceId": "9c3f87ce-06fc-42a8-b207-977c933d17b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570704351", + "DeviceId": "4dd4c279-2d1a-4fda-b154-ddf915b7b9e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440252438", + "DeviceId": "59c2b6b0-0ce2-416d-8c24-de8faf15b131", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_276040289", + "DeviceId": "ec79d092-43c6-432f-8d7d-4f5955920c6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_358527013", + "DeviceId": "11277dfe-dfdf-4eae-babd-562846a1f9ac", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1a18b1f2-2f78-4c4d-8fee-ff5f760442cc", + "TenantName": "Tenant-1a18b1f2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439371610", + "DeviceId": "de71ec5f-764a-4d16-a21b-25115897c978", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505476707", + "DeviceId": "ea8fd1cb-9f90-42d1-b6fd-68757e92a267", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345910603", + "DeviceId": "932c048a-de34-47ba-8ab0-f21a504a1fc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_684621010", + "DeviceId": "c182e9f5-5ef0-4448-b899-628c57bbc332", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_888237456", + "DeviceId": "782d3d05-43ec-4418-8644-17a8c56f836a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_360970244", + "DeviceId": "4383478b-e85c-4b8a-8cf1-826e73778579", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2dd2d716-44ee-43f3-979c-7f2f44251168", + "TenantName": "Tenant-2dd2d716" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_595555445", + "DeviceId": "acdfcf54-b5e7-46a2-b7c6-e2b947225150", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_240308292", + "DeviceId": "e791ed5c-1b91-4f8e-9d91-5e6de817dfe8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394111382", + "DeviceId": "ee93ff78-e71b-4b0e-814f-cf392a14b2eb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857838713", + "DeviceId": "cf635fe8-dc67-4717-9705-3227d10496f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314930691", + "DeviceId": "493ab350-1a4b-4b47-b4f6-066b1268cbd3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_894274856", + "DeviceId": "e8ea50af-b7f4-4c17-87fa-f95c3c1dae46", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "99c79022-5e8f-45b0-ae9a-2a098acd5293", + "TenantName": "Tenant-99c79022" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144801007", + "DeviceId": "dc176967-2644-4806-80ec-2fe189b06272", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617712297", + "DeviceId": "94ca7954-3ca1-4977-8430-a41f718c092d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_214327971", + "DeviceId": "6f457842-7c18-4cac-ab83-30bde821bad4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599431451", + "DeviceId": "f5320a04-d2b3-4af4-9cf0-8fa7361743dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255145517", + "DeviceId": "1dbb69c5-d85b-4d41-8ec6-95564d6c1641", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_607097294", + "DeviceId": "f6f4af9a-971e-40b3-9245-c64d79164846", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c36ad663-7eb7-4ed6-81d9-5e45d9dd4bc3", + "TenantName": "Tenant-c36ad663" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867968807", + "DeviceId": "9c189cd2-649f-4fd8-9d40-b5c53e42e020", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301813723", + "DeviceId": "0a72dbe3-c7e1-4893-828d-30f7ced03708", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461102512", + "DeviceId": "0298b9a9-1936-4b02-83b6-a02b4ca5bfcc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836792201", + "DeviceId": "59d72d4c-f622-4847-bd21-5321908f71b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432231194", + "DeviceId": "a6ef46b4-5cda-4bb5-bb5b-c19bd71c1688", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160524985", + "DeviceId": "5b0893ab-18f7-400f-9f16-9fb9e6c6d6ba", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9c2be61e-b550-4d88-bb04-53261f24e432", + "TenantName": "Tenant-9c2be61e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559314879", + "DeviceId": "ae2bf464-854d-44e4-a7ba-e53730fe1ec0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605331522", + "DeviceId": "a2a75886-dafc-4f50-b6b7-3c383758b2e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_711012139", + "DeviceId": "ed0dd325-9db6-4c9c-914c-7e7047d2d9e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879644522", + "DeviceId": "697d4b5d-4bd4-486f-a525-f0cf20eedcad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131359915", + "DeviceId": "beb9dc01-529e-4971-9393-d5dd6d046b19", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_614578152", + "DeviceId": "08f5cd27-6f21-42e2-81ee-bb49a76beda6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "360503cf-b465-4177-a813-87791fd14423", + "TenantName": "Tenant-360503cf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410379503", + "DeviceId": "ca0cafee-7f5b-453c-b44f-ad92eb487fb4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_486832322", + "DeviceId": "34216695-5b29-4511-8d9e-2af9e721e56d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703179905", + "DeviceId": "15067e48-6ffa-44d1-bffe-87109ff89ac3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196337673", + "DeviceId": "b504ca51-2761-4972-9f8c-bc638aa0e6ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667078180", + "DeviceId": "3db85151-8c14-432f-b710-710c7f5f284a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_160518815", + "DeviceId": "fe2a001f-5355-46eb-9b10-fdfc7332d172", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "29a653b5-7283-4f4d-a5df-62187ab9a733", + "TenantName": "Tenant-29a653b5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184492751", + "DeviceId": "3815bb4f-7503-4b02-9c36-109e891ac08a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_357907390", + "DeviceId": "8883ea8d-3faa-4e9e-a82b-3e9830cbee6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_432579380", + "DeviceId": "dd13b2ce-a35f-4720-9a08-dd3596e20f38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_847815774", + "DeviceId": "b52ea8cb-804e-474a-9ac3-218193313ba0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_287286776", + "DeviceId": "7f95669a-3833-49c2-b408-26c3ae210dec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_360897713", + "DeviceId": "bb073b7a-f7d7-4ec1-a91c-74e77af8fe44", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a94a6668-d8f6-4f06-bae4-2bf34f6977ca", + "TenantName": "Tenant-a94a6668" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858790063", + "DeviceId": "e624ccf5-83ab-48cf-ad84-119b75a78551", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495171361", + "DeviceId": "b17d80f1-2701-4100-a46d-d83d528d9a03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261649362", + "DeviceId": "5c4b1552-9f84-4ddd-984e-5b255434985b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_563919776", + "DeviceId": "29d91d94-9f34-45bf-b701-44d5d9c3691b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_521327366", + "DeviceId": "c4c58cea-ff32-4606-b3b7-2caac91a2227", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_587422140", + "DeviceId": "1bc6471e-7489-456f-932a-1ba73f64cc48", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3c6b2a5a-63be-4e7d-bbfd-4d0a35459c42", + "TenantName": "Tenant-3c6b2a5a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265919314", + "DeviceId": "0cf77da6-8c20-452c-9e79-b70f949728b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_181062805", + "DeviceId": "ffb8cf3f-81d1-4e17-81c0-82fbb6c3ead9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810391035", + "DeviceId": "50589b8e-463e-46a5-9305-cee85fed378d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595713498", + "DeviceId": "eb8107fb-2c56-4b8d-b36f-4c153bf8bbbe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_271742258", + "DeviceId": "ef5cfe47-6519-4afd-b349-66dfaf110387", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_192484900", + "DeviceId": "5d55d14d-6e63-4fb1-8067-b81f18d3eaf5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b4d8961b-a0ce-4abe-a384-9572a452a657", + "TenantName": "Tenant-b4d8961b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788345076", + "DeviceId": "e7465b1f-de7b-4604-b249-2f4505928141", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_794794005", + "DeviceId": "3608b409-6ef3-4e3a-87be-2e2c009ca750", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_528770949", + "DeviceId": "928df982-a7b1-40b4-9ae6-66a09154f602", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477826449", + "DeviceId": "865f8de1-4c7f-47ca-95f7-57c714ed1749", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323788553", + "DeviceId": "450a5e7f-ece7-4cb5-852a-b4d5f9f9783d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_995526594", + "DeviceId": "8d6945b5-00af-4a08-b022-0b6d309e4d77", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2aedb500-b70d-499e-83ee-5286001a142c", + "TenantName": "Tenant-2aedb500" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_258281066", + "DeviceId": "26e7f7ba-153f-4b76-bdf5-2fb9e5bb0bae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_406714156", + "DeviceId": "5366aa95-cc09-4728-8498-266305c9883f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718647836", + "DeviceId": "7b73bfbc-6824-4bcd-a8bf-072034e7f2b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636275625", + "DeviceId": "88d9c552-e90a-40c8-8467-9058a5d9a61c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865481706", + "DeviceId": "1a61566c-6032-4c99-ba71-fe7b9231acf7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_714712027", + "DeviceId": "8d27d357-e86e-41c8-89c5-8cb7cb78da43", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "65d2af99-a00c-4172-a003-47f6217f40af", + "TenantName": "Tenant-65d2af99" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_524422801", + "DeviceId": "25e5c00f-a126-43e8-866c-3600bb4ab667", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757152053", + "DeviceId": "e9ecb774-6d9e-4642-acf2-f8afcafad3dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113944748", + "DeviceId": "b197ca0c-25c1-48ac-aa65-a1169617928f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526189026", + "DeviceId": "b86b99c4-e2f4-40af-9cb6-dae740ce6391", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_640099640", + "DeviceId": "bf0e1c2b-7f86-40d3-b3de-a68234a6c53a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_515238037", + "DeviceId": "d15ae21f-b172-40e3-a94e-972454406209", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c7ea451f-48ff-4248-bec5-ab1876de5bbd", + "TenantName": "Tenant-c7ea451f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366293985", + "DeviceId": "7a63bfc0-4500-48c0-8f0a-b5a7dbacbcf3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_427339729", + "DeviceId": "e4f0c37f-6e8d-4403-9f05-c6b10f5e19f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753096624", + "DeviceId": "9f8649c1-e8ff-4b2d-a4ef-7fcbe2554497", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721167122", + "DeviceId": "15ec0e1e-cc63-411f-b7e3-90b13659d80e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969903521", + "DeviceId": "84fd28df-e1de-4ee7-aca0-abfbb7a6a97f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_333166868", + "DeviceId": "5e578404-2031-4794-ad52-c020ec6ce6a5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "04a622d9-8f4e-48c0-b2df-dc51eaf630fa", + "TenantName": "Tenant-04a622d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281323147", + "DeviceId": "dca6f810-70b8-4d16-8f7e-3f9104c45144", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_127679050", + "DeviceId": "a9807367-1630-47a2-b2d6-763881e35c6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333480977", + "DeviceId": "1c4826f6-730f-4a2f-bfb9-31f79b6dbc1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284522949", + "DeviceId": "9564f96c-93f5-4f94-a341-268cb9fd531d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_845828014", + "DeviceId": "aebbe82b-fad1-425f-9444-b9ec038f89ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_326437568", + "DeviceId": "b091c3b3-eec8-423e-a244-ae73136b37db", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "43f324d1-d399-4c4c-9d45-ff269a97d59c", + "TenantName": "Tenant-43f324d1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933884630", + "DeviceId": "c14ac9b0-1928-44a0-b82f-8b7dba3ffde0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_945048657", + "DeviceId": "113ec096-44ac-48b1-bce4-d7f630b5f165", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164359772", + "DeviceId": "2825218c-0d4a-44cd-a420-f7c331ee8e46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_701010563", + "DeviceId": "f9520ca8-1ce3-43bf-b302-e0cfb2bde1b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_745086705", + "DeviceId": "40ea2375-c97a-4189-bc69-e674bbc3eef0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_795485671", + "DeviceId": "e2c4f71f-ad3b-45e4-bd96-22673526c389", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0407ea2-8259-4ce0-8f19-1e4176b2ad6c", + "TenantName": "Tenant-b0407ea2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_598115099", + "DeviceId": "4f800785-cbc4-418e-9f27-daa63840ece1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_419763120", + "DeviceId": "e318d43a-95ad-4521-82f5-4d7be88b76e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509874440", + "DeviceId": "d47680f2-eb6e-428e-9dbb-a2daf4b658c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258088512", + "DeviceId": "07b70ffb-ac8b-4bc3-8152-e0899c823189", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_114261202", + "DeviceId": "c485f814-9b8c-443f-a618-1d562ffea35c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_510266288", + "DeviceId": "c6850b2e-e49e-47b1-af65-31cad6ae8f1a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf49fbdf-c9c3-4156-b657-9d68622b5d8e", + "TenantName": "Tenant-cf49fbdf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_771536024", + "DeviceId": "8a4d3bc6-8223-49a4-8aea-e9510505cf91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929575354", + "DeviceId": "34d61139-f7ae-4f25-b196-44873a8342e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958114410", + "DeviceId": "4d9940d4-5131-481c-8df4-5f945ee34bde", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_959597396", + "DeviceId": "19e38556-a7e3-49f9-8c3e-3723d57bd35f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_840851264", + "DeviceId": "7c2d0924-e140-472a-9e74-29f19462f465", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_573289646", + "DeviceId": "3f364744-0ee4-40b2-b04c-78a8abaa9f36", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1deeb4ba-042a-4533-9b89-fa02fe22bd34", + "TenantName": "Tenant-1deeb4ba" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525680128", + "DeviceId": "6f7d9684-7bb5-40f3-abce-6e4110fa696f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896189997", + "DeviceId": "176a0b45-4afa-4d68-b1d6-00fbb1447c13", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330131939", + "DeviceId": "1ba00990-f96d-4a1a-8573-3f467836ddb7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_689459599", + "DeviceId": "59f470bd-269b-4594-ac13-6b6565eb1516", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736955733", + "DeviceId": "ecfed6b2-9f13-473d-9f3f-b3fb49fa81a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_296759895", + "DeviceId": "13b0ec0f-e727-4e56-8892-f0d7b41b8241", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ff651a73-fd48-472a-be9d-b6371c7ab8e3", + "TenantName": "Tenant-ff651a73" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373629421", + "DeviceId": "a41e4fe3-b8ff-4f45-9d03-9026cb43cf1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709595761", + "DeviceId": "b5c0a1c6-f7ca-4112-947c-b3946fab7ff3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853750816", + "DeviceId": "c3edc4a0-7595-4a65-afc0-1acd7e9b5585", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_602915517", + "DeviceId": "45e87adb-a869-4e80-a78a-4145a6c6f2e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972904406", + "DeviceId": "dd61711e-753b-431f-8cda-875db8eb0d85", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_983380945", + "DeviceId": "aafbd630-c210-48c9-b267-80bcd58823a3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9cdb2aef-64ed-47b0-bab1-12a782f170a1", + "TenantName": "Tenant-9cdb2aef" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_326640358", + "DeviceId": "a47bf5af-23d8-4860-8086-3b1d97a987ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833542630", + "DeviceId": "c59f0c6c-f439-4023-b2b9-d4d4a0563307", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565715419", + "DeviceId": "4b2e4d90-8258-4e7b-b54c-a04b54657b56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_215960469", + "DeviceId": "78424c85-d7b7-4817-916c-d08601fbd5ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702951183", + "DeviceId": "8778c753-8924-400b-a5ae-815fd21bee41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_737018855", + "DeviceId": "b7a3e250-f1b5-4ccd-94d2-40c7093efb5b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f80d9711-9ee0-4a76-8667-6b16a446e4dc", + "TenantName": "Tenant-f80d9711" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659336975", + "DeviceId": "c1898a0d-4f78-4c6e-903b-9e4e6da1c695", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498758386", + "DeviceId": "3a97ccdc-94ad-4c48-9e78-5ac038b50fb0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896681968", + "DeviceId": "0fdc72c3-937d-4041-a56e-91ab18390c97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760272870", + "DeviceId": "9297f477-2f29-4f5d-8a7c-208b55be4885", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_719824568", + "DeviceId": "24264435-9f41-40b1-96bd-a405d34bec1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_228670523", + "DeviceId": "1f1e30a8-c4a7-49f0-8686-c2ff8905ad9e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1b1f0734-685d-4a02-8587-f6d8cd5cdd93", + "TenantName": "Tenant-1b1f0734" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_552266751", + "DeviceId": "ba2bdfc5-9b4c-43f7-ab13-cb7b32786a10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126980827", + "DeviceId": "d0a90e2a-4d12-4d8e-96a0-207275f3dedd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866283467", + "DeviceId": "fb87871b-eeee-4bcf-bdea-7e734c200858", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677538459", + "DeviceId": "7496ec59-622d-4efe-9ac5-d165558f2f83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_878791768", + "DeviceId": "a9b04189-b29f-4d9a-8c2a-0d81081d2ac7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_202161917", + "DeviceId": "2da8e92c-b073-4c8f-84de-541e5d2f0580", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ac75181c-9c08-4db4-9ae5-b6373ae8b188", + "TenantName": "Tenant-ac75181c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724791418", + "DeviceId": "9af5d043-8dd9-4778-b3bb-7582c0286346", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_567614773", + "DeviceId": "cfe29cce-3142-4215-9e69-ee45ae55dac9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_605194208", + "DeviceId": "f1c289d2-b10f-4b5c-8baf-7a9bac8c63bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539882307", + "DeviceId": "5dafd159-d0d0-439a-ac56-ba94e39f5284", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509761715", + "DeviceId": "e6d401c1-17a8-46a1-b08c-a066228f0e89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_990088602", + "DeviceId": "9af7dda4-9fa8-4272-9be1-c733da9bd744", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "97cc5e72-df95-44c6-a4cf-00a0849c1a5c", + "TenantName": "Tenant-97cc5e72" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356250939", + "DeviceId": "2c81db52-703f-490c-8d36-1f9bb9fbc0c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407122861", + "DeviceId": "9f4efd9f-2b7f-443b-b661-00c83b5a1f1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283343719", + "DeviceId": "15448595-66a8-4b47-8416-2882b77dc574", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_773496960", + "DeviceId": "feaf90bd-3ebe-451f-b3e5-0d828c0af231", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_443238264", + "DeviceId": "0db24b0e-7402-43a8-9019-d113b6cb50c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_216969247", + "DeviceId": "6f5fd584-7e04-4943-93fb-ef58468b78e0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e3e17b64-6cec-4c67-91b9-a7f8e59a2795", + "TenantName": "Tenant-e3e17b64" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212801169", + "DeviceId": "3298eb8a-03af-47c2-8ce1-bbfe333ca85e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_778548231", + "DeviceId": "fb7c2d20-b8b8-45db-a531-9b814220751b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_223721967", + "DeviceId": "eb650c83-6295-412c-a392-6efec5c0899a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283976676", + "DeviceId": "b2c87cf4-6163-4f8f-8732-97432541f848", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760942550", + "DeviceId": "fa4545cc-cae9-4810-92ed-a519ffdc3f2a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_947043180", + "DeviceId": "4398d409-1477-4e27-aa91-60ada55108e0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0ce4ce2a-3e22-48bf-b0fb-71129b165f5c", + "TenantName": "Tenant-0ce4ce2a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475078228", + "DeviceId": "6fce4eb5-9e77-48bd-a484-623fa2ae6a55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210954532", + "DeviceId": "2343e845-ae92-4ef9-8206-b8043b7692bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_378518939", + "DeviceId": "f32868c8-7a72-4b96-8ebc-c08de0081193", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_294527908", + "DeviceId": "8e49f0b6-0ba9-4617-850c-7ee29dbe40fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858124523", + "DeviceId": "5b285897-08f9-4feb-95b1-744969fc6536", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_109753997", + "DeviceId": "c519a0ef-0516-4cd7-87af-96af4f46a5b8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05d40192-10c4-4d73-b2e9-250ad6e19cfd", + "TenantName": "Tenant-05d40192" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600741749", + "DeviceId": "e8bab61a-bc8f-4d8f-893e-f9ef85ebe3b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101212751", + "DeviceId": "29db050c-14ef-48f5-9708-fd2b3b5ae103", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975159355", + "DeviceId": "fbff58c1-85d3-4de0-9f7d-ced29f649158", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_957775713", + "DeviceId": "ead9157d-993a-4077-a4c2-b2c9be028624", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_183797404", + "DeviceId": "3dbabc05-df67-4b80-84cf-c7fbc2048bdf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_528186729", + "DeviceId": "5640c1db-73a4-462f-96cf-0729858a73e7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b09ec2d-f917-45dc-8cfb-cba07671e77a", + "TenantName": "Tenant-2b09ec2d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644779563", + "DeviceId": "b7112e31-8b7f-4298-a957-3f2a2bf83b75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_816283060", + "DeviceId": "74b495cb-898b-4617-98d9-154f406f5f45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372230746", + "DeviceId": "1b0ed5db-88da-496c-ad53-cad98c2b3350", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_474108295", + "DeviceId": "5194f712-38f9-4149-b34f-1875c81f0cdc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_191176871", + "DeviceId": "722d74d5-df9e-4047-95e5-ed4b21c6d0d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_543732748", + "DeviceId": "f265e9b4-043d-4774-b09a-352fd0e614f2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1ac6af7a-96df-4fa1-8654-c7f3884021ba", + "TenantName": "Tenant-1ac6af7a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433797284", + "DeviceId": "81e431b7-a28b-4b86-b533-3ac7d1619421", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_529852734", + "DeviceId": "d8034d74-e5e0-468b-8fc1-b7ce508b2a8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_522025117", + "DeviceId": "305a3a36-2934-475d-b5e5-935f78a16c69", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347827776", + "DeviceId": "099b74b7-496d-4d22-af53-65d8ff6b9722", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999809181", + "DeviceId": "655bbc21-1f2b-4ff1-9bb1-b1184e43e882", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_719834278", + "DeviceId": "7bc1133f-77de-4075-b7bc-71b0b18be4e9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f7664e56-275c-45c6-8e26-798f76e4c2d1", + "TenantName": "Tenant-f7664e56" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_656537216", + "DeviceId": "83264a5c-5fd7-455b-880c-2778b2036ef2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290459521", + "DeviceId": "a896d4dd-eeed-40a2-b30c-84257b1d41b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_453626470", + "DeviceId": "88d3e791-2caa-47b7-bae0-dedaeea1f23d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509186128", + "DeviceId": "ee1edec0-483b-4d8e-bfda-b32f4c18efec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306458086", + "DeviceId": "82da5bf8-9d46-4da9-8217-c04a2e5e8f5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_519782338", + "DeviceId": "95e03067-7c8f-4c4c-a0b0-9c3f8ccd09bf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "71c114d0-362b-46e1-9985-69ce42ab30e4", + "TenantName": "Tenant-71c114d0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_615212071", + "DeviceId": "2c22529b-f47d-4e2a-ad0a-4025938fa452", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_726615470", + "DeviceId": "e6812295-de98-4221-aefe-654b70ca10e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701695442", + "DeviceId": "6c4dcda1-bd52-47e0-bdb3-e3eb64b8417c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130420549", + "DeviceId": "58ce308b-27db-4b2b-8c80-e9c4b87f17de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476575535", + "DeviceId": "99b8ef52-3f0f-4164-8e76-15eecc11c358", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_819070779", + "DeviceId": "c3febdf0-e563-4435-958c-9cbbb64a2eef", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a76f55fa-dd8d-4143-baab-cdfb9255169c", + "TenantName": "Tenant-a76f55fa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_138612472", + "DeviceId": "d8619ad1-4bf6-48c7-84c1-d5b60af2bdf2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414535312", + "DeviceId": "38156fd7-c776-4389-96d8-28b3b9513c42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_737634056", + "DeviceId": "43d1cbb8-7cab-459c-88d4-12e7c585e81d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_624893570", + "DeviceId": "96c2fdf0-480e-4445-a7a6-6daa780fbabd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711962195", + "DeviceId": "4032e634-a70f-43f5-85bb-e579192d3f3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_843068361", + "DeviceId": "cd2a3d07-c00d-46ee-9b7b-5ea1856f4fce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "680e2bae-0be9-4600-8848-d6e9c5c264fd", + "TenantName": "Tenant-680e2bae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_999195301", + "DeviceId": "88c5f99d-5456-44f8-a8e4-9678c4aa815d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_326848471", + "DeviceId": "5b394a7c-c35b-4437-bfdf-48240ed831d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_594927395", + "DeviceId": "dc1ec8c0-21c5-47ea-8ac4-d88f09073fec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837070902", + "DeviceId": "d657c814-1e52-422b-9df0-aa1e9e7989a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374644232", + "DeviceId": "0e510f40-2495-4fce-a8ed-605a7f513b46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_873566136", + "DeviceId": "d474bf5e-3bf4-46a6-ae85-074d89fd1d98", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b0a3383c-f336-4dd1-a4e9-1d9b103f388c", + "TenantName": "Tenant-b0a3383c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584233203", + "DeviceId": "95b0a74c-29c9-4dbd-9002-e9c97df49dab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_291543778", + "DeviceId": "70214f4f-4108-495a-8188-a5763c8240e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399205048", + "DeviceId": "f555ff0a-29fc-48fc-8ba9-f11d618ed94f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_388208209", + "DeviceId": "38303f80-8bc7-4bd8-8c74-e5f215f8132c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_689429490", + "DeviceId": "cebc19d8-e5f7-4821-b972-71d33fecb53c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_849367700", + "DeviceId": "2e33b6ff-a7dd-4928-a994-9fc1c8f2eaa4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "63e9e50f-bd7d-4029-b640-9f935441e972", + "TenantName": "Tenant-63e9e50f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875211895", + "DeviceId": "d186fc54-f3a3-47b7-ae36-ac17637d29c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931540092", + "DeviceId": "26453247-54a6-4762-a222-4fce16b5bfb3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_214007608", + "DeviceId": "e0145f07-bc20-4c9e-a614-a23b21701507", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873295759", + "DeviceId": "afbbede7-85f0-4851-a9c7-470b79a050fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899362483", + "DeviceId": "c3f1d6ce-068a-4704-a597-723a505c3f7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_551645588", + "DeviceId": "18f6ec2f-fa8c-4c35-bed0-4c5130ee03c6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b6c15bf2-ddba-4dd9-be4d-787f5ed60c49", + "TenantName": "Tenant-b6c15bf2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341193842", + "DeviceId": "395ade79-a1c9-4b62-a307-b47ad0fb4d87", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_321774307", + "DeviceId": "f95e857b-0533-4bd2-84b1-134e2057608e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274541261", + "DeviceId": "8866cc53-a103-4c9d-be1c-ffcde6452aae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770408314", + "DeviceId": "8ce3b904-54ff-4399-964b-a6b017448524", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862599207", + "DeviceId": "c930b80c-c005-4db2-b53b-7987dfff8bc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_982332368", + "DeviceId": "c0f856db-1412-4b0b-83e8-895129f1aad3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "afa32bd9-25fc-4fc1-909e-8ba4ac514dab", + "TenantName": "Tenant-afa32bd9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_296805051", + "DeviceId": "77698522-a08f-48e5-a7b0-a3408e7d758e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824831006", + "DeviceId": "86ef3e36-aa16-473a-a6c5-b5d009a7d003", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_846347093", + "DeviceId": "b87dca72-388f-4d0f-a367-eaf8be520b30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_607680634", + "DeviceId": "d8ef2f9e-d670-4e72-8857-6dcadae08d88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_355336989", + "DeviceId": "8966957f-486b-42bd-8eae-628f1a87700b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_526553079", + "DeviceId": "d1be42a0-692a-46d0-ad5e-2d43035240c4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fc67f49a-c155-4046-b4a0-5ef5dd0acae0", + "TenantName": "Tenant-fc67f49a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210350031", + "DeviceId": "70ef9d77-40f0-4ae0-ba0a-57dd93571a15", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_874280159", + "DeviceId": "0c52c8e9-ba84-4cce-a887-f84192e52e50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_995468684", + "DeviceId": "5e602992-ba0c-4c7b-b1d7-d64aecc78906", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_998440957", + "DeviceId": "d736db9d-6c22-434b-9806-de898fdc8661", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_998541996", + "DeviceId": "4df9c913-083d-4a96-96de-af3f064a77b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_897888496", + "DeviceId": "0fb001e7-5bb6-4358-8d12-4d8daccc01d1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bf5be3d9-b2ec-4716-bd30-4c469b48271f", + "TenantName": "Tenant-bf5be3d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414726148", + "DeviceId": "037e13b5-a60d-4dc8-ba53-f7907046cba9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141308836", + "DeviceId": "06281b91-7b81-4f12-bb79-1794e9db8514", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_385554156", + "DeviceId": "f1f38928-9795-4029-ba3f-28516dce99a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295438440", + "DeviceId": "caf2b76d-551b-4c28-9b65-f3d78941748f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_178454813", + "DeviceId": "62f65fad-d18d-4d99-b9b8-1b7739114e9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_727603127", + "DeviceId": "efd8abbc-6b6e-49aa-8778-c809461f94df", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ece58919-14e8-4e8d-b3d6-e1e8ac65648b", + "TenantName": "Tenant-ece58919" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318378113", + "DeviceId": "9ae50e09-7d67-4b3f-b0b9-046f68642a75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317129417", + "DeviceId": "939c99dc-162b-464f-aebe-8dfe828abc11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827411943", + "DeviceId": "d2f55261-b749-4cb4-96d5-1f214745f88b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837438139", + "DeviceId": "cd2d6353-623f-43a6-9255-2b9cd98e5bb8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_668440131", + "DeviceId": "9e1e1908-445b-4889-9676-1b81124e2730", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_930313670", + "DeviceId": "6512a08b-9972-4376-8de2-939c0cc49a65", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bea40a51-0532-4d8a-bde3-17b308d92e08", + "TenantName": "Tenant-bea40a51" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_512639850", + "DeviceId": "7052170b-8179-4623-a1a5-4e257ff008c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350417747", + "DeviceId": "9ddbf12c-7385-4e46-826b-568d20f1e33d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394221012", + "DeviceId": "b6ea2fe4-d880-483a-9eff-1c888daf0be7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677271199", + "DeviceId": "855293c0-6c08-4ced-8693-9e59196f5cb2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_389479015", + "DeviceId": "b2c85d37-3ebb-4cec-be39-9602dadefc16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_242310828", + "DeviceId": "710cafec-ea39-4957-ae2d-826cb19a9cc1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "209c89bc-7d4a-4ba9-a241-fb13f7c9f2fe", + "TenantName": "Tenant-209c89bc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916986958", + "DeviceId": "ef8af4b5-8b3b-47b5-a3ba-d7c6c58f80da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234162999", + "DeviceId": "b21599ed-8ded-4632-9d04-a1ec9b914986", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244899993", + "DeviceId": "15906cb3-be21-487c-84b9-a58abfe83e41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_440170062", + "DeviceId": "443dea05-1e57-4451-8e95-d889817b3a55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944941584", + "DeviceId": "0d8cca4b-6378-4418-92a9-466f844a3d99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_492623686", + "DeviceId": "5172990d-162a-4de5-821d-7102d0359b12", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fe80b6b6-36ab-42b4-ac72-7b4b613f2cab", + "TenantName": "Tenant-fe80b6b6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_922287974", + "DeviceId": "a0d8092b-8ca8-4ce1-9037-0b00a297fc65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839381650", + "DeviceId": "a190c649-9ccf-4efd-a88a-c6096dbe8a38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_554485758", + "DeviceId": "81d9a5c9-e2ea-42ba-8a79-2b0764bd5741", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727950041", + "DeviceId": "e87249bc-da29-40d8-a29a-36abb1ecad09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766713578", + "DeviceId": "c8801d92-5772-4fa8-bdbc-1209673b0fa0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_328009867", + "DeviceId": "2dac1c2a-3adb-4101-b27e-9c41a7ca8adf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "58791f92-a0f4-404b-9621-04a0bcf704fa", + "TenantName": "Tenant-58791f92" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639034640", + "DeviceId": "dabbfc4c-0549-4eb5-9bed-9ab77df18c77", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374410119", + "DeviceId": "ca9c6255-8d7d-4019-8525-301bec94fbe2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131841199", + "DeviceId": "ed124d8f-4683-4242-9313-b7d15cc28662", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_307955881", + "DeviceId": "3585cd52-2725-4819-bcbf-c13c650e0dc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_842689931", + "DeviceId": "a5a30bd4-4212-46e8-8b58-71131ff48eba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_673133136", + "DeviceId": "0493dfb6-b062-4962-876f-f56295112d6e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "53778d81-b121-4a7a-90e8-6d0a2b2dd77e", + "TenantName": "Tenant-53778d81" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368998239", + "DeviceId": "961bdba5-622c-416a-bf25-789ef079eb88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_634902990", + "DeviceId": "b8f81e1a-421b-4621-ac0d-72600d50ec1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788761090", + "DeviceId": "107246ed-f7b7-43e0-9fbd-137fac48fc21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450925020", + "DeviceId": "f1b354fe-8667-40e0-b901-a6acbbccbfeb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_529525036", + "DeviceId": "3c27d3dd-e0c3-4e55-9e92-fba1956d2e40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_569469797", + "DeviceId": "d567cc23-19fc-4918-8e58-39598ebddb08", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ee92a61a-7fc2-45d1-923a-65486a02b607", + "TenantName": "Tenant-ee92a61a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142676602", + "DeviceId": "0fb06ad9-b252-4e8f-8c21-ccb98663c8af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925790920", + "DeviceId": "c83d6d34-b7dd-4c87-950d-4ead3724a39a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973075979", + "DeviceId": "fbdec0b1-4cc9-4538-b290-b77227fe0cd2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486890701", + "DeviceId": "71f6bf29-7050-4f41-b1d3-7219da95881e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_464990986", + "DeviceId": "63681e16-73dd-48b2-836a-72b6e01e8ba2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_846786130", + "DeviceId": "c4cf3bad-7721-4d10-96e2-39517f95dd94", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "77c2643b-b960-407f-87a2-79c7441f006f", + "TenantName": "Tenant-77c2643b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391935732", + "DeviceId": "d29850b1-bebb-4ef6-8c7e-c5364e3afbbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972843054", + "DeviceId": "5f2e489f-d395-4b70-b0aa-206dae2a2225", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218510666", + "DeviceId": "1f9d1fff-3bfd-4785-ba2e-db759585541d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109161369", + "DeviceId": "c58391c0-980d-46e0-8d0e-876129c8ec19", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621685783", + "DeviceId": "d60901ea-87f2-4303-ad6e-07ece16881d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_932170054", + "DeviceId": "1c88a0ff-ae0f-4ffa-b247-43106d8f5334", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ec0c372a-4c16-48b7-a0d0-1e3f49926027", + "TenantName": "Tenant-ec0c372a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980626220", + "DeviceId": "fea3dde4-6514-4585-bbdd-5bfea7746ea8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796819769", + "DeviceId": "fe76aef0-8c1f-4043-abe1-cb3a75a493fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365469518", + "DeviceId": "7ffa8aee-ddfd-485a-9360-9e3d254a7679", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564769320", + "DeviceId": "9926ff5f-19e0-4364-8b69-d10e1e650d4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335664620", + "DeviceId": "b9134942-5370-4a0c-b8aa-9e8bc149035a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_764180918", + "DeviceId": "7c5db1f1-d4b9-471e-9820-ece642e64a26", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f94fef28-7640-4199-ae5f-8b1055220011", + "TenantName": "Tenant-f94fef28" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866759072", + "DeviceId": "191808a6-5dcc-44bd-b8e4-f471ff07b2e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468224054", + "DeviceId": "cca30691-3a58-4d53-823a-ddc5cecf9b4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213366959", + "DeviceId": "3d1151e5-b6b7-4cf8-986a-bb006de3e631", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432962149", + "DeviceId": "d5f5fec4-bf9d-4a19-b130-c671df9bddb4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814691981", + "DeviceId": "58385853-72b8-4279-8d10-a9cccbd2d84a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_672605720", + "DeviceId": "3246c03e-feab-4de2-96b2-5bcb8b636f5f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "972a79c0-ee78-455d-beae-7be958e8ac1f", + "TenantName": "Tenant-972a79c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883638988", + "DeviceId": "3f204584-cd8b-4fee-b44c-c9ef57077b66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271646444", + "DeviceId": "f1f01dfd-800c-47af-af87-4d0f9b53da14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882148760", + "DeviceId": "29fa2d41-dd92-46f3-800d-3259bb5a19fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806837367", + "DeviceId": "1ad88d8e-04da-4be6-8feb-f6f2eb68f2a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_614887443", + "DeviceId": "0b619261-6b2a-4486-a62f-30360e4c375c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_803178082", + "DeviceId": "65576689-8818-4a13-a394-66b2d7654e79", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "06337511-d478-4618-a877-8770e12d3742", + "TenantName": "Tenant-06337511" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416193193", + "DeviceId": "15e8d60e-a6f8-4b5d-8baf-3643733598ae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201857553", + "DeviceId": "ed2ae6c0-68de-4394-89e8-b3e4a0834efc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374656845", + "DeviceId": "07139916-0218-4cb0-9698-d1de7675bce4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914111093", + "DeviceId": "35a4edee-0deb-475d-b1c0-83f91457e765", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_716195153", + "DeviceId": "5ea698f5-90cf-4e7d-a359-d814d99fab8f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_839001943", + "DeviceId": "76b16ce6-b7c9-4a6e-bc40-64f8a8a20077", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b47a3619-2917-44ba-92e6-3f8c86b7be79", + "TenantName": "Tenant-b47a3619" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684395886", + "DeviceId": "35b3868d-b88f-4be5-a4ba-1bc5176eb022", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230307756", + "DeviceId": "2bdeeba2-ff9b-4105-bd3b-87ca7c998026", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821008949", + "DeviceId": "464887a2-4830-480d-b692-39b933e6add0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145466107", + "DeviceId": "c61c4215-86fe-42b6-a1b8-3709fb7bb373", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695101401", + "DeviceId": "b91720a9-dd37-47da-a83e-f64f8ab28632", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_327830392", + "DeviceId": "6ab687f9-03f1-45ce-bb66-f26086a6d3f6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ed37aef8-a9fb-44fc-b264-2ee846d52d41", + "TenantName": "Tenant-ed37aef8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141564025", + "DeviceId": "d5820add-bd84-4f50-8f62-53c5f70e38ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984023947", + "DeviceId": "24bbc069-46d0-43c6-95d8-b0e9b038b4cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239401392", + "DeviceId": "f84c86aa-b682-441f-ab02-6667ec00d6f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784558767", + "DeviceId": "0423edd0-065a-462b-8c43-8875e9fb0bfc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_987214924", + "DeviceId": "92ab38f3-a50a-4bac-8af5-7775170b396b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_215375089", + "DeviceId": "e76068de-6806-40c1-b9f4-a48d4dd0e5b8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5edc7372-33ea-43a2-8c94-11811d42b2bd", + "TenantName": "Tenant-5edc7372" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_110479916", + "DeviceId": "55a36b16-226b-4402-a99b-317f36559d16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665695152", + "DeviceId": "f921702f-0ff8-4869-82f8-6b8743561848", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_299943670", + "DeviceId": "6bd817c7-32a5-4f23-bd57-2661a34dd599", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254238103", + "DeviceId": "fc5bdee6-61a1-4035-a234-7cc3a1dcab41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109391320", + "DeviceId": "025f77ef-aa30-449f-9cbc-27c91c458e2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_233559028", + "DeviceId": "52d0d244-5a94-45d4-b366-e73da326b7b4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "caf97f5e-02a3-4399-99df-62409db4c2b6", + "TenantName": "Tenant-caf97f5e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_159522813", + "DeviceId": "38d47afd-29ed-4fb5-9693-bc598a15f537", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284909763", + "DeviceId": "63f1f35d-7afa-4f20-8f2f-05619db4812e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_338012864", + "DeviceId": "9da3244d-82c5-4515-b82f-a504952a680b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146663471", + "DeviceId": "545369bc-fbed-4e1c-b19b-a5921b923e0b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273782001", + "DeviceId": "ecc1aec4-3247-4228-9725-2bd028710ffb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_595830911", + "DeviceId": "157ef357-6623-4949-9ea4-015e3cc0b804", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "adf8bfde-ee1a-4c0b-bc62-f6ea9e326d52", + "TenantName": "Tenant-adf8bfde" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712357597", + "DeviceId": "419890dc-dad0-4d4b-b9e3-3d26cb9eec3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678395970", + "DeviceId": "1e78fb53-816b-4aba-8634-5d201d480406", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579543939", + "DeviceId": "480f63fa-83fb-4b0d-bc23-9bbe6026d2c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341619622", + "DeviceId": "2db2c80e-987d-4851-85cc-0ef7e05972d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_100404002", + "DeviceId": "a422ecd3-e2a6-484d-9b08-4fa24c57c1e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_914063587", + "DeviceId": "ce636ff7-48b3-4b6c-9066-5f3f450d8a78", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3f558a71-3865-42d3-80dd-4dc8528c6861", + "TenantName": "Tenant-3f558a71" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876919645", + "DeviceId": "d04f3e97-c276-4667-8503-dbfde7b3d9e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_148204919", + "DeviceId": "42a8d8c3-f4ca-4787-8eeb-41b5248681d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_673609225", + "DeviceId": "3ea8ff23-2646-4d79-be81-2243bf53eea0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_692404433", + "DeviceId": "1ab0bc37-a102-4878-a610-2ed5cc9fd7f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433406743", + "DeviceId": "787e4185-c653-4145-85a1-be9a78c5f141", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_308308172", + "DeviceId": "d4647cb8-9794-4cb9-bbde-b77108e25054", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "23bb1373-92d6-4ab9-8b08-6948a3d2db90", + "TenantName": "Tenant-23bb1373" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412572363", + "DeviceId": "1a82018a-2c15-4a49-883a-8cb17bd6fcc9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896457600", + "DeviceId": "aa1aa89c-e811-46ae-9bd5-091a2e4a5dd7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954897973", + "DeviceId": "efefb820-ee1b-47ff-889f-6a8c0755756a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_690856185", + "DeviceId": "3a8046a4-f29f-404b-b3a4-59d87c4150db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_697252365", + "DeviceId": "c0a65d74-046d-48b5-bada-783339f9480a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_693939810", + "DeviceId": "0bd09b6c-6f63-4aaa-879a-354d9c695bb7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c20426cb-0e51-4c89-aff2-34bad39f0ead", + "TenantName": "Tenant-c20426cb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951992358", + "DeviceId": "c5298055-c2e1-4de0-9cd9-426bc28e57c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882299543", + "DeviceId": "99a9d986-6ba1-4895-ac72-ea25d218d262", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_537273764", + "DeviceId": "f39efc48-9d14-43ec-8c0a-18501f72c7fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631167156", + "DeviceId": "0dee2eb8-094d-433e-a9c1-8563c96ade3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670696445", + "DeviceId": "612e13f6-828c-40c7-a71d-6ecf71fcfbf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_424345263", + "DeviceId": "15bb86b3-6594-4a6c-9dde-12052dbe9c15", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "186b42f4-93eb-4bb5-8fa6-45833cbed377", + "TenantName": "Tenant-186b42f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382090720", + "DeviceId": "597b1fbe-8045-445a-b598-6996bc4231b3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803636529", + "DeviceId": "444bb6a4-13ea-4247-bac3-53d531efa3b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825008005", + "DeviceId": "4ab55e7d-9935-4fd6-be45-d6810a59eb83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_872890346", + "DeviceId": "cd9ef3f2-918a-4dae-954a-a596d6df38c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720259090", + "DeviceId": "e758613f-7859-4fe5-ac21-d66b429a748b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_837441667", + "DeviceId": "ae374c8f-9625-4bc6-86a2-3e58d5e7f550", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ad6d2749-5539-422b-9d5d-911bdeab01f7", + "TenantName": "Tenant-ad6d2749" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561984227", + "DeviceId": "37eb1213-b48c-4ea7-9ee2-59a2884befa0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895422931", + "DeviceId": "4e302eaa-2e6d-4a7b-b0f2-00df3ca519d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255612549", + "DeviceId": "744e1f51-f4af-42b4-9567-d991d394a66b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_706722879", + "DeviceId": "d5659d4a-f290-45b7-a6dd-f9e329aa0b9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418223770", + "DeviceId": "cf5df93d-d913-40a2-94de-01398c3d5b7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_705326796", + "DeviceId": "eb9add30-6fa1-4ede-88f1-b720651035b2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "da135866-5db5-4a43-850a-0120034d4513", + "TenantName": "Tenant-da135866" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596026146", + "DeviceId": "98d6b0e7-015d-4366-8149-8eda861766f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_932000581", + "DeviceId": "965d0983-ea81-4aef-8f63-eaceffae2423", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658025960", + "DeviceId": "1c32e4a1-b996-4310-af98-589be56c5283", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695190615", + "DeviceId": "ace70e88-dad4-40d6-a7ac-f27f5c94a6a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500827722", + "DeviceId": "8a07a2f1-5b47-4e73-8d51-9c8aaa1762d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_302052001", + "DeviceId": "61a306ec-7c6f-4386-a626-b1e0378e3773", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "141d2102-07a1-44f6-8280-af26eb175ba9", + "TenantName": "Tenant-141d2102" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539215458", + "DeviceId": "fd028642-df52-4162-9154-52d48694d06e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993135532", + "DeviceId": "f0c13757-1f42-4bc7-96ff-26f77c1dd191", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678984585", + "DeviceId": "bec940e3-3445-449c-aece-7e782c9c9a56", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-4", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_206055695", + "DeviceId": "05e8384b-b9b7-4749-835c-c380781144c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-5", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_822536818", + "DeviceId": "5ffde64f-b4ce-4087-a79b-7787d102804a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_254894551", + "DeviceId": "4fac6fed-361e-48be-9a16-9854dc7ed59f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6219cf83-0faa-4605-a32a-3ae745a6fb53", + "TenantName": "Tenant-6219cf83" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants25-sensors500-2906260249.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants25-sensors500-2906260249.json new file mode 100644 index 0000000..19344e7 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants25-sensors500-2906260249.json @@ -0,0 +1,4377 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_814805626", + "DeviceId": "a74b6769-97cc-410d-b9ed-2904af3dc3cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571580200", + "DeviceId": "66dc4777-6a3d-429c-933d-02fe24a57962", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_908259671", + "DeviceId": "12f64264-da4e-4082-8f1b-53180e2b4f22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592459073", + "DeviceId": "db4df05c-4482-42a6-9d5a-47b930ee7a3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252933300", + "DeviceId": "64449db8-bb2a-4d95-80c4-697ac5599c1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_279434763", + "DeviceId": "4cb6e5da-b7d6-4710-9b33-6bc1dfd26b3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_230710171", + "DeviceId": "74eefa99-ec89-49d8-9ef2-3fb0a08e9d79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_811088736", + "DeviceId": "fd64589c-49f2-4fc8-9be3-fa5fae8409bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881406329", + "DeviceId": "da6464ce-93b7-4928-afa8-db799350e1ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_685007382", + "DeviceId": "d5d9bd14-7a90-4743-915b-2ccd2f328dcb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_528312627", + "DeviceId": "b37de85a-9ed2-47b0-a7c2-68dd604a59b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_106072769", + "DeviceId": "799e8838-7d59-4834-8e9e-1073a2176810", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726953218", + "DeviceId": "6b07b6ea-fae9-404f-ab57-e6433548e73f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222271684", + "DeviceId": "0feb516f-8262-4c6d-bbdf-e0e5cbe4d41f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_388683634", + "DeviceId": "019becb3-db87-46c7-a9ce-c23b5887f222", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434630337", + "DeviceId": "5b9e6d65-0fe5-490e-84a3-1e285bc5b9cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220840787", + "DeviceId": "9f1f9337-8f9c-41c6-8b50-a2a9acc33bef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_882314805", + "DeviceId": "90cbce09-7f26-4f24-81a7-cc1eb259c767", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_610932474", + "DeviceId": "9e4f9f76-942a-46c2-ab22-0bf8e7d2f204", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263185845", + "DeviceId": "7984b30e-525d-4574-a485-c746faa667f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_468290791", + "DeviceId": "1f5644d1-6191-4a53-9f74-9e71862a20cd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "456f3e98-9711-4802-8c31-120afe72e9a7", + "TenantName": "Tenant-456f3e98" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241493961", + "DeviceId": "5fa2b982-e387-4da7-b63f-362d90974a03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_128106275", + "DeviceId": "d3f7daf7-abad-4438-b09f-c3401d69aa6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803017205", + "DeviceId": "8edeed88-f2d0-49ed-9c4e-6844eb08837a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_340313988", + "DeviceId": "69ef6d43-7cc1-4bac-bfb4-728632b36609", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_828557671", + "DeviceId": "f9b64779-014a-4632-b68f-3f7d25f895e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_994260045", + "DeviceId": "806630bb-26a2-40a7-b29a-d6100c030453", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_244273851", + "DeviceId": "d927c660-60bb-4d1a-a1a0-629f402afc24", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658038808", + "DeviceId": "4f539705-f9c7-4399-b69f-50ab4bd86428", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405655755", + "DeviceId": "60e94681-703d-4f48-9f63-40085a876152", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560100614", + "DeviceId": "a5da5544-a9e4-4625-b93c-1026de14a376", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798244902", + "DeviceId": "56f0e33e-c2e5-4f5a-819a-0f5fadaef99e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264342236", + "DeviceId": "c6efeb95-775c-41fa-b10b-d269257469a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_987011758", + "DeviceId": "3338cda6-5c54-4289-86c2-604b6f9a1422", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414545652", + "DeviceId": "24188e45-8ba3-4dad-95d0-303b1d4aea3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_203349922", + "DeviceId": "00c4b38b-d550-4be5-b746-caedaf613c4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744205629", + "DeviceId": "9045973e-a303-467a-bf22-907ae9c0c525", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_773144004", + "DeviceId": "1e9f1634-5d7b-4cc4-a35a-38b495dbbbc9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592669304", + "DeviceId": "0c9678a4-3af3-4741-9bc6-c41c3384b37a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866026523", + "DeviceId": "2d9bbd90-76fe-4672-8a21-092cb0ddf30a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_176759115", + "DeviceId": "b1f22932-9b7a-4709-9268-b04f9dfd61ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_272945789", + "DeviceId": "1fab8945-4dbe-4265-9284-e102d7cce940", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d8cd94c7-370a-447e-979f-d57dc7ab6dea", + "TenantName": "Tenant-d8cd94c7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609963394", + "DeviceId": "a1919170-bf0b-4bfe-bfdc-41a23d34c6df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_614277234", + "DeviceId": "e9756a0d-07b1-40f0-baca-51a49bbf0b8f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_258476714", + "DeviceId": "0239832f-f551-4f99-9867-061d520b9006", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802102353", + "DeviceId": "0c56704a-c3e0-4f39-9b09-c281b4f79deb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879386627", + "DeviceId": "f0736a73-13eb-4153-8db3-5079c792c9f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_501799158", + "DeviceId": "d8b19a18-f8ce-4a6d-98fe-eb91dc19a7ca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505033884", + "DeviceId": "8fe00d48-fbd3-49ce-a685-ea78fda145cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_683414668", + "DeviceId": "58e01470-908b-4297-8b6d-c665fbe33afa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484444283", + "DeviceId": "6311d350-5806-4b89-8d24-9c54902bd07e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368163652", + "DeviceId": "2c3cf562-6897-4202-8993-670297609302", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462606477", + "DeviceId": "621a5abe-e279-40b8-a8c0-f9938cd2459b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314342371", + "DeviceId": "cdd8593f-0360-4678-afdb-fbad6471c27a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374590710", + "DeviceId": "6e80558e-2dc6-4bd7-9b1f-013ec6c50c42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_220843716", + "DeviceId": "ae1c9925-74d7-47f9-9a00-d9bd894cfa16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757172435", + "DeviceId": "2f04da10-a597-4cdc-97d0-02826091ada5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453635603", + "DeviceId": "d06a0d23-d5b4-4d17-a30f-1ecb45d159e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873291026", + "DeviceId": "3e01e6ed-e9c1-4a91-af16-89447a9a1d47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_386006863", + "DeviceId": "160f59f1-8886-4b9f-88a5-b11c1f17597a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432176987", + "DeviceId": "039caed0-d08e-449c-a167-3b8a49a58c0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_710220784", + "DeviceId": "60fe94e9-567a-42bb-92bb-47de667bdb17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_622851885", + "DeviceId": "925a8b11-7497-48be-9142-75b0f8d34544", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c0e0c450-b5ec-46d8-be59-d1d023c4b9f0", + "TenantName": "Tenant-c0e0c450" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732602587", + "DeviceId": "667aa038-d15b-4b6b-a864-96a40026c919", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813947105", + "DeviceId": "12860b42-d963-4d0a-a48d-6a26dffc0ecd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_319211932", + "DeviceId": "3fc991ca-5be8-42dd-ad63-6f6a918cdaf8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494567036", + "DeviceId": "50490aee-743d-4d61-adf0-f062b20d62e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511206369", + "DeviceId": "b099d3a3-fdc8-494a-b8a4-c10affb1c207", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_859912020", + "DeviceId": "b7699470-41a0-490b-8053-8d8ed949e814", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_124654925", + "DeviceId": "9c0e0b12-7b6e-4e0a-a7a9-5f51227a352f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831343692", + "DeviceId": "7d9ff510-a1b0-44d4-905c-5f54c5736f94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388995963", + "DeviceId": "d348f968-db42-41c5-af1e-4623b22b9ef2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844507479", + "DeviceId": "dd26eeeb-77ca-49c7-a6f8-3c3a20b1a4ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_318143444", + "DeviceId": "60c48581-13ae-4856-bb88-e404719bb5ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886238249", + "DeviceId": "0fac2023-6d67-4646-ad6c-6bba0fb4e20d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_845782330", + "DeviceId": "052409e2-046a-4660-917c-315bf171648c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379277683", + "DeviceId": "6ac76e3a-3081-49de-bece-a0312608f5d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918916339", + "DeviceId": "d66df6fd-f7a1-40a4-b164-5f3194f9ea76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_738651291", + "DeviceId": "53053d16-d6a1-4805-93e8-8071705d012b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_277452759", + "DeviceId": "bfcb70c2-0a72-40dd-8dae-80c5e620e1c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379907027", + "DeviceId": "1277035c-8ddb-42b0-99a2-a8dd1540bdad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_349467910", + "DeviceId": "2ff7086d-4807-4ab2-81de-b883eb812107", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597105545", + "DeviceId": "b1ae7b2b-2d36-483e-b86f-e3ca2d81f320", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_859756901", + "DeviceId": "7604d315-75ca-4f67-bd87-876ff5cce9ee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "63f51145-a64a-414e-8879-60e21b25e85b", + "TenantName": "Tenant-63f51145" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938037930", + "DeviceId": "9e07f150-c486-47c2-bb19-a36b079aa2dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_324022918", + "DeviceId": "929870ed-254c-400b-91a1-0ee621ae92f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_196907615", + "DeviceId": "597243ef-e7d0-4671-a1e4-94033533c635", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_164831994", + "DeviceId": "1d10d387-ac46-4713-b72c-f26255e4288f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_394141267", + "DeviceId": "d0a99fd6-8280-474a-9256-277e3357028d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741470370", + "DeviceId": "27218d48-e430-4947-9025-02c2fa0c5a0a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176204220", + "DeviceId": "8c57401d-d3e0-43f1-849e-bc95af2085a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821974547", + "DeviceId": "d7d20d04-5606-4fa3-b792-7599694dcab5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327801689", + "DeviceId": "ef13a415-076a-41f4-9113-3e0df44e1855", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684362041", + "DeviceId": "4d6bb28f-27f2-4cfe-8c3a-c19a54d75627", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703723618", + "DeviceId": "36c51418-7f3b-486e-80f7-255f85b6b56a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_751121968", + "DeviceId": "996ce205-817f-4001-9acb-3397062ff9d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338091639", + "DeviceId": "b7d61b92-2504-4cc4-a7b9-35e43c15b02e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_863734921", + "DeviceId": "c8f728d0-a3d7-401b-b808-a0720d618b89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_807290828", + "DeviceId": "5e24f1ea-02e0-4fb2-a078-a6feba9c5f08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899419433", + "DeviceId": "dd1969aa-aeb6-4216-a751-d01f5fee31c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881497819", + "DeviceId": "48107648-3419-40e8-bc13-b4105bcc8a68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981683585", + "DeviceId": "b75a0fcf-da4c-4075-933a-4734cc686975", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_330079900", + "DeviceId": "99b84377-1cd8-454e-bc50-08c28e657544", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896301490", + "DeviceId": "615e5e40-cbb6-45ff-951e-fb9f4ae20052", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_818336826", + "DeviceId": "92c871b8-24e7-40a0-a3b8-b91836938f78", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8dab4b4b-1215-4618-bdd8-cd478a8e10dd", + "TenantName": "Tenant-8dab4b4b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954917208", + "DeviceId": "d58be6a6-1f30-4d06-b13c-7deec6544380", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_634299238", + "DeviceId": "00abd9be-6bdb-4566-adb2-a04405065b19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_577616512", + "DeviceId": "4e4459f5-3ebb-4f44-a857-281f371a3461", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_763558633", + "DeviceId": "a7d71f93-2a1f-4286-bbc2-6c34612d5fb6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_980562375", + "DeviceId": "03069f2b-c434-44f7-b23a-f575af3816c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646902607", + "DeviceId": "d6cd8060-1a8a-4c19-b1bb-1eebb45f4443", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231194016", + "DeviceId": "caf466e1-1d9c-465c-b0b1-e45c5270cb1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227517748", + "DeviceId": "2f6d6f85-2740-4b5f-b07a-bdbc40d8c2fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701734498", + "DeviceId": "c47e596b-ae3f-414f-aa20-5aa44c23fd6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_497609092", + "DeviceId": "6ca588ad-6143-41af-947c-4aa76099c818", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881932086", + "DeviceId": "58fb69a7-32ac-49f4-9acf-8b27a5d96743", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322149079", + "DeviceId": "4755757f-28a8-4e45-90bc-3f99616f4b29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_548303826", + "DeviceId": "c789ed0b-39fb-4053-99d2-52f66f152562", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_780728096", + "DeviceId": "207f3789-11cc-466e-a227-c980b630fd0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488683646", + "DeviceId": "a4acffa7-4ee1-40bc-9d50-b046df0691f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250409432", + "DeviceId": "193a5b58-2215-4945-9c5f-f8097cbb5a82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297932635", + "DeviceId": "150a47a6-47b8-4a55-bb2b-4a487bdff1eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_352430834", + "DeviceId": "0d9b0edc-dd26-4757-a31a-48e33e589a61", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_704271362", + "DeviceId": "57d683d1-9e9a-46b6-94a6-18f04248a391", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_882382033", + "DeviceId": "3e2dac5c-403a-4dc1-8e60-fa0035ea423c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_200636086", + "DeviceId": "0c4a18a4-99e4-4d59-821b-ee00c3156fd6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ba7f6d65-68bc-4cb0-9492-883d6f6422cd", + "TenantName": "Tenant-ba7f6d65" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901729773", + "DeviceId": "ed084704-db48-4761-b4d0-847c9f223713", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635532656", + "DeviceId": "1343bf60-8474-4b98-a884-2e572943f95e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_301100514", + "DeviceId": "fec5d854-8d5e-4b34-969b-ba16c5637e60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_395038172", + "DeviceId": "e25d6be3-8901-44d8-a697-983a8af36e96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836170360", + "DeviceId": "c4901a32-a698-4c63-9bb1-55be4052a274", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399520477", + "DeviceId": "ab9df54a-6bc5-4fdb-9faf-6b10f0718903", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_552275341", + "DeviceId": "ca8613b3-8269-4bad-8f85-6b316c3c31f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_157394713", + "DeviceId": "4df99136-f18d-4ff4-89fe-22e6349cf5fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812133611", + "DeviceId": "427436ff-6010-40ec-9d4d-b415c95b8cc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_238443659", + "DeviceId": "035fe730-a2c1-47f1-993a-60fe31520a4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_700090292", + "DeviceId": "f1c4d605-dd3c-4e7b-b9e2-c7367329d77d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434251352", + "DeviceId": "f877f051-c43f-4671-83e4-234568abcb27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505574334", + "DeviceId": "bdec9f42-57a2-4333-898f-ec5b56a2e3c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_209588623", + "DeviceId": "390422f2-39c5-47ce-8d34-501ef0e42de1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_299703631", + "DeviceId": "4b0d8daf-89f8-42db-8130-29a00c687941", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_178400728", + "DeviceId": "28c261f4-1fac-49a9-a75c-0d5cbe8938d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_844070055", + "DeviceId": "ce0c8abb-4101-4f79-9ed1-d88ccb389203", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_213032334", + "DeviceId": "1ca56827-3e71-43ca-8b27-6e5ff876daf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359768708", + "DeviceId": "14b4e031-62f4-41c9-aee6-bc5b92a094f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512296706", + "DeviceId": "f3361be1-236a-4698-b3f3-98ba8b8725d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_794805236", + "DeviceId": "280dd499-eaa8-4f4b-b9c8-9314f20366b2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3bba3bac-c61f-41c9-b5ed-abdfbfa51c20", + "TenantName": "Tenant-3bba3bac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433044803", + "DeviceId": "4aea9982-a680-411d-b2c0-722ed24af978", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_206739982", + "DeviceId": "eb0bf17f-e64d-4a7c-be4a-5506946f4c17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_344267597", + "DeviceId": "4b7efdc4-6125-4865-aaa4-5466eca276d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_628647721", + "DeviceId": "043b3d42-e354-415b-8bc4-332d7acee283", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699383962", + "DeviceId": "cf73386a-037b-46a5-b3b5-f244163176b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_995272993", + "DeviceId": "72cb8116-d5ca-4257-83eb-4df407d131ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976660966", + "DeviceId": "12b42bfc-43ea-478f-a59e-ce85bc0a32cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_952131818", + "DeviceId": "61d72a26-5c2a-40ed-8bb0-7d10d6e49090", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_716938878", + "DeviceId": "0cae0bd7-bbc0-4bee-9044-4eda303c8e6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200169579", + "DeviceId": "b7d89e1d-3f60-49fe-a8ca-1eecc679d489", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_687077705", + "DeviceId": "2eb6f557-2030-4f78-8d94-eddfeab389cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231298787", + "DeviceId": "af5a49ca-ff18-4f2c-a4f4-3b94bfdf764e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_635041117", + "DeviceId": "0c2dc16b-dd1a-4eda-b8fa-e69b34e10b73", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_663987564", + "DeviceId": "437936f8-815e-4bb8-a23a-d35163a125d5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906296359", + "DeviceId": "2a8dce2e-e1a0-4b46-9e61-ba4a95d45cba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616182481", + "DeviceId": "682747c0-3882-46a5-a31f-f4e998e0978e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858555494", + "DeviceId": "11cb173f-50d0-4169-9bf2-674d61bae38d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102425838", + "DeviceId": "b9e2c482-e565-44b1-9811-54ebca45113c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_835501318", + "DeviceId": "1b15c0c4-9f59-442e-b966-c6748592af6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_306980700", + "DeviceId": "5255db4b-eb6e-4099-aacb-f2af2f15c6a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_572190210", + "DeviceId": "a5d24044-ea99-4711-91eb-a7bb802b5374", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "32b9d29a-7f93-40f8-b7e3-06e8f9fe15c9", + "TenantName": "Tenant-32b9d29a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_764471892", + "DeviceId": "3c55534b-ff49-4bbb-a966-496e61a13280", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_700640674", + "DeviceId": "5d237d1f-76e3-42d7-9769-e2e07905b104", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893413115", + "DeviceId": "c1caf4e8-4716-4f63-94cf-c77a946de769", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151567693", + "DeviceId": "d9d421e3-f4d1-43e1-b591-1e49425f9f74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998540156", + "DeviceId": "add62b5b-167f-4300-ac02-6da74f5c08b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_620266703", + "DeviceId": "48e296ff-1af0-4acd-9232-266e434b7852", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_950416102", + "DeviceId": "dd8856e6-64c8-4f4e-bf1d-62bf32e97676", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_802078342", + "DeviceId": "bc04b32a-2ac9-4130-afa3-64545ec2b9b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139819726", + "DeviceId": "ec460af8-c7e5-4adf-b782-648d40f57ef6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438202820", + "DeviceId": "f92c9ab3-fe09-4c3c-ab20-b6deb0c6c823", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_531631713", + "DeviceId": "0fccd8cc-f029-4fbf-a8bd-f09388403913", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500529494", + "DeviceId": "5415d370-0ce3-41e1-8215-22356e8fcd12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_325789206", + "DeviceId": "f8022e3b-d8d4-4e5a-8dd5-c808373a0fd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_844358098", + "DeviceId": "70ce9fd4-4de1-4287-ac8a-2103210024bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925037637", + "DeviceId": "b62d3d3e-272c-4cbb-ab26-3263a884d74c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937443768", + "DeviceId": "d6875e15-9a2e-4a94-bae0-dfaf4ee951e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_436363240", + "DeviceId": "5f00168b-34d0-44e0-8277-e590393cdf54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_393745222", + "DeviceId": "1dec37e2-1947-44a5-abdb-ca0091aaa8ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_563517774", + "DeviceId": "4693b0c9-2f25-4184-b0d6-e840bbe8e151", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105043895", + "DeviceId": "59af6bd5-b377-4e33-af5e-5f7fa2d32990", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_358158670", + "DeviceId": "9a30209d-3b72-4d7f-8af6-4ebe5ded58f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6d5a43d2-ded1-4e2d-a425-d716a60d6f95", + "TenantName": "Tenant-6d5a43d2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992537613", + "DeviceId": "d596f21d-12f8-445e-98cc-17d922fa5091", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267066360", + "DeviceId": "96a2149c-0763-4d54-b615-a152761ae82c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_511664709", + "DeviceId": "dfe22916-a988-4777-9d88-9f4a07b819a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810499479", + "DeviceId": "b87db286-eff8-44e7-9b63-97f06c975b18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570275448", + "DeviceId": "a60e07c6-c2e5-4635-9a24-6c2675eaf67c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_560006997", + "DeviceId": "57796459-7602-4a20-b0bc-67747f20566f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_854604988", + "DeviceId": "75faf1d1-ced6-4cea-bfd4-690b20e0ffd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115685814", + "DeviceId": "981757dc-ef45-4e51-aafb-8aa4674d43b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_689243567", + "DeviceId": "be2aafb6-d94c-4b9b-b834-c51871257f6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_896943552", + "DeviceId": "dc510046-3a10-4359-83a8-73c226477c0e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_596449420", + "DeviceId": "a9b40432-d84f-42c1-a7e9-475bcf52ace2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594349411", + "DeviceId": "f8c412c0-5281-4fc1-b865-430ce04b91cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651114063", + "DeviceId": "2794f90d-f888-4544-b4d6-be777a5b4bfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210137449", + "DeviceId": "cdb0a60a-ca12-4423-9b5d-1ff0760cd0de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181307450", + "DeviceId": "665e1001-ea18-4e16-9127-80eb7032463a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231896328", + "DeviceId": "d5ad4ca5-d495-4305-9925-5561c0c0636e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331186672", + "DeviceId": "f055cf9f-0d61-41c7-b4f5-b8fba59fde87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637522056", + "DeviceId": "c295ee93-cc62-4307-878c-0bf8f00ef274", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_971041036", + "DeviceId": "1818b58f-ba40-45a6-a6de-8cc6a49e6261", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189954498", + "DeviceId": "fa361568-442d-4123-8f42-2e974cd1dee8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_606444609", + "DeviceId": "b6d8cd10-720b-458c-b94a-e7bfe3198a33", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c64265c3-2968-475e-9fa3-340f4f07cc15", + "TenantName": "Tenant-c64265c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_123509815", + "DeviceId": "0906fd34-6015-45fe-8bbc-2c17ccef5e43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547794926", + "DeviceId": "45a8df42-7f90-45ad-b4e8-5f5cb813dfd1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812784369", + "DeviceId": "35fc2322-b060-49cb-81c7-1107d7702e11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212004738", + "DeviceId": "ada181fe-3419-4d94-ab7a-dc0b436e9881", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710749870", + "DeviceId": "1051b68b-361a-400c-bb9c-63f3c5687cbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_735191028", + "DeviceId": "d4203990-5520-4142-867c-ea26a80d9fd1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_627972982", + "DeviceId": "2d0e941b-eebc-4d79-94d2-8d6d8aa73511", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897845991", + "DeviceId": "f7d03e7c-4a19-4644-b065-643183e77e2a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790196435", + "DeviceId": "6f54b77a-04aa-40c6-8015-25842b2d07a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640081919", + "DeviceId": "b5624ddb-195f-4da6-83f0-b6ba4194bd7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625815825", + "DeviceId": "b7db3d64-e20e-49f4-bf9d-e03f66a4d644", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542745087", + "DeviceId": "424d08c8-927b-4ac5-80de-03705b145b0e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582344348", + "DeviceId": "cd6a9660-e906-4688-ae61-8a30d1449869", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351968249", + "DeviceId": "9a90f7ec-2df4-4d91-843a-7c90c13ce0bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_557493951", + "DeviceId": "3e61ece4-bb30-4d75-a16e-4fe5e968c3a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_740828808", + "DeviceId": "dfa7c22b-f2b1-4933-a97b-ae6762357d4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_261669759", + "DeviceId": "be1baf17-4c19-4cb4-9df1-fdbb65df5335", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364829482", + "DeviceId": "8cce6420-ad95-4828-9f66-b2d2d063b2a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_243026281", + "DeviceId": "696ec01b-3c2b-4309-96ce-8ed89381b216", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763452411", + "DeviceId": "4799bba2-2f2f-4725-9657-1bfd63a2c264", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_966499729", + "DeviceId": "2b21bae1-18db-4807-8dec-b8ded9b9a11e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0a520e93-cb31-4e94-830d-0be0834f1bef", + "TenantName": "Tenant-0a520e93" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617177324", + "DeviceId": "17cc3ba3-b131-4d26-8b8c-2b5a3d777893", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_978152842", + "DeviceId": "dea447db-7c66-42d0-a077-60011962cff6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_291875324", + "DeviceId": "54f123ba-81a7-4531-b806-52ce71ce8985", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532355305", + "DeviceId": "7f1faa30-06be-4755-b0e7-530195cf1735", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_204197253", + "DeviceId": "a137c955-3e57-41fb-836a-70a9657203df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_283578425", + "DeviceId": "df5c1866-b815-4315-8ab5-3f074598bbe5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752295321", + "DeviceId": "cec2d599-18d4-4bc8-a1cf-7370f6254171", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417391648", + "DeviceId": "554f646b-3f1b-4238-880f-e68d9a88462e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323007284", + "DeviceId": "e661c2d4-c7dc-4aa8-abb7-061884665edc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_604406513", + "DeviceId": "8e56e4a4-ca69-4ac5-b036-ca7305236120", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526380965", + "DeviceId": "040ce8de-63ff-49f2-a956-88b538fb742f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_384090767", + "DeviceId": "b343e049-6f2f-4705-8814-5909418dd1ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506640243", + "DeviceId": "28ae6693-06d7-4c76-82cb-6897d06accab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173359921", + "DeviceId": "70643607-e0c0-414b-bd3e-9ebf6c1c59ba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_780853693", + "DeviceId": "091515e8-cf81-48dd-817f-5a0d9ff2e5f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195355566", + "DeviceId": "ae79a386-2503-46b4-bb94-975956585090", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820995629", + "DeviceId": "c6dbe188-8c51-45be-87ec-153b9e2b98fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606170021", + "DeviceId": "4776d9e8-0708-4564-80f9-672879917668", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257910990", + "DeviceId": "a7739d08-feea-4659-bdff-575ded846cba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656831844", + "DeviceId": "ec21c5d6-8e5a-4e5d-8e70-31e31ce7d32a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_421334112", + "DeviceId": "82a229b0-8445-430b-8823-02a87aca0ac5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7a072308-47ab-4ef9-9757-66ba890adc19", + "TenantName": "Tenant-7a072308" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169210710", + "DeviceId": "c0c22afc-273a-49db-81af-38f0773f7144", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_277528318", + "DeviceId": "daf3cf68-edcd-4bde-8647-fd5aa696aaba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413322257", + "DeviceId": "3b265c19-a8e7-4671-b2c7-a87b2a30b645", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919482314", + "DeviceId": "5f2d49e4-2c14-4579-a16d-ef2915dfefbc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_380889896", + "DeviceId": "fba43d58-0272-4915-943b-1c8a866302d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591089973", + "DeviceId": "72dea568-3f19-457e-b3e1-c748fc2ac845", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202475704", + "DeviceId": "c9df3e81-5465-40e8-ab29-863524b393d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582017791", + "DeviceId": "c971863a-dd7e-49f2-9e6f-d39c38f61402", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_194814691", + "DeviceId": "e4e0271b-66a1-47d4-9092-08cdf2945677", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574128771", + "DeviceId": "1909830b-ed4a-4319-a61f-7140c7031884", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238540483", + "DeviceId": "5fec78a0-a51b-4b66-b85e-1b0baf62e3e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_452885330", + "DeviceId": "49365971-1aaf-4b06-9a36-f7119f4c6274", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677073349", + "DeviceId": "104db1fb-6cbc-4c83-8ccd-8f0e7562c563", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_298817352", + "DeviceId": "87b6a429-73c1-4d88-a0aa-c7c04e05f013", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_202401574", + "DeviceId": "556a69e2-b4f0-42ea-b7bf-e1cdc05caa62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233227737", + "DeviceId": "17d119bb-096d-4a0c-897e-48178312ff88", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_638897146", + "DeviceId": "eac966d1-026f-467f-b022-3d14ffc89058", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677095385", + "DeviceId": "3280ae25-131e-4904-a718-6c20c45e090a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_277443204", + "DeviceId": "0e158be8-8e5f-4be2-a37b-62fd733a291b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741407007", + "DeviceId": "48468459-5835-407b-b65d-19662fc5d661", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_381375145", + "DeviceId": "81992a92-fa56-47cf-9f9a-75280bd8c5d5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6612533b-4565-4d00-9f77-ad85e1befc5f", + "TenantName": "Tenant-6612533b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_439005581", + "DeviceId": "96639eb5-40f2-493b-b227-6c321f91a7b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_832490767", + "DeviceId": "33477763-b2f1-483b-9a8d-c90be26b2bdd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350206337", + "DeviceId": "0497f020-a1b0-44ea-994d-14cbcd58500f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488006867", + "DeviceId": "6bd82fbb-c6b9-4c48-b34f-eef284ff2652", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_162348466", + "DeviceId": "4b3f86a7-40fd-4363-a654-b715c6e189ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483128691", + "DeviceId": "3a7f4ae2-36ba-4612-8fb7-019b1d1ac352", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285918804", + "DeviceId": "7d093ed9-ad27-435c-bd69-ab8e216367cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400450264", + "DeviceId": "eeb4be56-4bef-4d31-91df-8a2274471db7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329163432", + "DeviceId": "b4f5798f-5d20-4bf7-8f17-39a581548bee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_238190452", + "DeviceId": "de03604d-19c2-4ae7-8b1e-a046eeb32f05", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_670255792", + "DeviceId": "3be74fe2-1f73-4e6a-96da-615e1486cfbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109746844", + "DeviceId": "2cf783ff-caa6-4295-afdc-5c7bed33525f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_628541610", + "DeviceId": "a8649e95-48dd-4a54-85e1-5f634ddb8e47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550112453", + "DeviceId": "6011805e-cf20-4c13-8f66-3be5661b6e57", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_684191212", + "DeviceId": "8ab315d8-e71b-4ef9-b791-67616c799655", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612950773", + "DeviceId": "1a7447db-cee2-4946-9c21-2e8acc2d864e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189964889", + "DeviceId": "7fefb6ad-623d-4656-aafd-30bc04abfa71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_425809524", + "DeviceId": "4b2c8ed3-f854-4d16-aa6a-2ca1c32a61c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335246217", + "DeviceId": "849b3042-b46a-49f7-9094-742093dd5b33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886482680", + "DeviceId": "accaa586-5f64-47b6-9104-9f73b4c5ed3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_129836622", + "DeviceId": "cf5605bd-9dd8-42ef-8b5d-566af51bcafc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3ed49586-3bfa-4746-b8b9-b6a9afa74664", + "TenantName": "Tenant-3ed49586" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787837873", + "DeviceId": "d8cb0198-75e0-4c39-b906-9825d0f6d41a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813146389", + "DeviceId": "799cab6f-67ea-4b1d-b96f-8a4f44713a1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720334603", + "DeviceId": "055e6b04-55b0-4d1b-aab9-fdb287ce7948", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_418697509", + "DeviceId": "6e2f1f31-c2e2-4261-acca-d62aab405987", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797998875", + "DeviceId": "2960e385-3bf3-487e-9701-c531f650f8d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547718273", + "DeviceId": "fa26c4c6-9cd4-4ef7-b751-17667efa5c27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_428997785", + "DeviceId": "27d12f1d-617a-4879-a362-31017c1009d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933899177", + "DeviceId": "fad70a9e-cc15-41d2-9e14-8e165be49723", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158504803", + "DeviceId": "9b815333-d21c-4aaa-9ac7-f79d468f0536", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_669949468", + "DeviceId": "39845715-819c-45a9-a122-0ee4045c7034", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947995535", + "DeviceId": "e78edba3-2241-4a19-9ab4-06511b384c9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_880574890", + "DeviceId": "4cdfc8e8-5c7f-4e28-84ae-1cb18b615734", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_996099332", + "DeviceId": "16523a7e-565e-40e9-b1cf-dba23c04769a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_212141952", + "DeviceId": "5d58ee56-e88f-43b8-9b59-d8fdbb720219", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_828808026", + "DeviceId": "4400bd4c-00d2-48b1-8403-0938e659a5e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158963085", + "DeviceId": "d100980b-3a3e-4373-a879-77befa1e2348", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_339717988", + "DeviceId": "3948d6c2-55a5-4c80-a6cf-915abe2cf019", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645442832", + "DeviceId": "f30a6ab1-d6d9-4cf3-ba39-4edf212fa5ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_584734281", + "DeviceId": "4fef2416-56dc-499c-904d-afdf13979f56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_332740867", + "DeviceId": "0e53d0cf-5aaf-443f-a958-8e1597beb84d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_664595201", + "DeviceId": "3844337a-65d5-411d-8b3a-6c80f1321759", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9ef99685-2bb6-4c5d-aea6-4f3d0d4fb3f9", + "TenantName": "Tenant-9ef99685" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_124262658", + "DeviceId": "44379550-563d-4d4a-a8af-9a023aeedb7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362872524", + "DeviceId": "60b502b2-5312-461b-ba9f-b325c2b3fb2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531030098", + "DeviceId": "ad229a72-2978-4d38-bd4e-e923ae055a74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348940225", + "DeviceId": "926685cd-c3ed-4e35-a7dc-51778f5e12c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693046907", + "DeviceId": "a115f2ca-abb7-4a61-a7bc-079f7d48eb68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345916241", + "DeviceId": "9d47b53d-b290-4512-91a6-89778a95663f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381160705", + "DeviceId": "496bf365-5abd-44a0-a6b7-38de85f498cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120747957", + "DeviceId": "1e3a4805-a1b5-4e58-aad3-8659bb77d61d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_581305102", + "DeviceId": "0cf32b5c-3e1c-4a1b-ad1d-a4c4b884dd55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_974318416", + "DeviceId": "602327a0-84b6-49e3-ac2b-9dd513243d09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_116111086", + "DeviceId": "a01e699d-eccf-40b4-9450-f9ee7684fd9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549412727", + "DeviceId": "aa4f8285-7714-4a63-bfab-35ebb9cb6c4b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_122925915", + "DeviceId": "d1015228-8058-420a-94c6-19ec63965598", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644076555", + "DeviceId": "d89aba08-4087-4991-8473-b50b78b973e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562511957", + "DeviceId": "8fc939c7-d86e-48fb-bf5d-fb8918181b80", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862793219", + "DeviceId": "5fa1ba2c-aeef-4d51-abe5-854d79de1175", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939507012", + "DeviceId": "3bdfe035-382f-47ea-8330-72f75492076b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472011893", + "DeviceId": "4ee2a2fc-019d-459f-80d1-13caae0c7d1d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_407326204", + "DeviceId": "90bd2987-99cd-48ee-b167-c6d820e560fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728161369", + "DeviceId": "94984ec0-4d88-4920-b874-49c5838d8d83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_440263053", + "DeviceId": "f09c4048-0b0b-450a-bed2-4dcbf0c30fdb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f6046fd1-aa68-4c72-8282-abcd0ebd9546", + "TenantName": "Tenant-f6046fd1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_823470211", + "DeviceId": "d9c4ba62-f704-4638-a760-3e07b7d75d79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_240601412", + "DeviceId": "e30c1665-1009-48ad-a21f-829cae7cf974", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534595836", + "DeviceId": "4eb0033d-cb3f-4c12-a7fe-309591160775", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_903935830", + "DeviceId": "314e906a-0ac7-40a3-97e8-910dfa8b256f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_990855093", + "DeviceId": "60e1a1df-1b32-4d2d-a825-3ed314574671", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800378484", + "DeviceId": "0b9031d2-6fab-437d-8370-dec740dffed9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753191986", + "DeviceId": "48bd1deb-04d1-4057-96b7-2da0a60dbd88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736817482", + "DeviceId": "8fc83caa-188c-4e05-9362-22f6fd5d4610", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_386835939", + "DeviceId": "5c04b48c-4827-4ce0-ba69-e21f77145753", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678879047", + "DeviceId": "1d5db52c-7c0b-422e-8984-89050dd0c592", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693306334", + "DeviceId": "51a1dcab-64a5-4db2-851d-328a0c6b2e3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761585688", + "DeviceId": "b248ae58-cacf-48fe-8409-f04fd08ed9f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_108658264", + "DeviceId": "8ecc31d3-e63d-4dd9-b4ec-7f1e9348b3fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925132246", + "DeviceId": "7c7bce49-6f0b-43b2-8e02-4689da77405d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300610084", + "DeviceId": "a958f4c1-879a-4d31-9377-0402ca62ea01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_879695796", + "DeviceId": "9fc9a016-caeb-48fa-9062-e16ce8fc771d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480103890", + "DeviceId": "c9aaeedc-6db9-4fff-a527-d24a79072508", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897425169", + "DeviceId": "ccc4736c-2d87-40ec-92df-aa0dea2366de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323415489", + "DeviceId": "803833c2-9767-4461-9d60-a3f43cb8f724", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_267498527", + "DeviceId": "dff6ddcd-9010-49fc-893c-4d3f061e5e14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_108902301", + "DeviceId": "d52a3178-9f4c-4c11-853a-14a9ced96390", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a0e39a4d-c383-4027-955e-68c83102244b", + "TenantName": "Tenant-a0e39a4d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_530325211", + "DeviceId": "a51d984f-c495-4c14-89b4-decdc157657a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_718221057", + "DeviceId": "041c053e-d3d8-4fc1-87d3-00307ef40e2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_788494022", + "DeviceId": "237a62d4-c379-4fec-bdab-2c92fdbd5be9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914616426", + "DeviceId": "8a974ff3-ae3b-4c5c-8f0e-bc7170d0548d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797270485", + "DeviceId": "ae3a2832-e46c-4d35-82c9-ff6b74c264ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924686238", + "DeviceId": "7ab5235a-b5df-4248-941a-cf5b9600e20d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233203330", + "DeviceId": "336d4da8-802f-41d7-811b-3ad987c659dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329148734", + "DeviceId": "a5d2dd99-a777-490f-be50-a10d1f01cf5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305718322", + "DeviceId": "5141a234-0217-49b5-9edc-c8a9ed9cea50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906942290", + "DeviceId": "e63156af-ccc0-4b89-88ab-0d811b2046a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_779256086", + "DeviceId": "a36b2f28-b385-484e-85b5-fdc99cd665a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515782105", + "DeviceId": "786568b3-e965-4548-8f89-b46b63348779", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818081157", + "DeviceId": "2b4487a6-568c-43f5-9867-f8ee28966508", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486689316", + "DeviceId": "fc14052a-2171-4749-ba28-10e96703ac84", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_422955398", + "DeviceId": "6513b7a8-cdfd-46af-89d2-5852f7801fd2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_261685946", + "DeviceId": "7a433d3a-9eff-48a2-9da2-5b21917c204b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410040374", + "DeviceId": "2a8ddbdd-5802-4f1d-8800-5514a171cdc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562392016", + "DeviceId": "b7422f01-9b97-4eb8-b961-298fec5812ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_521491542", + "DeviceId": "c17c7811-883a-4da0-96de-b79868c00fed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153974300", + "DeviceId": "cf66048d-b3d3-4bdc-896a-e858f805edcc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_824031056", + "DeviceId": "1b670068-c190-48b3-a000-cc2a7557ea29", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "57993f79-da10-4370-94b9-38db85ebe841", + "TenantName": "Tenant-57993f79" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_652421103", + "DeviceId": "c7340d15-62f5-448a-89fc-a172a33d111d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940246627", + "DeviceId": "102e8318-d06a-497b-a156-cc75f5b35740", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849934266", + "DeviceId": "e953bb1c-b6f5-4137-9500-5e49e6dffd59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_418200636", + "DeviceId": "ac5edd67-9065-44fe-bc14-719b19a4646c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545901296", + "DeviceId": "ebcb4fd2-c507-4470-8074-d9fba9db96d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_634901645", + "DeviceId": "23449785-8217-4a5c-9c15-9313aa964738", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888549549", + "DeviceId": "f72d0460-7b3d-4def-a716-5bb04499ebc5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168957340", + "DeviceId": "5995be9a-8ab7-4c63-a7d8-1f326e3dcea8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_848625611", + "DeviceId": "b1bce93a-5deb-4b07-9677-e10038dd1f91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_106741089", + "DeviceId": "904177d2-ab43-4831-8eb5-cc525ec42d3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902050639", + "DeviceId": "3538c829-9c63-46d2-a090-2782b0f219f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301238474", + "DeviceId": "f2ec8d15-d452-441a-8c12-6ebf1ed523b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195770458", + "DeviceId": "08bbcfeb-e4b7-4fe7-89cf-d476a335c289", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853162422", + "DeviceId": "93b60628-f722-425d-a7f0-a989de4b60cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250528578", + "DeviceId": "3d73c103-688d-48f7-8441-dae2f46d03fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196578459", + "DeviceId": "18c5749c-30ab-40aa-9f2c-0e6ffda46e6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_979902513", + "DeviceId": "70e846d8-06d4-4d90-ad4c-446a42d32e9f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_704286526", + "DeviceId": "0e27fc60-a621-4549-bc96-f20eb6192d38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155171238", + "DeviceId": "8b7cffed-f994-46d9-ae96-7fb20edf3080", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_117935830", + "DeviceId": "1cf5b3eb-3fbe-4530-a4fc-a13cb0fe9b15", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_982656102", + "DeviceId": "ad5edf43-3cf7-4d88-9a65-bfddf39eb927", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "800740ac-2d46-4308-ad74-f8ebd54d4068", + "TenantName": "Tenant-800740ac" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364019735", + "DeviceId": "a2f57b52-1021-478e-bc15-18b466141e7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_156438475", + "DeviceId": "9ccb8f4e-be0f-4c50-8bc3-7eba5cd77580", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_366666784", + "DeviceId": "5ceb2b18-ce67-4b80-9c9f-34ca8174ce67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632274420", + "DeviceId": "3405fe0a-2c2b-46c2-b602-82e72ac7610c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_173924801", + "DeviceId": "fb1c6049-0675-4670-871a-ed57b837e0c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_274715416", + "DeviceId": "73f02325-04b5-4263-818f-29f9805ab8d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468044601", + "DeviceId": "ba40db93-e998-4b18-8b4c-52968033df42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867007052", + "DeviceId": "8ca32b02-a29c-47ae-9415-610785b76618", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588658689", + "DeviceId": "78de074a-ffbb-41d7-8416-711cf4985238", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491251480", + "DeviceId": "d1e1a4d6-d510-4ec7-9e66-43680e468bd9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_395277810", + "DeviceId": "542a044d-bd9d-4dbc-a8fa-1b30d4c6644a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_631847760", + "DeviceId": "678dfa71-cc0f-4204-b63a-27304d900295", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_320846818", + "DeviceId": "ea6717b5-e4df-4e44-8d2d-bb6fdaa08551", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400633494", + "DeviceId": "048f03cf-6985-424b-8099-de4ef698889a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378898445", + "DeviceId": "7a0ab6a2-3954-44c7-bc92-b606053ce065", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_180809997", + "DeviceId": "182784e4-401c-4c5b-8be2-573f6e098468", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767049594", + "DeviceId": "c2490056-2394-4f58-ae41-230f869229ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583401341", + "DeviceId": "d9112bc6-f8fe-4270-9f64-e7dc7748e404", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_772595424", + "DeviceId": "011d2c5b-a424-4ddf-b39d-e6479e49961c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_145649521", + "DeviceId": "fc543876-6a88-4885-88a9-eaa8d12a44cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_379322230", + "DeviceId": "a4aa6d9d-ac54-4c49-b36d-f106756e19fd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "78b724f6-78ba-4b3c-aca6-2716db489e8e", + "TenantName": "Tenant-78b724f6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_611481595", + "DeviceId": "c551e1c7-c410-4d0a-ba08-50ec3145cbb6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443612340", + "DeviceId": "cb06798d-ebbb-45ff-84ec-f043fec7a80c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_172398539", + "DeviceId": "1c59fab8-072a-461d-872f-08832884d2bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_427172406", + "DeviceId": "44c700e3-1b5f-4017-ac8e-a2f32ce058a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468290293", + "DeviceId": "3561550f-3739-4ccd-b3a6-7cddf6e4a7d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638614397", + "DeviceId": "62eb97e5-e824-4d49-a711-1e34ea27e319", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920219429", + "DeviceId": "e38a9546-fe05-4f72-ab3e-cb2a7e09b4a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626742512", + "DeviceId": "f03ba70a-22bc-48d8-a7b6-da66ea6cb3ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821446823", + "DeviceId": "9b28be86-a7a5-45bf-b3f0-56aeeff0d5ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_814617983", + "DeviceId": "684903df-63d7-4d95-abb2-2abc007188cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512039971", + "DeviceId": "a521abf9-ab3c-431f-8913-454e7d00f872", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651615944", + "DeviceId": "b21ca9f4-8160-408a-83a0-f4cef6c0c2f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397970085", + "DeviceId": "7659146b-a95a-41a9-8b7d-53e9c13fb10b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727574834", + "DeviceId": "b6ccdf22-7926-4fa5-98f2-c6811be834e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204035745", + "DeviceId": "52ef9acd-226e-4feb-ba18-f5f7657d417e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_371148685", + "DeviceId": "80022440-6647-4152-983f-ee7e5e025d6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132917647", + "DeviceId": "159a5011-dc03-45be-a4e2-0d56c24c3fb0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128620579", + "DeviceId": "947d8d2f-6b62-4a83-a627-53cfeb96f3f9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193517910", + "DeviceId": "e762bbca-7842-4bab-a2c9-a1a78ffb9f4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_237164946", + "DeviceId": "34d1a697-0c1a-45ff-abdc-bc2a709e6cee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_231859384", + "DeviceId": "0aa558a8-8a9e-4f65-8302-f06b20208299", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "58b36320-b3c3-449b-ba55-ad25d64388f9", + "TenantName": "Tenant-58b36320" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398569854", + "DeviceId": "e96c30b9-3838-4000-8114-bf2613eb80ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927909252", + "DeviceId": "a7d5b007-c6c8-40fe-9c17-ba59c6da9340", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_262944244", + "DeviceId": "9401780d-da23-42cf-8f8a-906ac504f7a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_577057838", + "DeviceId": "20cae2ac-9a3e-472e-8fad-ed7be059fa78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_716101494", + "DeviceId": "5d878661-d550-46ce-ada7-b8d22dc600e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494709650", + "DeviceId": "03aa7f86-c85a-4394-9817-8ab21281512e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_801065314", + "DeviceId": "a9e80516-d73b-4af3-bff9-3c20f8168871", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_473084197", + "DeviceId": "3fe9ea0f-a010-44c2-871a-9e94bd57d25b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_200093931", + "DeviceId": "1e204b36-6ddc-4271-a989-b9ce14a45f62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_434615275", + "DeviceId": "905e6e69-f4f2-4c83-8d18-c03ffb94012e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673329916", + "DeviceId": "1b92e970-5d1c-4510-aa94-ee18e189caf7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382616699", + "DeviceId": "5bef8763-f178-4604-8cc1-c38a0b792522", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121306731", + "DeviceId": "4c8d0574-5a18-4a55-a642-b1604fb3449c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310896233", + "DeviceId": "8b8af24c-18bb-42be-940a-ddb8a8fa4c34", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_551326771", + "DeviceId": "550973bd-d8b3-4863-9ed9-006bd7e54296", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_599667302", + "DeviceId": "67c0c7c8-84c9-48f4-bcd2-cd49271983e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467205919", + "DeviceId": "538f1c30-10ec-483a-9461-58e04bc46b17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568132129", + "DeviceId": "09a8652b-2ffa-470b-825d-6d92eec4874b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_910425298", + "DeviceId": "bc0ba641-93ea-4825-ae24-af5684d4f333", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898031135", + "DeviceId": "382aa458-52ee-412f-adcb-39868284be3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_997576208", + "DeviceId": "0380800f-66e3-4edb-a926-a26cdd4ad39b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "25b0d5b0-3901-4200-b90b-d4ed55fa6ea7", + "TenantName": "Tenant-25b0d5b0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441403375", + "DeviceId": "a28d827d-7c27-4e84-af9e-6d841309059f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566514590", + "DeviceId": "5307c11b-cee9-4e47-8474-94626f15d503", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241908794", + "DeviceId": "de4a824c-91ba-4d14-a058-9294e5a0996b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231208374", + "DeviceId": "3df800fc-16ad-434e-90a1-ee0e60f888db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548005938", + "DeviceId": "5b244d17-4055-49da-979c-158d2dbf84fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924210794", + "DeviceId": "30cc58b7-e183-497f-b90b-f4354862bb3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207229227", + "DeviceId": "5f9a3702-a9f3-46f1-a69a-bc4ddab7cf72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675271317", + "DeviceId": "757230ab-55c5-4f78-a970-1b637d356d9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365972268", + "DeviceId": "12eefddd-1349-47a7-b75f-3697f5b7e91d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116015543", + "DeviceId": "0f1aac94-139a-4d36-8419-e00ecd097c7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337503971", + "DeviceId": "2ff475ea-d4f4-4009-8af5-199dddec5453", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356462875", + "DeviceId": "2295ba85-437e-4eb0-84b3-d37f1dfc0029", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_441106724", + "DeviceId": "6ec8d4fa-7d17-4b23-820e-2d2e8fc2bea5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826133581", + "DeviceId": "9b800dff-9781-4cb1-be2b-211025c847f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825451065", + "DeviceId": "ee2d27ea-fbce-4112-bd8d-cc87ec40dd72", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_833336062", + "DeviceId": "4d12f7d1-c745-4b3c-81d7-5f31acfd316a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_302080883", + "DeviceId": "0a795bf1-278a-4ad2-9f1f-af33e44b65f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_169653398", + "DeviceId": "9bb51129-dcc2-45ac-b37d-9a779dc417fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_991065412", + "DeviceId": "8180f7c9-c51c-48dc-adef-13df4f2dce8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338871543", + "DeviceId": "6144a6a3-f52c-441d-939e-0c83e2c8d5f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_223919456", + "DeviceId": "f21e6323-e438-4a10-b2b2-c6e7a8bcc676", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e755129f-cc9d-44a0-b541-401c500f72c4", + "TenantName": "Tenant-e755129f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_379084299", + "DeviceId": "3798e5b2-3ff9-496b-977a-7338d816f98c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_878382733", + "DeviceId": "a5bb4bd9-0187-4b45-9a5c-b7ba500a3ea2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901118025", + "DeviceId": "34f2d9f3-f0d7-46f1-9a4b-6c0f3a877813", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920229337", + "DeviceId": "ddda93ea-8b38-4a62-b666-b8a44567306d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_796337877", + "DeviceId": "3bcf2632-eec2-4098-96e2-7a2b80094b25", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973341614", + "DeviceId": "04ac4b1c-c3dd-46d4-818b-49f9afc0705b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_660452652", + "DeviceId": "58b7f497-fe93-49a2-8ad3-a0c16b12249f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692230254", + "DeviceId": "56df4911-e40b-4308-8603-f2621773c43a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_138769827", + "DeviceId": "e6b9cca3-75d0-4b46-aa43-a59f5d538102", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461778797", + "DeviceId": "1aced871-4a60-48da-9df8-ba2aa7fcef1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964069832", + "DeviceId": "5b649bcc-c6f7-460d-97a1-36b346dd78ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_607129682", + "DeviceId": "c803e48f-e013-4b4b-8e05-f0b0eb005e28", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357558839", + "DeviceId": "ed714d54-f6ca-408f-be49-1aaf184894ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881255142", + "DeviceId": "cff43056-d604-4c5d-8031-0bde4d4d27d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328274200", + "DeviceId": "e5864f30-5bdb-4364-a06a-7b3c7f667d54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_829629504", + "DeviceId": "9ba79190-05a9-493a-b94c-18b12099cfc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390923992", + "DeviceId": "9a9d4ca5-a84d-4d04-94a2-6f90d52971fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_852785597", + "DeviceId": "e455c762-83b9-47c9-904b-b917de404dc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_527999442", + "DeviceId": "117d1454-e552-4e66-b0a3-24dff276c511", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702858764", + "DeviceId": "187a3426-3997-468c-9afd-da97742e0fff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_164102479", + "DeviceId": "ed529279-048c-423c-adba-90bcf6360314", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "22e086b2-a380-473d-8527-9452be29015c", + "TenantName": "Tenant-22e086b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457864985", + "DeviceId": "b5b1c71e-b163-4f2e-a0a0-26d32130a433", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617743357", + "DeviceId": "1267c8e1-2902-4d3b-8878-c2ffa088e83a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_327866826", + "DeviceId": "f4981fa6-cfd7-449e-a2fb-89d9b3e27df7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761860513", + "DeviceId": "937d531b-e49e-4c27-8dd1-64cb8a1bf604", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288954126", + "DeviceId": "fe2b3765-8af7-4dc4-af86-b4548ffaae4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482041636", + "DeviceId": "2eb1e3a5-8cdb-4d46-8b07-1caf80357c58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549458669", + "DeviceId": "750d953e-3ee6-42d5-8069-1c68bcbda0f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881940867", + "DeviceId": "43ae5fbb-365a-4809-b1e3-84162c7d1361", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818872239", + "DeviceId": "cb38fe76-7bef-4547-b60a-010e4222f941", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_894803601", + "DeviceId": "921aac9c-434f-4ce3-a6cb-f4fc67b4c887", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_212280153", + "DeviceId": "a95d72e1-7bd0-4313-ba70-e488d73c1167", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_978159097", + "DeviceId": "55662361-92cd-4df7-ae49-c44c44522613", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_401909226", + "DeviceId": "19e00365-6123-4976-a4a2-3e24ca7d1fd3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103094061", + "DeviceId": "f788bf98-bbac-4f6e-9695-1752cbc085db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312566092", + "DeviceId": "11d9e1e4-f6c1-46b5-b26e-421a178fe10a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_129217078", + "DeviceId": "1e3c1d3f-2e44-426a-afa8-7baeec73cb31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559263057", + "DeviceId": "866bbf18-a916-4c67-a582-2400437c5509", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499914844", + "DeviceId": "48be87d8-3a17-449d-ace9-c2c1b7cf8386", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486037911", + "DeviceId": "31c05ea6-34f1-4fc1-9ad2-f59c3e16399c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_470825171", + "DeviceId": "d85e5211-02f0-46e9-a2a3-f240dde46f07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_603190775", + "DeviceId": "b52f2d34-79de-4f40-bb69-3efe3d8abc54", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fb9f1f24-3882-48b7-95e1-8fc3122d4400", + "TenantName": "Tenant-fb9f1f24" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261206.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261206.json new file mode 100644 index 0000000..bedbe3e --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261206.json @@ -0,0 +1,877 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_240884006", + "DeviceId": "98ab59c7-ddbd-4978-a84a-721c30474f30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184390625", + "DeviceId": "3f721067-2e08-4015-8aae-231694b22534", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938251726", + "DeviceId": "8179ff49-39f5-48a0-b713-1a0ab31c38b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312852733", + "DeviceId": "55db4118-874f-4df6-be92-27f1d1c12644", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125223957", + "DeviceId": "ecb5652e-9d74-4777-b1f4-557346026d7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492758563", + "DeviceId": "c3a03170-3865-44c6-96b5-3883bd7db333", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548039925", + "DeviceId": "c1592e51-a627-4afc-a7cc-bd3c861d8e9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616499940", + "DeviceId": "00631323-76ed-4463-80d3-8cfaac027c11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_983315491", + "DeviceId": "d3b1761b-6fac-49ca-bfac-d4092ee75d63", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_453452515", + "DeviceId": "58e5984f-1954-48f0-b45a-445c1adbaa2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625579955", + "DeviceId": "88a512f6-dd69-4dd3-a1ba-6370f0e36ace", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558799279", + "DeviceId": "34f60159-1857-4d64-b340-3f7b714d08c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_675044308", + "DeviceId": "d985c817-7b90-4163-9dee-a93111adeb35", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360159731", + "DeviceId": "28887ac8-70bf-4e5d-81cb-ddaaba22edcb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143468545", + "DeviceId": "40363bea-40f0-40d7-ad36-e02fe3fbe2eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765711015", + "DeviceId": "b43808f1-5383-4b72-b131-d8fed71950cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_892047815", + "DeviceId": "cf371d6c-c0d5-4eb1-8b3d-be94e9c0baa0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_528356173", + "DeviceId": "b15da1ea-4b95-4982-a336-d9300ab95adf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_247047219", + "DeviceId": "184d5621-e0a4-492a-bc1a-1fce2d9a8377", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_134460861", + "DeviceId": "3effe74c-8aae-44b0-a25d-7f5989607aa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_125008174", + "DeviceId": "9c717d0a-5f82-47d1-9182-4f0df9e313e2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "339f18f9-b2df-4877-9d18-689647b56259", + "TenantName": "Tenant-339f18f9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_195318863", + "DeviceId": "ee48871f-9aaf-4cc9-ac74-42cada2127e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336330247", + "DeviceId": "338d88a4-9119-4036-914e-8a313808996b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_132905738", + "DeviceId": "5fd1c465-2ee1-4812-9cc2-2a9fb77882df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_770835511", + "DeviceId": "25082375-ff38-493d-8e7c-10e3ef4edf83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774699061", + "DeviceId": "5eb970c7-aebb-42e3-bd2f-5d161343147b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610482543", + "DeviceId": "3150d40a-b4eb-49a5-9158-a798762be6fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_378753667", + "DeviceId": "51c7917a-c88e-40ea-a60b-c3786838dd55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471485266", + "DeviceId": "9e9f89f7-4f4d-408b-af4e-96330ceffa2b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_436228249", + "DeviceId": "ddd796ed-4e42-459f-b29f-e97fb10b33cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_558237573", + "DeviceId": "f7df92d9-9571-471f-a568-0ebef3eeed21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_796555338", + "DeviceId": "15a7170a-1487-4a84-9d27-e92f8392b567", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_758344897", + "DeviceId": "ea7feb0b-2340-4ab6-9387-7a3af835340a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_149566637", + "DeviceId": "6dbb8b73-1d30-4f6e-8889-0f661b35e4a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_195938944", + "DeviceId": "d6b0d2a6-c69a-4d77-9d8b-49d6784e6674", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_369399694", + "DeviceId": "36f21ded-0680-4438-8688-a85b6fc97ea8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_769130191", + "DeviceId": "d59ff9b4-d121-42cb-9b39-78ca9c1a03ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_214322561", + "DeviceId": "a7a69802-8fce-432f-8612-20ef758d9b2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_414185667", + "DeviceId": "ad17fe00-fab7-4023-aa5d-23950349b071", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141175460", + "DeviceId": "4d4ee8a3-abb2-43a3-a82a-f5c4413ab78c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189117753", + "DeviceId": "c68b3f7a-4066-414d-95f1-faa4d66a99da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_803764216", + "DeviceId": "8e507fe4-c696-42aa-a818-e9fe04baf571", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "661dd491-e3ba-4822-a886-ce9ea0132df2", + "TenantName": "Tenant-661dd491" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292497732", + "DeviceId": "f68342d0-c41e-4b96-8eaf-6cf9f5f2aebf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_196607133", + "DeviceId": "e9d2801f-f3df-492f-bed1-427eb1b1987e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_503621325", + "DeviceId": "74fa87dd-b0b9-4494-a156-beb1b77c3ad3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312809336", + "DeviceId": "fab6f8aa-4c1a-4b01-9b72-4c15cb64c689", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438461164", + "DeviceId": "5a74e787-3c62-42d3-8c7f-37795db9af6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346138608", + "DeviceId": "6f4e1079-cf32-4258-a11c-4ee1c33a82f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303797507", + "DeviceId": "253ca20a-cfbe-47d2-bf2d-c636f90eb035", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_266737998", + "DeviceId": "9bef1a57-1c10-433c-b9e8-060010499a51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822092739", + "DeviceId": "8be35de0-d3ec-4fd3-be5e-764a9306a4ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578784296", + "DeviceId": "630e8aae-0fd7-49fc-9f48-200302bf412b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_267868292", + "DeviceId": "c7e96625-8364-4b15-b094-f70a367077bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897724880", + "DeviceId": "786a994b-a22d-4588-933a-5b155c933386", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_453987573", + "DeviceId": "d7bc2346-339a-459d-b417-fadd0e727e69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153798994", + "DeviceId": "56ca991e-a3c0-41bd-b286-d6dde7343dd0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_702962301", + "DeviceId": "f7e7a340-bdae-480c-8840-fc527053bee5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_852641288", + "DeviceId": "8bf4c9bb-068a-4233-b45d-0aa66fb62f27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_638109912", + "DeviceId": "7037bf66-e1a8-4308-9638-c4a9c2fd66f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_222425471", + "DeviceId": "0cd2b951-367f-4d12-8c61-321d64efa2f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885125138", + "DeviceId": "bb4e77d9-2b5c-4b15-bb45-f1b6857d5c32", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802682080", + "DeviceId": "5e33b273-6481-41d5-92fb-98a54e40b074", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_343042351", + "DeviceId": "63cc964e-7175-430d-987a-401dba353ad2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fad78be2-175c-4f69-856c-4e5e5cea1859", + "TenantName": "Tenant-fad78be2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897930746", + "DeviceId": "0f428140-25eb-4c9e-a077-089614289380", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120397692", + "DeviceId": "6ce7fbfb-be4a-43e8-b5b8-6d309c754264", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140535218", + "DeviceId": "3d8127f9-83b1-49ae-905d-16cad47a56d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_357557368", + "DeviceId": "84662cb2-d8cd-4ecf-80db-b139cd4e55ec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_469860191", + "DeviceId": "f06f6f32-ca38-4cac-9f18-c490194fb040", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_445816915", + "DeviceId": "680b1131-7671-4dc5-86f8-c1a6e0dd0f2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_496866928", + "DeviceId": "d391db9b-da3c-48cf-9cab-3c7a107874b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231788921", + "DeviceId": "282c89dc-9be7-4f94-af3f-ced3827b02df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_942387293", + "DeviceId": "0aa796cc-53b3-4ba9-80e2-9d33a0aded5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_238575785", + "DeviceId": "4848d6f0-dbd8-462e-9fa4-60402156a44c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480067067", + "DeviceId": "107d9c4c-7df9-4160-b094-73e547b951d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_410448888", + "DeviceId": "42141eed-97c3-4ea5-ad99-47472af580cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432338942", + "DeviceId": "bbd32ac4-5846-4ead-8763-264c2512d003", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158367115", + "DeviceId": "a02ea566-ae97-4aed-8d01-734ddbdb587d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744038306", + "DeviceId": "248b14a2-5df4-4e11-b706-a56a3482ce17", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_641735330", + "DeviceId": "ba1fec5d-1752-49d0-b291-e9497ae31dd5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643447561", + "DeviceId": "b46e5560-8f82-414c-adf0-11fddce8e257", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_484551338", + "DeviceId": "42ad6675-769e-45d4-841c-6ce8c1ba8604", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925004099", + "DeviceId": "c962294c-e02f-40b0-97b4-7876cdec84bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914757682", + "DeviceId": "20a4c04f-d40e-4f56-b866-5f4dbfadd03b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_126681952", + "DeviceId": "4f5c4580-2340-4a4e-8f78-498f9b55db83", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8dae43ae-45f0-4146-81e4-5f72f25f7f5b", + "TenantName": "Tenant-8dae43ae" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_944653237", + "DeviceId": "b6d9c495-f4c1-402d-a317-6226535c3586", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757002703", + "DeviceId": "9ac10c2f-da99-4349-881a-5321cf4df629", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747202057", + "DeviceId": "be090dc5-c489-474b-9bb2-b4e537753f1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_645585675", + "DeviceId": "69bb2274-dec5-4464-bc0e-e7cd826e188e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_165620570", + "DeviceId": "f28e7f3a-9900-4185-b68d-2028f0673aaa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490955328", + "DeviceId": "e66a1776-59fe-47fc-b681-4ddbd36d966c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_363943871", + "DeviceId": "80bf797e-0f7d-4ca5-93aa-46f002bc6209", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_673253886", + "DeviceId": "6c0665ee-097f-446e-bbef-f463d92b09de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518575703", + "DeviceId": "223163ac-907b-48d9-8c05-b65c0aca4fb4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298932989", + "DeviceId": "8cd61a6c-818f-4ab8-9580-49386530ced8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_534626355", + "DeviceId": "a4411e94-ab1f-4e05-80d1-9196445e6efd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185580769", + "DeviceId": "77f45d20-1e29-4f20-a02b-177fb3ecc69a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_927833738", + "DeviceId": "ea1fb006-af45-4546-ad4c-732a2c7de4cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542228346", + "DeviceId": "b7f45182-6e60-4299-aab3-5093f7c79557", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_263100788", + "DeviceId": "06dfd78a-1055-477a-8c2c-f9326fb70059", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_932987152", + "DeviceId": "9b26d003-b28e-4862-adb2-bfdbc3271d42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_345400739", + "DeviceId": "1a7b0ea6-05af-4d9a-a5a1-79cad7945176", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678241559", + "DeviceId": "fc7cdf2c-a1fd-4e44-922d-9036053a5056", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432643152", + "DeviceId": "af7dd645-26a3-4836-bc0a-6fb2796fcf33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965102958", + "DeviceId": "fb9bcdb5-0e03-450b-a470-abbeffde141c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_976055342", + "DeviceId": "8884810e-7ce2-4a37-a837-30a742fb051d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cd8791f3-c40f-416b-881d-122b59e80248", + "TenantName": "Tenant-cd8791f3" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261248.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261248.json new file mode 100644 index 0000000..49e02ba --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261248.json @@ -0,0 +1,877 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_880963891", + "DeviceId": "1bd60d55-7fd9-4a4b-b61a-cfb590f7260a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578834836", + "DeviceId": "25905d09-7744-4ff6-ba1f-39be10a6e65c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_649278678", + "DeviceId": "4c767de7-eccb-462e-a7b2-812162647645", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917267453", + "DeviceId": "4ff94f8a-055c-443d-85fc-566cea52b1ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491955050", + "DeviceId": "99ae6a74-2cec-4d90-b16f-039cf0571eb6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753853767", + "DeviceId": "0a16ccbb-e001-4264-b01d-1f22b9125fdd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212079788", + "DeviceId": "ad0039da-67a3-42ad-819e-e4cb4ada863a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_384611735", + "DeviceId": "36e646b6-aebc-4f55-9f04-66013245dffc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_112924625", + "DeviceId": "13150203-b5fe-4d8e-a790-bc5cf2c90e95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893751009", + "DeviceId": "2b56b7af-cd65-4c08-ad1d-0a741811e997", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795614996", + "DeviceId": "99d1550f-0970-45e9-9bd2-ea7d72a15649", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556876391", + "DeviceId": "e60a2758-bef8-4a58-9c32-c03c7c9e702c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_787075672", + "DeviceId": "612a2f25-4615-4bca-9f27-4d5260061bc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_676934911", + "DeviceId": "e7d4ed92-f7bc-47ff-a449-00cef5931862", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_419521018", + "DeviceId": "eac43b54-8cfc-452c-85e1-9506bc3a909e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_978725558", + "DeviceId": "3a938fd8-fd96-45ce-8388-dcd5f8cbbb2f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899389241", + "DeviceId": "0bdea168-599a-4d9b-b179-202549077c0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554853348", + "DeviceId": "69b9973f-cf75-4e86-841c-eabfa56675b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406804306", + "DeviceId": "dc173af0-520b-4c6b-a497-8b7016640b4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136532858", + "DeviceId": "fe9423c5-11a2-4313-9980-4fb912ad7f00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_964186287", + "DeviceId": "0eb92b1f-27e3-470d-add5-df55a15bd99f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "834d3661-ade7-4193-bbda-8de10fe4bfa2", + "TenantName": "Tenant-834d3661" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241860385", + "DeviceId": "fb7c59ee-e8d8-48e0-90cf-8e62571ee2f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_695799504", + "DeviceId": "20ada9a4-a306-4277-b2c4-d285ba404010", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330431981", + "DeviceId": "ffb42a2b-927c-40b9-bce7-7b7e7095c013", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397538571", + "DeviceId": "277e7e1a-f000-49f5-b603-7c993efeaf3c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789733247", + "DeviceId": "da1a821c-a7cd-440f-b9ce-8f24caae494f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_879601753", + "DeviceId": "df2cab7a-0e0d-438e-9bdc-10b9631eabfa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_312467916", + "DeviceId": "b210b17c-4b31-45eb-9af2-67882ae78a79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_187018974", + "DeviceId": "7d5c590d-5bda-48b8-8f4c-2a8805e42fcc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276944508", + "DeviceId": "d9e1681d-4019-4d56-9aad-a64728bde7d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225646091", + "DeviceId": "03e6a2c2-253b-4ce5-96f9-9a41e2293598", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170959247", + "DeviceId": "df0f6aec-e5cc-494e-96f2-c8e0780ed9a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973480612", + "DeviceId": "df8e393c-14a4-4f0e-a426-7f1a7a63bb46", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525496189", + "DeviceId": "66422fc3-0b0e-4ebe-a65c-56c7935d6fef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188858410", + "DeviceId": "7b3c5d25-45b2-4af9-95a3-f1eaa7b5b4f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418379114", + "DeviceId": "b4fae1f2-a10b-48b2-a5a8-abb1fccac73a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_859479803", + "DeviceId": "8394cd46-a2cf-4169-8db0-9c8168066f1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110372113", + "DeviceId": "8e4df45f-3caa-4a8c-818e-f15e4dd835e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286099271", + "DeviceId": "33720aaf-d64e-4b2b-b6bb-ea613efba48a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_256538921", + "DeviceId": "d26104c9-7522-41ff-b060-03a92808b23c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659810039", + "DeviceId": "8f7d72f3-7a68-4ddc-be98-4423e5bf912f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_377032227", + "DeviceId": "c34c3f38-ee38-4244-9727-46dc0114c502", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b4b2eb60-142c-4034-9b01-f9459a231017", + "TenantName": "Tenant-b4b2eb60" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_766683507", + "DeviceId": "197caa11-4c22-4331-867e-fd1780c68ba1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650811547", + "DeviceId": "b098973f-3058-431b-83a0-b660133c41c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362353995", + "DeviceId": "10cfb4ee-15ae-4fcb-acca-49fb396386c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_120277539", + "DeviceId": "ecb3cb8e-10fa-4030-b221-8f6fc55d3253", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_490109164", + "DeviceId": "98cd418c-2105-4f77-9720-ec5ada2beadb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_434248133", + "DeviceId": "e3fd2850-f133-491f-b37b-36c1af1ff462", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_119266111", + "DeviceId": "5cff790d-80a2-450e-9794-a80ee70a742b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307121447", + "DeviceId": "42d7dfe5-d4b9-45a7-99a3-902d56e90673", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_853166251", + "DeviceId": "603d5937-0ee4-4377-94c0-59ed2a9630ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_816813138", + "DeviceId": "a238a687-b74c-402e-8aa1-8aac259a36a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_311851274", + "DeviceId": "3fe2dd1f-3349-49bc-9263-656cf10a33ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_365057276", + "DeviceId": "e2ad3c3a-88d5-4759-8664-77ed90299e68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342589580", + "DeviceId": "ceb2f7b0-8190-4c2e-a0a7-9a9485c697b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611901797", + "DeviceId": "7a4494be-6a8a-44e0-a8be-4a6b70d44e72", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110404254", + "DeviceId": "2f6766d1-f88c-459a-86f9-f553bfcc773b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_754331675", + "DeviceId": "3075b88a-6d43-41aa-9689-fea7b75e5d0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_341794433", + "DeviceId": "e072d87d-7efb-4bcd-93b8-5c9abe1be028", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278877239", + "DeviceId": "d1d82179-6a68-4090-b45c-24f9b051f522", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258919252", + "DeviceId": "6a92ebed-f882-46ef-82ca-ccedaf2d856c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_870706419", + "DeviceId": "d62c2a34-ed5b-4227-b8b7-858e75d67300", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_356802134", + "DeviceId": "b27f221c-cb61-4618-be9e-32896c36c24d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "53295ebb-d65c-464a-a8b7-4842da0795a9", + "TenantName": "Tenant-53295ebb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345426341", + "DeviceId": "bde2baeb-4fdd-44b1-8395-5b6704ee5ee5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991963162", + "DeviceId": "b4524914-8f12-47b1-9bbc-a3545449355b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851027517", + "DeviceId": "0ee2d753-c4c4-4979-a8c4-833df95488cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_918072707", + "DeviceId": "f05d0e62-f126-4428-9d4a-9a7511ce1832", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_722178564", + "DeviceId": "e819fac8-30db-4dcf-be13-179b4074418e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514907653", + "DeviceId": "fa95ea51-6ede-4748-a51e-be78bf7efdf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671480728", + "DeviceId": "1b0cb7c4-f51f-44fd-96e8-df5ddee3b8d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228168499", + "DeviceId": "5bfc3b96-4246-4f63-b4a2-c1097994b2f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751134611", + "DeviceId": "3b7f5cc5-1fe4-4454-9c82-8ee0070547dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_583360931", + "DeviceId": "5927734a-fba4-4de3-ae78-22089554099f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_868862844", + "DeviceId": "094c1230-198f-4d9b-a8fc-65b0edeb1a7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_870446382", + "DeviceId": "6e08d6e2-dd81-4da9-88ab-0053ec663986", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621362653", + "DeviceId": "2af75abc-345b-41af-a7da-9dda438ef163", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450557206", + "DeviceId": "5350fede-8e02-483d-927d-ebfd5b70191b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644066965", + "DeviceId": "760ae911-5f50-4440-8fcf-09c498325476", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611569753", + "DeviceId": "a18de845-1dd6-4b38-b784-10f86b99bcca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_668007311", + "DeviceId": "acf5d0a0-f6ef-4eee-b95c-3bb9b3687643", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_536983177", + "DeviceId": "e203829f-ba4a-4596-87e9-d5e25fcd937d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_876334926", + "DeviceId": "2b8cda95-89cc-4add-80d8-0ef9da0a21d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374805931", + "DeviceId": "d2559129-7c62-41cc-b328-3dcd9ebb13df", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_575675469", + "DeviceId": "5daa6408-fc37-47f8-82bb-111441127987", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "42912312-980d-4e06-a9cd-a0c1a3b0b7c7", + "TenantName": "Tenant-42912312" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962107268", + "DeviceId": "3e1c5293-823c-4e90-8498-cece6bfb798b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924490308", + "DeviceId": "5e31e145-d26b-4d44-9469-60289bf2298a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891920714", + "DeviceId": "31308bda-2eea-49ca-9583-96396addd915", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602827477", + "DeviceId": "57349e92-b4d8-4fbe-93e3-21c46d68b6fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_348514242", + "DeviceId": "59f703d7-9ce0-4153-b6a6-d95bebe6750c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525089678", + "DeviceId": "34cdf50a-7e11-4a76-bb24-6e448aa0ef2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_903404720", + "DeviceId": "a34a4059-5b5f-4ede-ba95-10c492a678a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732135809", + "DeviceId": "6efa4365-d381-4827-915f-a661a1addebf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826227582", + "DeviceId": "82807bff-1778-4f25-a438-c328e4648894", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290766599", + "DeviceId": "79417fc3-0089-46bc-85f9-8417c2945b4c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_260634390", + "DeviceId": "5a1f93c1-12fb-4b16-a0b3-e8f6c744b81e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_847497707", + "DeviceId": "222daabd-746d-4bfe-874d-191111b79c4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181999091", + "DeviceId": "8fb14a41-9611-4e94-aa5a-5d0c80d8e204", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434464232", + "DeviceId": "4415c970-a4af-40f1-b60e-6bbaa4a84318", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141394465", + "DeviceId": "b1c2e6c5-0060-4ac3-8364-c63e9c837d28", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_518549125", + "DeviceId": "a41e5e31-c1fe-42a5-a388-112075599648", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153349132", + "DeviceId": "292b9e84-e273-4ab3-8f5d-9f7abb4e81c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382776516", + "DeviceId": "3b9cf20e-e66e-4342-9b7f-b50e13cd83fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_477432328", + "DeviceId": "ffcaf204-61ba-4ea5-940a-6b0affd17723", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873101651", + "DeviceId": "1e7651ff-9328-400a-b5b5-b4c26ba5dddd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_112557272", + "DeviceId": "d10afc7d-6ad1-4163-8d27-024a46b33916", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2447f54f-527d-4546-bf78-39b0053ed9bf", + "TenantName": "Tenant-2447f54f" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261249.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261249.json new file mode 100644 index 0000000..3ce295e --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261249.json @@ -0,0 +1,877 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207389818", + "DeviceId": "451e94b3-14fa-4ed1-8b50-d61156e007d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_574925911", + "DeviceId": "4eddfe17-29b4-402a-8264-842bc900bcf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847416981", + "DeviceId": "cc89e055-bfa6-4152-bde7-6a51219075ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260774450", + "DeviceId": "51360599-6f8b-47bc-9c09-0397d907a84b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939823699", + "DeviceId": "1e4a2d30-9e12-4f70-b20a-5a5588c14faa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613273267", + "DeviceId": "c30a1ff0-85e5-47cd-a456-dbb7390ec99f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548197219", + "DeviceId": "8fe648f5-e9df-46e7-94ae-6a371ecd6e3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_970853043", + "DeviceId": "35c4bded-1f42-466f-b7f3-5b0a4b536040", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391140430", + "DeviceId": "9b0a1347-62f9-4ea2-a97b-b4d26eca328e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_180185552", + "DeviceId": "a7ddfe3f-a7a3-4e72-8ba3-e87db3cd3bf2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726634586", + "DeviceId": "135e5ce0-3f95-46f1-ac4f-257db6e53a99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_855364825", + "DeviceId": "65eaec73-c76e-4b11-b571-5392a2ed06ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591249459", + "DeviceId": "312234d7-2c25-4eac-9f74-0b272831fe55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227376300", + "DeviceId": "19774070-e2e8-4ce4-a2e7-9c434968854f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_668405095", + "DeviceId": "cf97c53d-0a48-40f5-bb5d-af7012177dfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_577590560", + "DeviceId": "3958976e-65ff-4d7c-8eab-5f05a7779820", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242208460", + "DeviceId": "d25c823f-006c-423c-a9e9-186d6421a260", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_327275853", + "DeviceId": "7cf45059-5e84-4f6e-8c49-a1f9fd2c98bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_192999844", + "DeviceId": "a35a0195-a689-42d8-b764-156b95d97eb5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138233764", + "DeviceId": "2dba8367-e7f9-4dc0-a273-0362b16a28ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_429845740", + "DeviceId": "315007e4-bda1-4ca4-984f-ff4980e0fcb6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "237e14a7-d50b-4836-8148-08397c7dba70", + "TenantName": "Tenant-237e14a7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_713947681", + "DeviceId": "3b5cecca-82c7-4f98-821f-c4e491287feb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_821063067", + "DeviceId": "772ad6f3-5709-4bab-919d-2f8d5e18b3de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739890957", + "DeviceId": "7e01fbaf-ccb1-49ec-baa6-401f782de170", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433798557", + "DeviceId": "a058ceb7-4e3b-41a6-b469-bdde305226c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_977501789", + "DeviceId": "b3c15829-1ed3-4024-b071-f3b784e611fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_359568725", + "DeviceId": "404f175b-ef48-4dde-a950-fc2d3e58a0fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_701134755", + "DeviceId": "2aec4900-24ab-496b-b4a8-1324de53e149", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_189490552", + "DeviceId": "b5458fa1-5866-4861-9732-35fc4c1dbcfd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155097453", + "DeviceId": "9ff5e676-3ecc-44be-95d2-628f7f860b86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_503255058", + "DeviceId": "b5af2d61-6e3b-44ef-be37-ecb5ddf2c08e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_421633608", + "DeviceId": "d7a45f63-f883-4bbd-a8fb-b8ac726b7476", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351348467", + "DeviceId": "99d3170f-1bcd-492a-a607-08393b24b10e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854860270", + "DeviceId": "5968acc0-71ba-4550-b4c4-d9effca95d5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334427600", + "DeviceId": "b7b16b4d-7ad2-4756-98a1-c1e1555185c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_611594997", + "DeviceId": "412476f5-d846-4ed8-9767-343b07dc5689", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_216138526", + "DeviceId": "aaba6569-95eb-449a-9365-082fce7ad7c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_984858802", + "DeviceId": "4f893db3-6b26-4379-8d92-8dc29c96e8d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929807937", + "DeviceId": "47c05f54-1927-4b6d-9e50-7e136955f663", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802570245", + "DeviceId": "3d11c106-f136-43ff-8296-e2bd939d38ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_229054490", + "DeviceId": "7cedc392-c49f-40ac-8b15-ac558eda4733", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_870031607", + "DeviceId": "ff314734-d74c-42d4-b056-865b3027d7f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cdd1a348-1779-4118-8b01-674a97157c94", + "TenantName": "Tenant-cdd1a348" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175685206", + "DeviceId": "8195b071-d8ea-48aa-9ed7-87fb7e0aced4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678251841", + "DeviceId": "ea7d53bb-4333-4988-88b6-708ef7cd57e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781156666", + "DeviceId": "7e698e89-fb70-4faa-b5ba-6ae757772b13", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_503242394", + "DeviceId": "7debe045-8595-497b-a75a-63209fe7b057", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509717859", + "DeviceId": "cf2f81d5-5892-4ce6-bef6-14f25a13fa81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831562880", + "DeviceId": "86087423-2363-4186-b8fc-98fdbf782744", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596643438", + "DeviceId": "59eac11d-c18b-4a3b-8a7b-70225aa8e8f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514441764", + "DeviceId": "00e63257-7ab9-4935-b509-32d52444b6ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_150692008", + "DeviceId": "7fa9eaca-8af8-45ba-aaa8-ded4d976569d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152863816", + "DeviceId": "32d736c0-eb60-4159-8ad2-6b9a35255fec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347055670", + "DeviceId": "d9cf7eb1-11d7-428a-a76b-48b095843757", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_968099235", + "DeviceId": "607c6d2d-9864-4835-bf9c-3b23e0d40776", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316494479", + "DeviceId": "122337dc-d3b1-4a5b-b97a-2c4d1326ee6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_976733678", + "DeviceId": "91036880-cdd0-411a-8066-30969ea16eb7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_544812613", + "DeviceId": "df26c628-ec11-4d85-b1e2-8cd48ab47cc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_377379037", + "DeviceId": "e37838a1-3e53-4ea6-9eaa-46cc7bcca1e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_994572795", + "DeviceId": "317bb109-0f3c-47bc-b2f1-36b4b71b2395", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766787975", + "DeviceId": "03182e4e-632f-4eae-b0d3-96754b9d2a00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711849866", + "DeviceId": "0bea6e43-47bb-4c9c-92ac-5e619eb518b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554673334", + "DeviceId": "0933b48d-0676-4467-ab36-e0eb7bdc41ce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_960097827", + "DeviceId": "6e51a1b3-58bb-4c5b-8dbe-5c63e3311e24", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8f0ee629-9056-414f-9391-39b5934c9964", + "TenantName": "Tenant-8f0ee629" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_975835162", + "DeviceId": "6052cfff-cea0-404b-90e4-17294f52226a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742851463", + "DeviceId": "6312696b-706b-4262-a785-a078295a28b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168503484", + "DeviceId": "274fa155-2a65-45f5-9d28-95e3e689572a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_908911198", + "DeviceId": "936b2392-723f-4630-a0c1-e20565a1a258", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_857980575", + "DeviceId": "5f1ee0e6-b94e-44de-961b-036e70eb9a27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333616013", + "DeviceId": "c4736457-5e86-49df-bfb5-25624e5daf22", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131802572", + "DeviceId": "877da166-69c6-4d25-aabc-20f8cca38ad0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579270753", + "DeviceId": "0d4839f9-a5e9-4e7e-9a1a-e4c69b829771", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_797426403", + "DeviceId": "7a219a97-1da8-4cb0-ad41-ac94f235a747", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_670527724", + "DeviceId": "524c41ae-134c-4ca1-9a06-48ada0f00bc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566479851", + "DeviceId": "eb4cc431-035f-48f6-a1a2-4959a9df13d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_194839268", + "DeviceId": "07087c46-2b4c-4616-813b-1b591020b1e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_774272059", + "DeviceId": "90722440-3e75-4f3f-8fb6-44fb2e5e45c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945004244", + "DeviceId": "600622e0-f008-4ac8-900c-312cbb63e8ea", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357004158", + "DeviceId": "4e58d3ad-c82a-467e-a0bb-59a35245df0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135751419", + "DeviceId": "ff6f6f80-cd8e-4bfc-b8d7-d221785fd857", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102482551", + "DeviceId": "5409dcd9-9bdd-4c43-a0f1-6d5a90830e8b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_581577528", + "DeviceId": "954f2bc1-1b52-47aa-aac2-2242def712b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130562910", + "DeviceId": "358fae39-a425-4cc4-a426-c59eb1930f2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_343421796", + "DeviceId": "c0c897c6-d51e-4caa-8cbd-6c59a6d58723", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_732366944", + "DeviceId": "f9a7699d-7ef4-4c83-9236-09dd25dbb7d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f463bd56-6866-46c7-ba3f-b60e6178791e", + "TenantName": "Tenant-f463bd56" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_384684660", + "DeviceId": "7484d71e-4248-42e4-8a09-0166b2954eea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897139361", + "DeviceId": "e710be75-50ec-43b6-8b8c-7c6d03b0c35c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_258140429", + "DeviceId": "de67cc3c-30cb-483a-b7f6-78996f7e4773", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_929620750", + "DeviceId": "97d3ea2d-d433-4d38-a134-696e9cbc2b1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365555447", + "DeviceId": "26d0cdd8-321e-48fb-bcab-3b62afc98a83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752517891", + "DeviceId": "9358fa4b-d6c2-40b0-85f7-7185a904d5a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276897374", + "DeviceId": "e82dc740-69b0-4c85-8c8d-b2390c2763bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_135520640", + "DeviceId": "e2893eba-bfb8-46bf-9ebd-765986520129", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_316352340", + "DeviceId": "44fb0b0c-5615-444b-8158-4d5b88050e74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834056180", + "DeviceId": "160c4d26-7545-46b2-ae09-24d999f468b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469794119", + "DeviceId": "004b1278-4cf1-4329-864b-96ccfb251733", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_738468443", + "DeviceId": "bee30dde-898b-4242-bf5f-4a78177d2748", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_151940638", + "DeviceId": "3c85d4c1-dba1-4587-9838-19d231fce86d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_786770047", + "DeviceId": "ffcbab65-ce8f-4082-8280-3eaa39589a82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_685176532", + "DeviceId": "2f82b88e-8c04-4673-82a4-5e8511efceb5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_571455225", + "DeviceId": "aec245a1-74ec-450d-9f1d-b732a8c31f36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735350868", + "DeviceId": "9818ff48-6a7f-437a-866d-6a3dc12f9362", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_350218457", + "DeviceId": "6d62c540-c40c-4cfe-bd5a-868048b6b877", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609444865", + "DeviceId": "b25d7814-c8dc-48a6-819a-950f67df0698", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_426674003", + "DeviceId": "84e9c148-6686-4e99-bee9-3b7c8ab3e90a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_777588011", + "DeviceId": "f3800be3-cfe0-4d4d-a765-be7312258f73", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "33a37192-52c8-4e75-b693-9c60371e110c", + "TenantName": "Tenant-33a37192" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261250.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261250.json new file mode 100644 index 0000000..77a406c --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261250.json @@ -0,0 +1,877 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410854792", + "DeviceId": "f01b9541-9afb-4e34-b147-f1e81b653a24", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409162089", + "DeviceId": "46afcaeb-de47-4d40-94f3-b6b81ae3c31d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466183126", + "DeviceId": "9f5a50e8-992c-4f21-8ddb-77883b814d8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307696857", + "DeviceId": "ca5cc6db-48fd-4585-bae0-0b63df398bda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668857744", + "DeviceId": "272d7a6e-c22e-418a-b5fc-e567d307f472", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_306739979", + "DeviceId": "357706d3-cd62-4531-8f40-f7def0d3451f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336574041", + "DeviceId": "82260e21-4065-4d1d-8403-d9053a2aaff3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409807925", + "DeviceId": "23db7401-2738-4c4a-9d63-19b0fd3b3366", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804011636", + "DeviceId": "c81eda7e-fd93-4ee1-8c09-8c8c2f1dbbcc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_403586744", + "DeviceId": "50c9324a-fe0e-4652-8a46-a80c4ef6346d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360389801", + "DeviceId": "b29d77d4-41e8-4248-9317-419c49e570f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906990003", + "DeviceId": "bcd05968-33f0-4335-a66b-b7798cafca12", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381307346", + "DeviceId": "55d887e3-edcf-44ee-ad12-ff3b69173332", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_682014358", + "DeviceId": "33f3be09-354a-4bdd-ad96-a1a596c7b724", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_608217124", + "DeviceId": "5b130db5-adee-431c-842d-844bff8ee5fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875393090", + "DeviceId": "4f86a992-c930-43e7-9d32-74a8ecd13c14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761557879", + "DeviceId": "1dbcaffd-af80-436d-8855-c5a1a757657c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_356725979", + "DeviceId": "4bb30985-349f-49f5-b556-9034639611a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273602817", + "DeviceId": "26fc1e2f-c80f-40fc-b7bc-c4ff22db3e3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_685370893", + "DeviceId": "9d3da8d3-0f40-4092-b8a5-312aa8289dce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_397214377", + "DeviceId": "abf60c7e-9938-411a-8537-e393e99364d0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d66acfe9-7370-4f42-8ef9-b4a38c919078", + "TenantName": "Tenant-d66acfe9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938618081", + "DeviceId": "1e913eb7-a03d-41f3-8c3f-366e0f2f0335", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514813551", + "DeviceId": "54a11b72-1e30-41bc-be36-3975f412331b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_861276751", + "DeviceId": "297c5f5a-3886-4e1c-a857-150b903cb8f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377540546", + "DeviceId": "bdd7b3f0-cb9d-40ab-afbc-4abf20e3ecb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364492973", + "DeviceId": "93baa36b-573f-4e83-a693-199c80b92bd1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358791733", + "DeviceId": "962f75c8-2a8e-4dc4-8635-6b113a23d1e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201845715", + "DeviceId": "89ccc198-66f4-44ac-ae3e-7e42cf64c8a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578949069", + "DeviceId": "b2eab618-a416-44f3-b130-33be7815b610", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_331059433", + "DeviceId": "144dea6d-e629-4e64-848d-5ad2a5bfd8d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_291933860", + "DeviceId": "fa938c91-c8be-42fa-a383-953ca3a43919", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_671302438", + "DeviceId": "b280a70f-c3b2-4e24-b0c0-d196affa807c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_212743817", + "DeviceId": "4cb6545a-8723-4439-88e5-cb3ca80488e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_117888631", + "DeviceId": "6655b4e7-33f7-49d6-9cc7-963f52ce3526", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359114838", + "DeviceId": "bc4accc1-1330-4d43-9731-250ce5abfd00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777549513", + "DeviceId": "a0ee26a2-62e3-48c7-be63-d9677fc8ccf1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944300676", + "DeviceId": "489fb242-7f67-4bc5-b48d-7885a30ed6f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_445741553", + "DeviceId": "d29242cb-2b43-4697-ada8-6892d087d3e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321977332", + "DeviceId": "c7cdf3cb-629a-4246-99be-cb2740b45e06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561591580", + "DeviceId": "cc5cd9b4-7b67-43a7-8cfd-b181072ea2bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552738392", + "DeviceId": "b4fe90d9-9796-4f20-8f10-2c9ccdc73c33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_622237929", + "DeviceId": "e77c35ac-d019-47ea-896c-4ab6080dca13", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87781be9-6af7-441e-89e8-60895fdc2044", + "TenantName": "Tenant-87781be9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883874688", + "DeviceId": "03f81ebb-4bb7-4942-b52c-a21cd8b11581", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429596260", + "DeviceId": "88df65b1-3811-41ad-9548-f9eb8e9a526b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409410072", + "DeviceId": "c57abaa3-9248-421d-9b22-55745f23162e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668469135", + "DeviceId": "bc3156cf-0bfe-4b8a-83c8-a50e9730e3af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893951519", + "DeviceId": "d47d89e3-34b4-42b6-92a1-78c1baf09414", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_375836185", + "DeviceId": "75903e9c-d506-4121-95ba-2f5466767527", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457738036", + "DeviceId": "7799f9db-b043-4c02-80ee-e096c2652bfe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677486059", + "DeviceId": "2bbdfbe1-d312-4944-946c-dbb71aed7029", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575041507", + "DeviceId": "c8927bbc-a349-4a9e-97e0-be465e904d47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514830489", + "DeviceId": "159df898-4fc9-48f5-99dc-f42d0b8e7466", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650289115", + "DeviceId": "6be9391c-d62a-4f83-972d-51306242df6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_448338767", + "DeviceId": "6aa2129c-d307-4436-af90-ab325ccb75f7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456746380", + "DeviceId": "554eb47a-609e-461b-a638-1c5cb1b7aac2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_711547977", + "DeviceId": "2db6bc8a-6525-4a61-b0c1-4da1f224c460", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187227215", + "DeviceId": "bc962afe-6d0a-480e-82c9-4a7413023f29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_333160282", + "DeviceId": "7402e3a5-89ae-457a-8184-c22c81413c7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_498422844", + "DeviceId": "d91f7074-fafc-44cb-b3f4-6ec6912bf5de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935501876", + "DeviceId": "8b0e5f71-8d1d-49a8-97a1-3e7688e9f786", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718795358", + "DeviceId": "9c098b2f-0811-44be-8d97-130fa441111f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853471866", + "DeviceId": "4aca8dad-aac6-49b3-a858-792f4fcdf421", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_186908709", + "DeviceId": "871301e6-a5ef-4695-859f-19439a389833", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80e5331c-723d-40be-b202-4141f3951289", + "TenantName": "Tenant-80e5331c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_354698180", + "DeviceId": "116d8872-725c-4e77-bbf6-f4d237a9b02d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534567920", + "DeviceId": "92870c40-aa7d-43e3-b148-b658166b9ef5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803514046", + "DeviceId": "d626e3c1-6244-4d1f-baf0-ddbd958cb447", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905308856", + "DeviceId": "c8fa7ce8-9eea-49f4-9168-d1146514c1ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305001703", + "DeviceId": "57f80bde-2f1f-4fbe-b870-a7ec19c06d7c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842211896", + "DeviceId": "15744135-bbc6-4b87-a158-0913e906444f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_173595826", + "DeviceId": "d3b1c14d-54d2-4ed7-8be5-10f770deaa93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951110314", + "DeviceId": "44374ff6-7391-47d4-ba34-a2fc3348d97a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972286736", + "DeviceId": "a944d05a-56d0-4059-8e64-82501908def2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665602645", + "DeviceId": "fb36ef38-93eb-461e-9fcf-b89284d993a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_903961623", + "DeviceId": "6baf07f6-6cf7-4e77-a14b-d8533554286e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_246864713", + "DeviceId": "b324692a-1f46-430c-b865-e48c02ec8dde", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622407203", + "DeviceId": "be9458cc-4d07-4e8b-82a3-d476d4716fb1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_205005423", + "DeviceId": "6e55f23f-ae00-4586-8fd4-badbfbf12ed5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_707068060", + "DeviceId": "d2cd31e2-c148-4b80-a827-3c6c869b826f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168187491", + "DeviceId": "1605659d-c304-4f75-b78f-cdabd263d220", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427323561", + "DeviceId": "fd31dc55-16f6-45ed-9d6c-e3c2be3a0807", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_982563499", + "DeviceId": "d528b917-fba6-47e4-8a22-01749c47ac0a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_632518246", + "DeviceId": "0cc358e7-5d61-4731-9c16-b550f4400a26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858884431", + "DeviceId": "55e90d41-a469-4f90-9eb8-95c01cd81180", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_229363994", + "DeviceId": "78e876dc-242c-44ae-94ef-cb896cfd2ffc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ef575aff-23ef-421c-9e05-a4e08afcc61e", + "TenantName": "Tenant-ef575aff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_867288220", + "DeviceId": "2236ea6d-8ebc-40ff-bd56-3dc81bdad513", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_479740896", + "DeviceId": "853f5fe6-360d-46d9-8c86-a9e923bf12b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_231251760", + "DeviceId": "ac6d489d-2aef-4c46-b201-1bf47406c826", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259210668", + "DeviceId": "46e356e8-9911-4994-938b-a3d781c8478b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572911995", + "DeviceId": "89f8597f-7888-4562-8b26-4fc18f8fe67b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_917253073", + "DeviceId": "a60ba83f-28e1-47cb-bfe8-3c3235cbf96b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783100888", + "DeviceId": "f489898e-73f0-458a-bde3-bb3f039d1ca0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152549163", + "DeviceId": "eb1efdc5-9c48-418b-a767-9f58b3494cfc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131048251", + "DeviceId": "348cce3d-59db-474b-9640-31dc29697de1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381281182", + "DeviceId": "9ec65f3e-90c4-4f5e-b6fe-74ffa5482b1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558115391", + "DeviceId": "390ebadf-be4f-41cd-9b67-b0107ad37210", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583290463", + "DeviceId": "dc69f6c7-7370-4b1e-9364-bd96efad4c60", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935301075", + "DeviceId": "504b531b-655e-4380-afd1-fe0d779063e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866462416", + "DeviceId": "123daf53-9055-463a-b74d-8478f9959804", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416169773", + "DeviceId": "1fe0b8d0-60ad-46b7-b703-6ba603a4664d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_174797987", + "DeviceId": "dff98500-c5a1-474e-9a12-a80da2324b63", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_937928805", + "DeviceId": "3fc68aca-24f0-4935-a1c4-187562e1fa8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439229378", + "DeviceId": "ccf6031c-6b83-4902-8655-3d3947b96fba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_344797360", + "DeviceId": "86808f5e-58b3-4a7b-8c52-4275bfd48d31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321877299", + "DeviceId": "2b68e52e-7f4e-48c5-a9d1-b3f5518ffd9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_132286457", + "DeviceId": "69ad5edb-6f26-4428-b8a9-4b748e6f6933", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9149ed4c-d4de-4a23-8f44-26b50c76d5f3", + "TenantName": "Tenant-9149ed4c" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261251.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261251.json new file mode 100644 index 0000000..6c7f070 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants5-sensors100-0306261251.json @@ -0,0 +1,877 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_979319283", + "DeviceId": "8a70b32b-b91a-4a63-afd3-9d67bd6e417c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727760801", + "DeviceId": "6dc5c028-f221-466f-90a7-c0b78fd235b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_971139381", + "DeviceId": "06e17d3e-ca1f-4ff2-b045-fd4f7bd34a66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904004307", + "DeviceId": "f7f47d8c-6fc6-44de-8cd6-5e246b01e858", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_196493464", + "DeviceId": "1b5bc0aa-c401-40d9-9bfc-7bd1f6b78424", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_607525102", + "DeviceId": "4cb4ee44-4c33-4508-9185-6f44be83ec9b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626056992", + "DeviceId": "fcae55e3-4376-4a54-b17c-f73fef158ffe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545702328", + "DeviceId": "a69a1085-14c5-4f8a-9324-a060bb4e673e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264520782", + "DeviceId": "b16b6480-8fe1-471c-b0b4-fa1a1a20b305", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783765476", + "DeviceId": "7d9b4704-594b-43bd-8401-346e3af043b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_815201228", + "DeviceId": "7622d17f-b1ea-475f-9e9a-495f9c75bfb6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637436555", + "DeviceId": "2a69d3d5-61cd-498c-9218-cc120d884d5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660846636", + "DeviceId": "fe51f41e-ff3b-4b3a-b48f-a899c63d4524", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642356137", + "DeviceId": "fd0604a2-0e7e-4ab3-b72b-d6211c90e255", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_671125590", + "DeviceId": "7e10f20c-e317-449b-81bf-5f0711018e23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496307430", + "DeviceId": "3e27429e-8502-449f-9498-764eabcf7b29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547314708", + "DeviceId": "850e6230-6938-4443-9097-030f474a43ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_130858693", + "DeviceId": "9bfde93f-7172-4d6f-a813-9e234ecc530e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_565548120", + "DeviceId": "06d35492-249a-4cc6-938d-47c4bddb6578", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476004403", + "DeviceId": "5c595acf-963d-4974-936c-1e1f403f06f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_703762624", + "DeviceId": "41f75453-c07e-4890-9374-03c9dd3f608d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b2b2d9a2-acc3-49f4-b91a-e14c0955246d", + "TenantName": "Tenant-b2b2d9a2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_586979146", + "DeviceId": "5e3a823c-effc-4125-a3fa-9027074fb06d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982054529", + "DeviceId": "7687a87f-1bf2-4a5c-bf42-9c93b7c0d62d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_854903363", + "DeviceId": "72425258-f80d-4fca-9447-16f6b8e7abec", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_505038042", + "DeviceId": "b8a96e88-09fc-4ee7-8a41-abdab90a1a38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_981677308", + "DeviceId": "ac2d1d42-e23a-4037-9ab1-25f29dec9c50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_877502590", + "DeviceId": "f0a6c37c-f96f-42a1-ad53-84ddf970aa2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193398961", + "DeviceId": "3482db39-986a-45f0-b478-949eb8247163", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678603396", + "DeviceId": "5066747e-2cff-4f88-a603-92c234a1dc19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249899478", + "DeviceId": "e9f3320d-036f-4f03-98b2-726a4c2540cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927981544", + "DeviceId": "24a13de6-f03b-49cb-9635-a6b5cbadc15d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592307730", + "DeviceId": "8180f777-0ea3-4074-aee1-dc9dc88748b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_816305081", + "DeviceId": "ce909258-7a4a-4cc9-b948-64b3fdc30183", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_357251812", + "DeviceId": "33c4336b-a403-4c4e-af1a-e60b66b2d513", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_892320349", + "DeviceId": "ef21ff56-5f98-4cd2-96a0-12b3c7ddf67f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_498246618", + "DeviceId": "2c1e9c1f-aac4-4e6e-bfd2-8b1157a8165b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766552230", + "DeviceId": "a29fdf49-04a2-45eb-b244-f7b014c60b99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_554696730", + "DeviceId": "5096c42c-b314-4524-b31a-947c05cd8fe8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_192736387", + "DeviceId": "a3ef1a59-4020-406c-8896-e7db11da55e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376238619", + "DeviceId": "60564c89-6c64-4dfb-9a62-7a12b8f553a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568715700", + "DeviceId": "d90bcafc-b844-4484-9927-f0cdee0b87a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_753093873", + "DeviceId": "bd053b84-5537-458a-b679-3bba4183c102", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0cf59b27-84d1-4a91-80f2-4e107a7cec09", + "TenantName": "Tenant-0cf59b27" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706301261", + "DeviceId": "f9b475d8-e0a2-47cf-9f69-5d8212b6535b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_557677773", + "DeviceId": "4968592a-7d19-4c9c-9d5c-5d161c7426c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307191196", + "DeviceId": "f8f86489-07f6-43af-9f46-d5edefcffec6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_481804822", + "DeviceId": "c5321126-636d-49ac-94ea-c28f257f34ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849420648", + "DeviceId": "c4108789-47ae-44e5-a628-455e0b6c23fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412610031", + "DeviceId": "13d61849-f273-4a08-8814-e7cc5d44bba0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_558341290", + "DeviceId": "de9aaa4e-f5a6-48d8-b34c-7ac355754125", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948317870", + "DeviceId": "59e4b9ea-0882-4e91-8526-489e548aaa10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_965292682", + "DeviceId": "be6ab1d7-2c84-4edf-a234-a860014502e0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928724435", + "DeviceId": "ff7cda0a-7a04-4818-aff0-44527f3b4a7d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_923539902", + "DeviceId": "ff84b8c6-23bb-4298-aadf-f9fdf6075573", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_649995959", + "DeviceId": "eab629b0-af63-4319-b038-f441fa49aa54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660689218", + "DeviceId": "e5671fef-69de-4e59-a269-43c0537c906d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625170989", + "DeviceId": "70f6feed-c33e-4172-a601-e077e7464f43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_192944735", + "DeviceId": "58da983d-9db2-404b-9129-7c0fa86d89f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496524493", + "DeviceId": "53dc5b8b-52f7-4ec6-b9f8-03811d1b16a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_970839427", + "DeviceId": "1b6a7767-b791-4bc5-852e-6e51838eddc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227356140", + "DeviceId": "f3d8c282-58fc-4ca0-9456-1567e5dc2e43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423694355", + "DeviceId": "7a55b1ba-73bb-493a-be68-9e5bf9eeee37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509414323", + "DeviceId": "a6e9cead-be00-4b60-a70a-4ccdfda1db47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_206738737", + "DeviceId": "15252534-bcff-489e-8005-e688550f9a0a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "15fc5dfe-2e13-4485-9245-7222f651c4a7", + "TenantName": "Tenant-15fc5dfe" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318265436", + "DeviceId": "fed89d3d-a4e7-4f4c-8bad-66c9bb149026", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_547179516", + "DeviceId": "09b33e11-cde0-4c1d-a82d-c2e22e3a49aa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131812306", + "DeviceId": "7c3047fe-b1c3-49de-9792-a83a13fb9192", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_177364473", + "DeviceId": "b0f2c902-efd9-4035-8e11-4201c79d8041", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_680613960", + "DeviceId": "cb3d2acc-4e4d-4fa8-9a8a-a71844a969a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455654245", + "DeviceId": "ce7396f9-3fdd-4ea8-82d0-f7cc0c7c5a45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_911799272", + "DeviceId": "bf0fb396-8f1d-4da4-8be0-bb37bd7e418f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_799081244", + "DeviceId": "10ea325d-17a6-4ce2-9b0d-b6e74d62b469", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_530850098", + "DeviceId": "e130ce94-596c-461e-8ccf-382950721b50", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_203125508", + "DeviceId": "694fb087-850d-480c-9638-039261968211", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_636511075", + "DeviceId": "89584a55-2fdf-4fd7-989c-fb6de4cad1f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622785739", + "DeviceId": "8aac1e50-35c3-4d7b-9fa9-196921f95b69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896843062", + "DeviceId": "84273833-ac8e-416e-9b68-16f8166eb0c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463720770", + "DeviceId": "ea86c01c-2ac1-4cf1-910d-a2d2f0b9dfac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938002255", + "DeviceId": "35ea1d44-3b31-432e-9425-cbb3f7ff0149", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744482688", + "DeviceId": "179d0b5e-dd85-4d82-b31c-247c8614b985", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499225089", + "DeviceId": "a6137ea9-0882-4efa-a5e7-7734f49fe2b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_552894983", + "DeviceId": "d2fa677f-ca67-4b94-afb3-8fa48cc0d08c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467916829", + "DeviceId": "1268fe9a-f24d-462c-963d-7eec95aa79bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472091246", + "DeviceId": "3f3d6c94-9d00-41d1-af1e-68b7d29c760c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_289947618", + "DeviceId": "9ffbc091-b941-48b7-b2ba-ac8957b161c6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "10d0e12a-9a82-471e-906f-8d74ef3c7c03", + "TenantName": "Tenant-10d0e12a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_126349794", + "DeviceId": "706a701d-cdaa-4831-ad81-4e5873556c7e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_545674894", + "DeviceId": "8f9eaf60-8257-46fc-ad63-fd05f1a04101", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246239571", + "DeviceId": "1471f893-7795-45f2-bb9a-fd380a0f653b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_478872537", + "DeviceId": "0792a258-c6de-4404-8c2a-eb3f2ef4c034", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_671895675", + "DeviceId": "e2bea03a-441e-4089-8d1b-705c632dcdaa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-6", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822533863", + "DeviceId": "12eae6ee-2aea-4942-88a0-1ef45e644474", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-7", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_681216121", + "DeviceId": "f8caabc8-a0e4-4fa4-ba2a-529db4244b07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-8", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_650441087", + "DeviceId": "c0253b35-08b1-4433-abd6-bf990cbf1e2f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-9", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_483792734", + "DeviceId": "7fcdf7b9-9af1-4c75-92f3-3e22bc5b26e8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-10", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891477069", + "DeviceId": "77c35af7-edac-47e5-bfa6-29ba7ff00e3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-11", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_352542200", + "DeviceId": "29c9fda2-6c38-4e60-b7f4-41de708c5214", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-12", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973209183", + "DeviceId": "532c1b4d-8460-46b7-89e4-9238c9696e85", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-13", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427162927", + "DeviceId": "98a43152-7909-49a1-8e56-74b8fb638844", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-14", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_390421781", + "DeviceId": "fbf3b837-4239-41e9-9012-23b6d1a25acc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-15", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_455764288", + "DeviceId": "15c2fd96-de20-4839-b1f1-36211442e252", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-16", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_421463643", + "DeviceId": "c78c9bf5-28cd-4e1a-a832-1751a6286150", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-17", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621720974", + "DeviceId": "2ed5466e-8633-48dc-abce-7470a7889553", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-18", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582676891", + "DeviceId": "bd7b0e7c-f7df-4853-aa10-0489944c653b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-19", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_791448006", + "DeviceId": "a177b5de-4c99-4cf9-a593-2dbb1a7a4929", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-20", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119196959", + "DeviceId": "3eb813ee-d550-4144-9993-5b455c5f0d21", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_859386074", + "DeviceId": "04abade7-62eb-45b1-9ddd-0d079274c793", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0339ad64-3886-40ac-ac7d-a805062dbb44", + "TenantName": "Tenant-0339ad64" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260553.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260553.json new file mode 100644 index 0000000..b7df5ee --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260553.json @@ -0,0 +1,4752 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163958509", + "DeviceId": "c9ff36aa-81c9-4238-b630-5f48c576cdeb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_165023800", + "DeviceId": "9cbb605e-ebb4-417e-9686-4c7c21b8e0bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748862188", + "DeviceId": "fc9ce475-a2a9-4741-a3a9-ae1d0f9c4ad2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_789445990", + "DeviceId": "ce034394-9624-4e04-a501-595108a4ec64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_540296395", + "DeviceId": "8052feb4-49d6-4315-9836-c1ba273b1ce8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_223958046", + "DeviceId": "8d5d26c5-a8b1-4c31-993f-2ec2b8034a8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857237586", + "DeviceId": "46768dd2-6982-455a-93f9-9645ac62542d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286739003", + "DeviceId": "5bba3382-b0ba-4c4a-8873-a359d3827fa3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_277422680", + "DeviceId": "c5373616-aa51-4305-aa14-ce05c9adcd47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841999375", + "DeviceId": "2c7c338c-cc69-41e2-9c22-0afeeea975b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_106424682", + "DeviceId": "db2cb706-b846-4f3d-8010-46f71fc18ac0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bb21fef9-3e33-428b-acc3-6b6e2e88546d", + "TenantName": "Tenant-bb21fef9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659820595", + "DeviceId": "e90b3e53-0e3c-4401-abbf-f410e499523f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144824661", + "DeviceId": "4f6ef85c-2f4d-4b7f-9eac-c61be7d47684", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_791644585", + "DeviceId": "ab5a0cba-5d2e-41b2-af11-ead3700742af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_594637868", + "DeviceId": "9df003ba-0902-4731-b44a-8b1a274db867", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261775008", + "DeviceId": "c2e4bd8c-718a-496e-a2b8-e579cf1082af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201451437", + "DeviceId": "8484a947-6c50-43b1-b101-6a60a100206b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_137757336", + "DeviceId": "bfc53544-52f6-459b-a0e9-cfc9e9f9a58e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952455312", + "DeviceId": "5dc83546-f384-4d99-bff4-3acaa5f26cd8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496443158", + "DeviceId": "82394c41-64ed-481c-bb29-3e3384bf5952", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423018945", + "DeviceId": "5d95859b-d5f2-455b-a28e-d190029dc94b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_478907889", + "DeviceId": "f6bdf5e0-6b97-4de1-aec1-987e32e2f88f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab00a115-ff70-4493-bbe7-463ab89a16e0", + "TenantName": "Tenant-ab00a115" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_665214661", + "DeviceId": "261a2068-31ed-4aad-9bcb-a83b7c5f3011", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_546374709", + "DeviceId": "42bdebe8-3720-4047-856b-d3a672288f83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_880561067", + "DeviceId": "2717866a-3aa5-4597-8061-748c5b84f72a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471417399", + "DeviceId": "1683de75-85b8-432d-a064-0ee91423ae14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122429035", + "DeviceId": "60f6c329-32ee-4b95-9bcd-3163f71888b1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342762172", + "DeviceId": "953b21f2-945c-4d04-8a32-facaee31376d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_469728789", + "DeviceId": "19badc33-2fc4-4283-9179-6611d78c979f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_653267417", + "DeviceId": "91b872ef-22b5-4d94-91d4-c76335d04228", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592378942", + "DeviceId": "3bd8659c-ab89-4dac-917b-3af28d992ec4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858964788", + "DeviceId": "96c87bed-bcce-4b0c-aab1-90459ec6a29e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_163877098", + "DeviceId": "6313c82f-373d-4bcb-a518-1431ae7ba304", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4939b9b8-8d56-4b1d-a63b-1601d5722c15", + "TenantName": "Tenant-4939b9b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924111990", + "DeviceId": "b6f2209c-eb8a-4590-884e-def43e3a21f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_568626847", + "DeviceId": "e00787cb-9c0d-454b-b1b1-b0c8e0a1bd2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_953342932", + "DeviceId": "b02aa7e8-8515-42e7-9561-c97798f14685", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_452952754", + "DeviceId": "2e9f5554-2819-4000-be4a-35ffebc11593", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393425809", + "DeviceId": "2d81d6d0-f965-4afd-b483-5e8339c61bc6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380630921", + "DeviceId": "8e2e5eb9-18f8-4b9d-8726-aac24d33773c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_629385455", + "DeviceId": "1c8df7e8-1fcf-4f76-9d82-eba48e28127c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_279866208", + "DeviceId": "ce99d835-6e3c-48a7-bc79-9a2035edbeae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_605751107", + "DeviceId": "59d97878-debb-42ad-8c76-790c5561b2eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316018145", + "DeviceId": "977bd66a-c1de-4762-9c8b-f3c665e6680f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_925982028", + "DeviceId": "0277adfd-975a-4557-95df-44d0b896fab7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cbd368fb-a142-414c-8934-c4f8c8fef2d8", + "TenantName": "Tenant-cbd368fb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_251257219", + "DeviceId": "3ad366a3-b93e-4678-b099-d23ae32c5057", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694954901", + "DeviceId": "a4c67437-4f87-4eed-a65c-2d2d4e34ab3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940799487", + "DeviceId": "519dba1b-bc73-4214-9551-49205575a5a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617767455", + "DeviceId": "9af54ae3-3117-4e8a-8b68-684207901887", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787205720", + "DeviceId": "28abe550-29e9-4e24-9ad0-859c1109b555", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_955639798", + "DeviceId": "ccadbaf3-c89b-4751-bee7-b7c128b85428", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896480118", + "DeviceId": "01c507f0-d9e5-48c7-b584-5805a9ab24ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103094888", + "DeviceId": "9be53a31-16c5-424e-bf4f-71160d392cfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_850487505", + "DeviceId": "4cb38fdb-01c1-44b7-8d5b-47fb41e7f481", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_508111433", + "DeviceId": "f1a8be03-bf7f-4e85-83a2-02f54bbd701b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_627121247", + "DeviceId": "6abd2bce-5099-452f-ab1d-0c944773741d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf3538da-3a58-4d96-903d-1f9d0513923a", + "TenantName": "Tenant-cf3538da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622256482", + "DeviceId": "4c11fc90-85c4-476d-95c1-a4c2c8af38e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_420206976", + "DeviceId": "d28c7d7e-4bd1-4429-bbd8-a69814b0b3a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976270932", + "DeviceId": "24d4ddac-178a-42a0-a627-ec86a0d7eaca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847827504", + "DeviceId": "4c82bf09-ea6c-454c-9719-efdc7b62c5d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_703184263", + "DeviceId": "d4ffb220-3d05-4339-b320-621cc866dad9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270698829", + "DeviceId": "148f6b1c-9902-4992-83df-9e2608bc4a59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526976629", + "DeviceId": "0084e25d-f515-4db2-9dfe-729f3f9f022e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433369821", + "DeviceId": "6cf0c2b1-3edf-480c-9c1f-fcc8c8767ad2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_929717533", + "DeviceId": "13fa1fac-2fd4-4e34-8310-a3282216e242", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_690362662", + "DeviceId": "a13ee9e9-5e75-4223-a227-ac356e886cc5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_237658667", + "DeviceId": "269da98f-22fb-4adc-a4fb-6b95a0acaeb6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cab9702f-006d-49ee-aba8-5c953ff4596e", + "TenantName": "Tenant-cab9702f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914621222", + "DeviceId": "e940df79-fd82-4524-81ac-a027a6d940b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_847810815", + "DeviceId": "399862a6-5c28-4698-b39f-43c0f9ce967c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_942851781", + "DeviceId": "267ee8ae-c557-4bf0-9b0f-3e87527f0e51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_527865270", + "DeviceId": "c4018ce3-e9a7-4103-823f-485f07e35aee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912399256", + "DeviceId": "6018c16f-d564-445d-b40e-79c8ae781338", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286878600", + "DeviceId": "641e18a7-3b47-4db8-b194-5745f034b107", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_511718839", + "DeviceId": "2fbe04a2-5072-4428-abb7-cdaac486bbaf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_717660877", + "DeviceId": "3a822d75-4a4c-48cb-95bc-fa5dfffa163c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_433742251", + "DeviceId": "34630e44-1f52-424f-9cfd-ee0c43e61860", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_947341964", + "DeviceId": "0b0a86eb-63d4-413d-bc57-4f2a5c70552f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_883206041", + "DeviceId": "e7d8a4bd-af26-4bed-be8f-463176b14d0f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2fea531b-4f84-4d83-8689-d9e9e7fc3029", + "TenantName": "Tenant-2fea531b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509623818", + "DeviceId": "c18c7aa5-2f5b-41f0-87ad-992bec2e2420", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435899480", + "DeviceId": "3fb43a04-bd5b-4695-857a-1b0a7ba1f265", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798810083", + "DeviceId": "b55d1021-ca16-4e3e-9047-070975479d9b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931993071", + "DeviceId": "bdb618c2-a0ba-4832-96d8-0a15d98754c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_791631459", + "DeviceId": "43ad8bfb-4fe5-4ae0-85a5-32c3c8091152", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_244769093", + "DeviceId": "02b71070-5e1b-4f3e-b89b-4ff39e98bd68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_219507884", + "DeviceId": "27b8150b-c957-4d97-a19f-f624e805dc16", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_748114136", + "DeviceId": "05e8ee67-bf4f-4939-9b96-f7518419878b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430844854", + "DeviceId": "394e0a2e-8ad1-42c6-842f-8cf0bb9b271b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_774064714", + "DeviceId": "62a61d2b-47c0-48a4-a1e9-5d78f09c1a0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_147117874", + "DeviceId": "8d04a610-bef2-4033-85c1-4961d29a7967", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c82cea5-7650-410a-8ebb-22388c8d595f", + "TenantName": "Tenant-1c82cea5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751087544", + "DeviceId": "800e9180-def4-4212-b850-8f499381f5be", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286781545", + "DeviceId": "4dfc7df7-64ec-4fd5-af9a-b8d575f6a5c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_101678875", + "DeviceId": "fd2dfc83-83fc-4482-bf35-04bb73451e4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_383115715", + "DeviceId": "aa2541fd-af9e-4a3a-8cad-cd540d5b10dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916066812", + "DeviceId": "d81f5474-032b-48bb-ad64-c3ee25fe2fb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_117398922", + "DeviceId": "f8f66e69-370d-40bd-bd06-ed5a21b2898e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_934330155", + "DeviceId": "ba6ad0ab-a477-49d1-8b9c-a4a6335e338d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_648602300", + "DeviceId": "34ec3fa8-2bfb-45d2-a0c3-7f8cbbb0f62b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812045552", + "DeviceId": "2586d945-9f87-4e6b-80c7-9d53dceb4fc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897319907", + "DeviceId": "bc64adb6-3853-452b-9584-07ef1747cccb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_573147955", + "DeviceId": "48362c72-43fd-48bb-8615-2fabf30886d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b9a7146a-89bd-4b4f-80bd-9f08d74442fc", + "TenantName": "Tenant-b9a7146a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608450292", + "DeviceId": "39514c6e-0a4e-4bac-8b4c-b0480ed057a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_836993805", + "DeviceId": "38da86d9-eb41-4e45-b494-2d2e0af805c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435419341", + "DeviceId": "51b39a71-a061-41dc-8116-2cc109285458", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991295973", + "DeviceId": "29b665a5-19ee-4daf-87ed-778e76c47178", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659354148", + "DeviceId": "0f07038f-ff1f-4e50-b9c4-a00b3799f976", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733548729", + "DeviceId": "6ce7d94d-fad6-48ce-97ba-0b54fc41cd89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_745513424", + "DeviceId": "9686702a-d045-45bc-beed-0d37450b0514", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_682928154", + "DeviceId": "a8fd2d2f-1fa5-48c1-b715-66aea3080fd2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_732785286", + "DeviceId": "411fbbee-7426-4262-a848-38bcbc60e312", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_963240008", + "DeviceId": "3f4a464b-d30b-47ec-9a09-133cecb3aed2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_342928263", + "DeviceId": "b8159457-6dd4-46f5-958f-d904f7029120", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ce44153-2cf9-4122-a9c6-fda21de78b14", + "TenantName": "Tenant-6ce44153" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476180804", + "DeviceId": "0c9cee39-7c2f-4451-9e4a-e518d0b96bb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_990068656", + "DeviceId": "4a379294-c553-46c0-b9d3-dc21b80fbe0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_631266845", + "DeviceId": "cc1b3e62-0088-4ca3-bd77-35b74c3554f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844983906", + "DeviceId": "5de3e929-fbc8-4854-931c-1d81877a5c66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_820047153", + "DeviceId": "a68901b8-b568-4715-86e6-d8a0dd7c7aca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900931053", + "DeviceId": "a8222116-e3ea-4a84-b230-274b524ff05a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818842246", + "DeviceId": "f2202445-fa2d-43f3-b469-da05b58dab2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915743069", + "DeviceId": "6f441cb1-efb0-4de2-9e21-efc3cac82723", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_231982410", + "DeviceId": "55cd41e3-bc82-4011-a5a1-8ca9bb26952c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741016593", + "DeviceId": "68842ffe-83ed-492c-a485-f2d4d1bf9c9d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_369803024", + "DeviceId": "0ce90de0-d0db-412e-8ef0-44a5a62cb72b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05596259-79c6-4f0a-a7e3-b63dd29d0de2", + "TenantName": "Tenant-05596259" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699951383", + "DeviceId": "6dffaa63-13e7-4c1a-84c4-d13ba61a1f14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639425529", + "DeviceId": "12977381-9983-4e25-bd5d-cbc8ecc73ed1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779780991", + "DeviceId": "42e0f78f-4b65-49b6-8715-cf1da606468b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487327144", + "DeviceId": "eb7cc4f6-275c-4dc8-9620-c2450fabb1a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986201328", + "DeviceId": "221749bf-5793-4d3d-a003-26abe8eea8c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_483930748", + "DeviceId": "cbb1f384-1f91-4099-812f-b4e587389a04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312587531", + "DeviceId": "7ce8ca3f-950d-4a0b-8f8a-ef16cf579799", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743309822", + "DeviceId": "67593d07-a9f1-4389-8407-309f3e8ace76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_705065728", + "DeviceId": "33d0290f-f4ed-40e9-8bbe-a2cf7390b6b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798368678", + "DeviceId": "485f7c7c-cf39-450d-9dfd-c4ea97033ddf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_721299199", + "DeviceId": "338e6b6f-75ed-4714-8534-89e150691147", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "71280ba2-7727-48af-9681-cac5620666a5", + "TenantName": "Tenant-71280ba2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_966394978", + "DeviceId": "31b28af5-d69c-441f-8dc6-eea9fd41ccaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_870971914", + "DeviceId": "41ebd8a2-d0c6-4e78-83d0-02163e8931a8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756521742", + "DeviceId": "c0b284aa-1a33-46ac-879f-0b8817679feb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_363958538", + "DeviceId": "9317fc6b-fb2f-4aef-835a-2ef4150a2c43", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_167252846", + "DeviceId": "dd35d867-e113-403d-8f16-9bb449ef32f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_928964759", + "DeviceId": "a4524eb0-f20b-45c3-8608-01385d97b0cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110579608", + "DeviceId": "f2d4210e-69dd-41ed-a654-f32d814e91f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_235740625", + "DeviceId": "7e3ba98f-188e-4a53-a1e3-89a66e236d97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_279408060", + "DeviceId": "efd5a0eb-b2f0-4882-a7fb-1d8c14910297", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_958729691", + "DeviceId": "254d37bb-3168-4b2b-9f0e-4dcd41cf3269", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_126045979", + "DeviceId": "ec864086-875e-44f9-9a00-25a82528ac27", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "65a9b353-bd9d-405e-bf05-85efd47b3da9", + "TenantName": "Tenant-65a9b353" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_844094261", + "DeviceId": "3d787ebc-506a-40e7-b96e-127c049c9380", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142137371", + "DeviceId": "d7496c69-f870-4c10-94c8-2d05fd006b5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_227967317", + "DeviceId": "bae32f07-dbb8-4b51-bb8f-bbdb27fe3557", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925231843", + "DeviceId": "86499901-c82c-4bc9-aaa1-7a44e6bc52f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141588628", + "DeviceId": "4e8b81de-9964-4fb2-b45d-2edde1d3aabd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_381147599", + "DeviceId": "6d642ff0-839e-4a95-bd7e-bd861b34a371", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254474166", + "DeviceId": "5d92375d-0bfa-4f1a-a7a4-8882e262631f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_431460529", + "DeviceId": "a15e5e8f-fb72-4050-9402-17757a807cdb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713760317", + "DeviceId": "40560a69-6813-4c74-9533-80af8fceea8c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_133831864", + "DeviceId": "671de32a-acc4-4b79-ba03-425938e18fe0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_546998756", + "DeviceId": "7307dc74-ec92-4695-bfda-1af172d7e6a9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d1b59b02-e96e-4108-a962-c27a88bdc35f", + "TenantName": "Tenant-d1b59b02" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_541790091", + "DeviceId": "9e47cf09-8ea1-4d7f-b085-7c16c357bff4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144246191", + "DeviceId": "6e50e405-35c5-4ea3-bd90-b69a68d06168", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397211056", + "DeviceId": "98ac7b7a-37d5-42ab-ad41-be8499d00dca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255741240", + "DeviceId": "0adb0faa-b40c-454d-ad03-8f7bec54eb36", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933185944", + "DeviceId": "a229b670-25ae-4b04-a992-39a6c7595c7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713450654", + "DeviceId": "a836eea3-6454-4b9c-9e8b-1bd3b359ee19", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201523174", + "DeviceId": "dd03a132-fc00-4e49-8c7d-fbddd0b85df1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103563888", + "DeviceId": "d50c0d78-dfa7-4543-ad8c-5968493b30c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210436731", + "DeviceId": "e641613c-c538-4bd0-9d6c-0185219575a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_754300831", + "DeviceId": "6a703973-7947-4eb3-8018-8bf400cdfa31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_264067944", + "DeviceId": "0d1f8c15-4896-4641-84e7-6cefab5f546f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7ec2186d-9419-4b56-bffe-a2003c86e75d", + "TenantName": "Tenant-7ec2186d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998390215", + "DeviceId": "b7ff3183-1451-4c50-b6b8-90393eb50122", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_531119294", + "DeviceId": "6acfb64b-6986-49ae-a703-80c9084868cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939848938", + "DeviceId": "67c0cab8-88c0-4b4d-bb8d-8d4d1d91c85f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461299636", + "DeviceId": "a3335007-8e63-46f2-8429-5e0323056089", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509318003", + "DeviceId": "3c08b6bc-1416-4ee7-9e69-698b03c772cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_578740335", + "DeviceId": "ef1d35e1-d067-4e8e-81e0-024116307dad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238919840", + "DeviceId": "76459d71-c1a3-4d51-bfae-37a5601fc82d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_623764922", + "DeviceId": "76762865-a06d-428d-8d2c-0425cb55cfb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_943329981", + "DeviceId": "e958187c-2029-4a0f-a0f9-99adba85e223", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580566565", + "DeviceId": "dc819d86-fede-43a3-853a-11162b1b6b56", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_811911312", + "DeviceId": "9ebcc27e-90ab-4304-a287-a9bd93588600", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "da814f14-ecf6-4028-8515-a3e91ec2ab7a", + "TenantName": "Tenant-da814f14" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_601777385", + "DeviceId": "43d3cc72-8153-440f-9b1e-82f93695d611", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_786468449", + "DeviceId": "dd364f00-6a87-4ef2-9794-f2e93f72a2af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_460275373", + "DeviceId": "43cbf429-8b8c-4879-bf7b-3b9c5b4c618d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731943016", + "DeviceId": "d7c24e28-c758-4d72-b59a-738c064fc30d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_169049052", + "DeviceId": "19416a97-c561-4647-b9bb-19e38046529a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_710085639", + "DeviceId": "d661a8e7-314e-4b5b-a2f0-c7f2f18c8371", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_117001414", + "DeviceId": "a7f6518d-ab72-4dfa-b54e-6396f1521d0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_571132947", + "DeviceId": "944618a5-5b7d-4208-8049-3a9edfd9bd26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185553371", + "DeviceId": "cf508467-b2d3-4895-86fb-8f3215ec1b52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761030991", + "DeviceId": "cde2ea2e-7c9a-4639-a9d6-f7f4c4fbf1b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_982775029", + "DeviceId": "d674f162-c896-462e-ac0f-8156fc570529", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cb0ce445-21f7-4ff8-aca8-0310a3201b80", + "TenantName": "Tenant-cb0ce445" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134975403", + "DeviceId": "542fe4cc-a1ec-430f-b2b6-0b6a77f840b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756240428", + "DeviceId": "1898c705-5cab-4db1-b938-4f339419fc16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_422694449", + "DeviceId": "4b422abd-b53a-4707-98a1-b8dcd309249a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899811550", + "DeviceId": "495d8b65-7d9d-412b-b842-161577aa5df4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_216209684", + "DeviceId": "db44f08b-fbd0-4c59-994b-edbb487498d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_509116065", + "DeviceId": "1b22a79a-b265-41ef-867b-b8adf5e966ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720322284", + "DeviceId": "0619b51b-b111-41d2-8941-da60e1dcec1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188208247", + "DeviceId": "f3784118-ff6f-44f4-994c-4fb41f0af8de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_148744509", + "DeviceId": "e4352ffc-1e02-4d28-abb5-3dd4901234c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397480318", + "DeviceId": "c761ce05-5c2f-4da1-9527-1476a46b95af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_164146230", + "DeviceId": "9557b059-2dfe-4652-b759-8a94ff26bff5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aeb2fb7a-74c8-4697-a606-b30eef3c82ae", + "TenantName": "Tenant-aeb2fb7a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_937261399", + "DeviceId": "4500a7d0-ee28-40e2-b32e-cc98644284f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717101376", + "DeviceId": "bc1327e9-5b88-4f78-ad02-63e83165862f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973282514", + "DeviceId": "1f140f39-6790-40c1-9ce2-49b7871e1741", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_472930260", + "DeviceId": "b5cfcd65-d8d3-4683-8716-b261483391e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553381350", + "DeviceId": "996568d9-ec81-4f62-aa58-8546dbd291fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_781018179", + "DeviceId": "c5ab66f7-12f2-4c57-a68c-361563b452ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619923580", + "DeviceId": "20addd32-9f02-4f88-843d-290573f0cb2e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_783752897", + "DeviceId": "732a6281-909c-4f2d-9f71-c12d677f1bf5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_293452300", + "DeviceId": "3ce06851-cd10-4f0f-8618-ab2e892aff6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911605739", + "DeviceId": "3c268287-cc1e-4981-98a5-7d6ce6a7d9bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_900551563", + "DeviceId": "ced80ccc-d370-4484-b9f6-badb32f57d59", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "12e1c5df-127d-4742-9381-f0249b37d0c7", + "TenantName": "Tenant-12e1c5df" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245985244", + "DeviceId": "cceb3b3d-28f3-4b82-a69f-aceb4606f2a2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_848674027", + "DeviceId": "3e5929bd-60c0-401e-b9d6-f8ed932dbdd8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_461767608", + "DeviceId": "cdaf46d4-50b0-4df1-9112-eb3737357390", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_639784426", + "DeviceId": "ac309a4f-2649-4bbb-a382-360b99ef0432", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_988539029", + "DeviceId": "c2455da3-6e56-41ab-8cad-3fcb9e507039", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969030902", + "DeviceId": "92195d21-42ab-4c43-8d3c-bbec6fdbc1aa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406101802", + "DeviceId": "8856e837-1bab-49d5-96d4-abb3ee11863a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906466940", + "DeviceId": "59b242b5-703a-4ad3-91b8-852df5ea8b74", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_668261214", + "DeviceId": "c97ef511-4382-4d33-8d73-578e4b417e77", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201574845", + "DeviceId": "e9fc7e67-3b56-4ffc-a18b-3c2992ad6f83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_658765750", + "DeviceId": "11e0e17d-3709-4766-ad72-b564a79c15ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "924f4e5b-168a-420a-8d3a-0cddf79836b1", + "TenantName": "Tenant-924f4e5b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212818316", + "DeviceId": "8f781b5f-1b7b-4cd9-8e95-5dd1fafe9d3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728713386", + "DeviceId": "3004da58-2369-4577-a160-374ec4e76990", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804414078", + "DeviceId": "ba54e7fc-5b64-4db6-8bbb-bdc5ece9bd5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710373100", + "DeviceId": "4d6b5094-3120-4f70-adb6-b5d8a70b1ffb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242181334", + "DeviceId": "ece646de-76ae-4a3d-9392-99d588e0a193", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_159628628", + "DeviceId": "88c9041e-8e64-4dd0-9fd8-94fadb25e9af", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827415286", + "DeviceId": "4b09eaa6-2e5f-4a5f-8861-708fb1cd8e67", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322406139", + "DeviceId": "4233d006-4d88-4f26-916d-87470907babf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733627706", + "DeviceId": "ab02d1dc-f783-4d72-89c6-6dc1aa536ff1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_882986342", + "DeviceId": "9e316a21-34f7-4193-b78f-486c783b53c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_641063670", + "DeviceId": "8cb7ead3-0e29-49d4-b076-815e8bdca2e9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8b7ac2e6-cf80-4237-82d8-34ce27945f9f", + "TenantName": "Tenant-8b7ac2e6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_730522740", + "DeviceId": "266b36bd-c07a-413b-9258-975af7bb8238", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866351252", + "DeviceId": "5922e0dd-6a8b-42ea-ad60-b03d1a12e640", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_706083073", + "DeviceId": "da5724a3-640c-4f95-9f7e-c01d8abc996c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_452974804", + "DeviceId": "6743d2ea-ed90-4df3-b809-d7f54d676faa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_731206493", + "DeviceId": "9c1286de-a083-4391-81f0-6b58a98eef60", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_513335217", + "DeviceId": "7b4a0dad-1b2e-4015-add4-556ff4784757", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488112581", + "DeviceId": "e90fb642-eb49-4f7d-a6e6-717b3fb8f395", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962753243", + "DeviceId": "2678c260-824f-4c02-a5aa-0f66c8bc4a29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_226194430", + "DeviceId": "1fb3b7d7-4432-4ee1-a62b-64a26a8a4a23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_111812681", + "DeviceId": "a8e9aa8f-caed-45e9-ac41-9970241c0e3f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_972862877", + "DeviceId": "9c7e1414-f9f4-4fa0-b53c-f551a6f6a48c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0bf32621-7987-4c42-b01d-eac87879f2c7", + "TenantName": "Tenant-0bf32621" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387771605", + "DeviceId": "1a559cf2-b041-45ac-9452-b1648c17e412", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_404350110", + "DeviceId": "357f8c3c-cd62-41ee-9da3-ddb02b897352", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_365960768", + "DeviceId": "2442e5d0-b44c-4800-833a-e9415883926b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684288201", + "DeviceId": "c3d56bdc-ca85-4c4d-bd26-e1d416a429f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487786117", + "DeviceId": "5e10f749-304c-4017-b386-b5f3ec0552f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_248397520", + "DeviceId": "5021ead8-1b6f-4bdd-825c-24c75a1b5546", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960370086", + "DeviceId": "ebf30e81-4042-43f7-be40-bb7dc141d2db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898636657", + "DeviceId": "96a50786-6fdb-4a05-9c8c-ae5696474d14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_939645961", + "DeviceId": "c3b7f0fe-90ab-4e60-a69b-4c0b4754a69f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405987718", + "DeviceId": "7308ce19-56e9-43b2-9100-53ac925ef307", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_980838444", + "DeviceId": "745ed223-bbfc-49b1-b2fa-b218f85c78b0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c17cd48a-627b-4e0a-82be-a5f548fe1449", + "TenantName": "Tenant-c17cd48a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_719475144", + "DeviceId": "ccb32e7c-86ce-46e3-b8fc-7369395c9971", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_766807664", + "DeviceId": "2f8f5f16-3615-4e1e-aae1-dee6e88d65f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588494633", + "DeviceId": "517f80fa-3ba0-49aa-89ef-4258221e2291", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_889408537", + "DeviceId": "c43c4756-f103-4136-a6e8-6a9ed3dfa38f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485307604", + "DeviceId": "041a7201-de0f-4289-9ed9-ed23e0c5bd51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383695970", + "DeviceId": "9056b473-fd49-405a-97ac-b56bbfcb74e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348805901", + "DeviceId": "932addda-924a-473a-8e82-cc7d7ead852a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_940383496", + "DeviceId": "82308fbf-5b40-479f-99c9-40e8ce478094", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_921212079", + "DeviceId": "269803e5-23c6-4b40-8649-1fbd4544a4a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_240529659", + "DeviceId": "11df6a55-93ae-4c15-8744-24d1b85503ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_735851391", + "DeviceId": "520b442b-b34f-40ea-928a-bc5f3aab42ea", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7fe91071-b575-4896-9c87-bfc9dcd7ada3", + "TenantName": "Tenant-7fe91071" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122790367", + "DeviceId": "89cc6141-b870-453c-89e2-705ba32f9ed2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566156433", + "DeviceId": "1ebbce2e-ef7d-438c-9c5d-ebecd6f78325", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_961757992", + "DeviceId": "59f1826d-9bb0-44b0-a08e-e7af80805e9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998921768", + "DeviceId": "3d641844-2afe-4dac-8194-e038bf4f4e09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756031325", + "DeviceId": "bd9191a0-7c17-46a4-88eb-a8bcf0650893", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_835167979", + "DeviceId": "1229253e-a477-4b30-98f3-f1e8dae0cbde", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898221575", + "DeviceId": "1e352b29-b9a7-448b-8ddd-71eb03aedcb9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_890546962", + "DeviceId": "c37c1cce-5101-4c07-ad3a-1e950fc8578f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373965664", + "DeviceId": "7fa43c28-6157-41f4-ae8c-f4e2b9391397", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_404552314", + "DeviceId": "aea14056-3f01-4ff5-8ad6-37fc94c65096", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_400434925", + "DeviceId": "c4380d3d-9499-4fc8-9544-c7f80dab5245", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f02e3f11-78a7-4e37-b3bb-45f96abaf0ad", + "TenantName": "Tenant-f02e3f11" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_369839922", + "DeviceId": "b8df8033-88ff-4148-8360-dc5b6d2e4259", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_553277356", + "DeviceId": "1a585c94-ab4e-4fbf-aae7-d87b5d1e3857", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_627761736", + "DeviceId": "b78f7f24-f49e-4bed-99c0-6636106c164a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286861344", + "DeviceId": "0740332d-8901-4ddc-9cae-29e65d319018", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982866253", + "DeviceId": "e1b77543-2a1f-4c3e-805a-6343a084f3ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591579194", + "DeviceId": "a231b51f-684c-4376-8bd3-8d56782d47a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_824134070", + "DeviceId": "35c08e84-55d1-4784-a338-a4eee1c72cc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_417502191", + "DeviceId": "0f884713-7d03-4762-b6e6-db541b6bdc7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496268120", + "DeviceId": "95181d8e-3feb-47e4-85ed-487e0c8c63a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233108094", + "DeviceId": "97279594-ecb9-4f01-bf45-364f75e37fb6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_255273744", + "DeviceId": "145ba502-bed1-4262-84dc-cb2f35f959ee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "23cf465d-01c0-4783-8ca2-95933042053e", + "TenantName": "Tenant-23cf465d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_228879592", + "DeviceId": "d33128db-c806-4206-bb04-a358180bed58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_185531485", + "DeviceId": "8673488d-01d0-4026-8a4f-21eeaa6a595f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_190278298", + "DeviceId": "362d0b25-3ab5-4483-9db4-15dfe5794649", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833864070", + "DeviceId": "a0d11bec-9eea-466c-b064-95dc4370b267", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_474357455", + "DeviceId": "f128e3ee-fa4d-4924-94d9-04645af4c0d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281026661", + "DeviceId": "f0fa7efd-0dbb-4e74-9b3e-02425868f361", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989768706", + "DeviceId": "5368bcdc-55dd-47bf-a72c-9643b038900a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208136725", + "DeviceId": "7da912e1-0c3c-42fa-ad68-d72b958e72c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_888827052", + "DeviceId": "5fa821e0-52f2-4f15-99cd-197dd7959602", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_113949646", + "DeviceId": "ac33e577-5ed8-4ab1-98aa-ed56cd97441d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_788336534", + "DeviceId": "e5ead2a2-97b1-4a0c-bb76-39b8aa3c0482", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fce5ff64-00f2-44dd-899a-3a11ae193c60", + "TenantName": "Tenant-fce5ff64" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743062262", + "DeviceId": "67d1d6c6-9f9b-4ea0-b799-95f2ca06c27e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249408047", + "DeviceId": "75574af6-ea1e-420a-b07b-c479cf988a90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_284790201", + "DeviceId": "a2020a8e-6152-47ec-a8f6-d3532771bb31", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_755212033", + "DeviceId": "c4a71064-5429-40eb-9aab-0a36d9d34373", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_952125919", + "DeviceId": "d9da1856-9fea-4170-b9d0-855df12a9493", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_510410785", + "DeviceId": "65dadd27-e705-498f-9f28-f19fcee987e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549868441", + "DeviceId": "95110a36-2af6-40b1-a766-08f4b0a482b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_999637174", + "DeviceId": "2e743acb-51a2-4767-b4ff-8cc61d37b02e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_543678958", + "DeviceId": "29e1bf08-5db1-489e-bb74-22949e63ffcf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_754838431", + "DeviceId": "913963ef-1d61-4105-8d76-c5ea206aa599", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_822675621", + "DeviceId": "1304f56e-f63e-4503-bdce-ba41c0d6b50f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ac8dc02d-0ade-45e6-b998-6fc01ed36d0f", + "TenantName": "Tenant-ac8dc02d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_208329954", + "DeviceId": "46546187-1f22-4611-bf57-8be372204259", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632418695", + "DeviceId": "4df7343f-a52c-4480-b25d-eb3aa6436876", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_357997189", + "DeviceId": "37d3f91c-752d-4c28-a88e-35d529cf5317", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_487401916", + "DeviceId": "25635898-97b1-4502-afb3-cd5cf1fc2832", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783195273", + "DeviceId": "14ccc505-46fc-4357-b3de-e7cfdb50fdab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573519113", + "DeviceId": "1e7e7357-dc07-4c6a-8b41-03cae22f6983", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_468744847", + "DeviceId": "89556050-65c3-4cd8-b3a9-50f53ac1c16d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_215493429", + "DeviceId": "38652eff-3582-450d-bd50-806cde7f9094", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368126628", + "DeviceId": "40a9793c-2ff7-435e-b810-81ab5a8bf334", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583015187", + "DeviceId": "e4ba5468-a184-401f-b167-bffee7aa3332", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_482322651", + "DeviceId": "798ffb66-f7fa-41ce-91b0-307ebbce8eea", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cdef5ffe-bb26-4246-a4f6-becce25da1d2", + "TenantName": "Tenant-cdef5ffe" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666142058", + "DeviceId": "0cdc1b56-0a17-4285-aa71-57f4cfecc4bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438710469", + "DeviceId": "21010317-4458-4f3e-9158-599b47c89aa5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444095125", + "DeviceId": "2f76490b-48f1-49c3-ace0-ed5c454b9fd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416982963", + "DeviceId": "803418e3-1257-4ae1-8712-b846531c7922", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534426616", + "DeviceId": "1e4b70d7-54fa-48e5-9f83-0fc9be57eacd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_738642175", + "DeviceId": "3fc4fb99-c894-43ad-9374-ad3ab451552a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476633112", + "DeviceId": "d6a940f3-4523-41ec-9913-0f4f1b3145e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736994240", + "DeviceId": "6d8c4877-9d72-4e20-bbf3-b161b69c467f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_887200445", + "DeviceId": "9a244422-1877-4939-b9b6-a3ea3e6f8962", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771318234", + "DeviceId": "7fe42341-c3b4-4abf-ab72-eb0f374bfa07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_673014898", + "DeviceId": "3097e90b-810c-4634-8eeb-a162041df85f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e36ddb2f-5cb3-4080-be64-fa12dc8b9c2f", + "TenantName": "Tenant-e36ddb2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409080203", + "DeviceId": "ff00c251-d5c2-4de7-8c00-9da8f043a89e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834426509", + "DeviceId": "e5334633-063a-401c-9efa-1b8bb4828bf1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457565337", + "DeviceId": "d774d8d6-05be-4a6a-ba55-2b1252b5e423", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_861350049", + "DeviceId": "0fa0b1d4-24c4-435d-be97-2d3917d2df04", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_991382060", + "DeviceId": "55fa9bdf-1f46-4fce-980b-4c3ac87fea58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_502511773", + "DeviceId": "72b1acf8-b6a2-48e8-bda9-c5a4f7f8a550", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251899091", + "DeviceId": "8af761ec-7049-421d-8f6c-22e04fe354e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_322519394", + "DeviceId": "26ac3852-1dac-4de2-936c-386ecae445b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659819887", + "DeviceId": "6f86bff8-a29d-42ce-9e2e-ce0dbdccff9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695285844", + "DeviceId": "40379ee2-c8aa-4118-b7b0-e9d8098f00ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_993589655", + "DeviceId": "e44ffe2d-5936-4dc1-9e5a-54f93a6ba16c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e355ab13-6bbd-4b85-b1f5-61c7557aa0de", + "TenantName": "Tenant-e355ab13" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_831468466", + "DeviceId": "063f88ce-a430-4aa9-83c9-3c6ac0f452b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437834211", + "DeviceId": "6b13457b-018b-4063-a5c9-450cf387bc79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_930429945", + "DeviceId": "4fc70527-6756-43e5-90eb-769ed2d9f264", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212542223", + "DeviceId": "9f869fb0-96bf-4dc3-a7b0-1b4cd0046a6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443322270", + "DeviceId": "719a9136-3b78-4fca-8039-d28486cb15ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_502382575", + "DeviceId": "4affee1d-b914-4256-86fc-37955b18a5ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289364068", + "DeviceId": "7447d8c9-73dc-4ec0-92a5-a07f78e0eec3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_609764199", + "DeviceId": "93aa03d9-2096-4743-8674-dcae5d86cf3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911503726", + "DeviceId": "37b4d740-6361-402c-be6f-7b1007c363ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_158608525", + "DeviceId": "334415d0-1e63-4ffb-b377-0b756fe8a6d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_377920572", + "DeviceId": "52e2f2e5-ba96-4ea7-8cff-b771f871d7e7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7d8dd0db-d77d-4a94-bb3c-42549f8faec7", + "TenantName": "Tenant-7d8dd0db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484101192", + "DeviceId": "0120dcea-10bf-4e8b-a36f-a4330f034167", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_589289537", + "DeviceId": "635ea674-b2ae-40c4-9fe7-507adf498de0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407937972", + "DeviceId": "8f16199e-eebd-45c9-9a60-5d3c96b02305", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705791743", + "DeviceId": "443cac31-a15c-4ee5-8626-846990a1dfad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_386714176", + "DeviceId": "ddd1e24c-cf1c-475f-994c-f03a820e530a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644213668", + "DeviceId": "e21cf7dc-2989-423e-a015-a0e178f3e8d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_541978569", + "DeviceId": "e778f40d-3fe8-4e75-ac84-a088d195e636", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_528696782", + "DeviceId": "db1e6f13-528e-4c5d-acbf-8cbacf0d0af7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185622286", + "DeviceId": "1231e8a2-b142-41eb-9d4b-6c2c2af21034", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121054341", + "DeviceId": "3cabf95c-817c-479a-affb-43fc26d09a55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_289235097", + "DeviceId": "849c643c-ecd3-45b8-ad4b-bd42d5bd23aa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bc5c0b99-9386-498b-ab89-9c3d670c7789", + "TenantName": "Tenant-bc5c0b99" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_978151613", + "DeviceId": "51ce93f3-1dbf-4ff4-af5a-ea25e23d4d5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751228884", + "DeviceId": "4554ee88-1c3e-40eb-b73e-20d63caaf725", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_754584894", + "DeviceId": "b023fc74-4b70-4e0a-ad63-2e82be2ae8ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793779357", + "DeviceId": "6d138f29-e5e1-4d46-a614-ffe5e6781158", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613774434", + "DeviceId": "53b22f23-e902-4cd7-9e97-302c3270831e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173801905", + "DeviceId": "0b6b45ad-684e-49ad-91c9-0c2aa2c63cc8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_542951036", + "DeviceId": "8b28646b-c66d-4b2e-8333-b064d2641968", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_149598418", + "DeviceId": "a006b533-fdfd-419e-8d77-0f961214dfb7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532398846", + "DeviceId": "d1b191af-9ded-49d6-92a3-cd19b298dd3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132185184", + "DeviceId": "cd7ad3b6-22c9-4152-8f10-4d4985fdbf59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_359633795", + "DeviceId": "6682a013-fc8d-4475-91d0-9934db0def94", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c0404733-a00f-4e22-aa75-b4207d1e79b9", + "TenantName": "Tenant-c0404733" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864349242", + "DeviceId": "96d1a0a5-78c5-43dd-9c1d-e169c65330f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904839949", + "DeviceId": "6825bd14-bb15-4752-adea-b63f9839b437", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_803158418", + "DeviceId": "8a4a2b45-460c-447d-8852-a26b8c559ab9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_351890778", + "DeviceId": "6b9aa8c3-718f-4d11-a007-966e8bd2ff46", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562453160", + "DeviceId": "646ef7ed-626d-4cec-a1d1-f83fd5bdca1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885020623", + "DeviceId": "15f4557a-4d7d-4fbe-818b-61cf613a7c31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_736006562", + "DeviceId": "11798741-a878-4f2b-91f5-ff988b720838", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_691333336", + "DeviceId": "53ec8182-719a-475e-95de-3bd99881d773", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718132190", + "DeviceId": "e042f4dd-05f4-4076-96c2-da58cb568f29", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_208170514", + "DeviceId": "3267b8e9-cc0b-47b8-a730-c47b7b081ab3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_154993059", + "DeviceId": "689855bc-1163-4959-9757-97e5664f2b79", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a3ac3998-ffcb-479f-9aeb-922a4f5f6d86", + "TenantName": "Tenant-a3ac3998" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939920099", + "DeviceId": "3a328436-25a5-4180-9b29-891dc1a42065", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362247333", + "DeviceId": "ebd598c5-19d8-4445-9e34-5421ef5f7a80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_275501103", + "DeviceId": "9e791c1c-fe9f-4146-a823-8d3fe140caf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_321077451", + "DeviceId": "98bec87b-836a-4698-bac8-b3c84108bfb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477366795", + "DeviceId": "841380db-7606-49ef-b2c5-a37ab5cd1a4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_417418218", + "DeviceId": "9d26617c-a8e9-4f75-8463-02904fcd504c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_753078395", + "DeviceId": "909e1e5d-5abc-44cc-935b-8d5f0db12390", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_295924743", + "DeviceId": "8b9d165f-22ed-44a8-94b7-2dfd796eaae3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_141522629", + "DeviceId": "5ecd9af8-e61a-4f96-b06b-b4ea907e8d57", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744282989", + "DeviceId": "37f5be13-d27b-4954-879b-1b3df447095e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_336716771", + "DeviceId": "51fa6f1c-b399-44a1-8106-11f9a64c9f90", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4bf89995-ceaa-4470-be1a-868f40a56056", + "TenantName": "Tenant-4bf89995" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_493645942", + "DeviceId": "089c02a6-2f74-46d5-9073-7a366bf4c30b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131750655", + "DeviceId": "7f403b11-3b99-47d7-a4d3-3261cd576709", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_392184820", + "DeviceId": "df2ec384-caad-4876-bd15-4a573dbd9538", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675204094", + "DeviceId": "b3367ab7-3ce3-4229-836a-ba9bb6983573", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376330696", + "DeviceId": "807c1a5b-9357-48c0-8912-f9cfdcb66dd3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397525450", + "DeviceId": "97cbb107-0896-408c-bd18-16b644abbcd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_363878311", + "DeviceId": "4ccfe1c2-8d58-481f-8774-aeeceed49266", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_142647125", + "DeviceId": "89a639d7-a377-4fdd-a383-58c0bb2d17c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_475635845", + "DeviceId": "0394a681-edb0-43d8-8f13-6afce841b9eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561252558", + "DeviceId": "7260dac8-7069-4c20-b438-fc25c45e3e90", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_357290097", + "DeviceId": "34ec9bd7-496e-468f-8c0f-6e83063a2241", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "dddb9216-21d5-4168-8f02-3d01c87607d8", + "TenantName": "Tenant-dddb9216" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_307694120", + "DeviceId": "d91b3c53-4e73-401a-b710-48e8263f497f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336036506", + "DeviceId": "10ac4d3a-c369-44f9-bae9-ede39a30f680", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429339575", + "DeviceId": "0b2ebf67-1ad4-47ba-b121-3b4410991a83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939748553", + "DeviceId": "47652741-8e45-4364-96c1-9bc018f2391d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875764974", + "DeviceId": "d46c0d1c-2658-40cb-992c-c959b32b454e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_988387807", + "DeviceId": "5622ebf7-1b88-4480-96b9-433d7759c10c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_282467764", + "DeviceId": "f3a469fb-2449-453d-a26f-7094d5d4771a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_663100095", + "DeviceId": "e763b6be-54f2-4ef7-8bc3-952f3246c2bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908756916", + "DeviceId": "1b6a59fe-c768-4f60-8b66-f8a0bb481928", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284245876", + "DeviceId": "8f1a47c6-046a-4f90-b7bd-c4d9226420fb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_955306441", + "DeviceId": "048ad970-7920-4d3d-b07c-7f229a14675e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "18a30be7-7735-4e2b-aa20-dfe967db7033", + "TenantName": "Tenant-18a30be7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_702102531", + "DeviceId": "cab6dd65-811e-46ae-a578-9478c2205ca4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_940039601", + "DeviceId": "c5724ff7-4728-4925-a55c-d43e19a16020", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_624188253", + "DeviceId": "46224a7a-7c70-4e7c-aa1c-1d246d5ad9ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_322494082", + "DeviceId": "bbdd74a8-6ca2-47fb-a636-b5d602a2402f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_902957588", + "DeviceId": "f9b9a38c-8885-4a3c-8749-64e74eda902a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157137426", + "DeviceId": "dde8c897-81d5-4308-8885-2fbdeb20c6cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964432943", + "DeviceId": "4f64d21d-5d1c-48c8-b2bc-5c8ccf3b747f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812201661", + "DeviceId": "ce53dad1-2a52-4785-aaa1-bba04e66f76e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_709189712", + "DeviceId": "94eed83b-c6a6-4c12-b8d6-8fd8103cf2a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252601862", + "DeviceId": "824d0afd-7dcf-4eef-a32a-729a57e00921", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_851352428", + "DeviceId": "84332e2f-08ee-415d-aef7-aedca327daf3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "72323644-d0a4-4e64-b4df-1978b9fc9c05", + "TenantName": "Tenant-72323644" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_905938257", + "DeviceId": "f2925e95-b430-4170-805e-90a452ddb926", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972335626", + "DeviceId": "9a4eae6f-cea7-4b8b-9d77-a12f758cbedb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_749672233", + "DeviceId": "2d387169-f801-4127-a3b8-156981104e32", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_481988983", + "DeviceId": "4e1c8034-b01c-46a4-903e-d0659d3927e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_564923221", + "DeviceId": "e1db27e1-661b-4862-9713-05efe3f7ce7f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_984821594", + "DeviceId": "6dbf649f-d937-4329-b4bf-5902bbdb2991", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_101480054", + "DeviceId": "4e28aad8-5caf-4985-ac8f-115b5e416e8a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_400301336", + "DeviceId": "8647b11b-3f31-4c80-abe9-4239adfda4a9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524181169", + "DeviceId": "f6b4c6da-6d01-498e-b106-3eae55f94275", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729884383", + "DeviceId": "1c871a56-eae9-4456-a338-e7226d38f95b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_649869020", + "DeviceId": "ec80645a-b027-4eba-9215-07f4b0f76df5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f0132cd3-63e0-41ef-88b2-17fbdbae5223", + "TenantName": "Tenant-f0132cd3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_801150697", + "DeviceId": "3b2cf3db-5e9d-4a7c-8ae9-0abd31f72711", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_685138014", + "DeviceId": "69858ad5-006f-4dd9-bf80-aeea1e1ea833", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_593750156", + "DeviceId": "133d9945-4cc0-41a7-97fd-6dfc3566294a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866831782", + "DeviceId": "1d432874-b41b-4fc7-ae16-96701dc6957a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682410832", + "DeviceId": "ad7ae778-8b34-4228-8f72-9d182ca0282c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_211702396", + "DeviceId": "fbe0c64b-96b8-42f5-b948-1c3ccbfa17a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_909288416", + "DeviceId": "9c9962a1-4664-4e37-8863-231dd057891c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_326475784", + "DeviceId": "a1f27ca1-1ef6-40f7-9fad-a3fc1aafffed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561000071", + "DeviceId": "29cf6004-c8c7-4505-a0c4-e6f48917714b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_945786867", + "DeviceId": "ee485aa3-c726-4858-b28d-84edc5a7edf2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_576684575", + "DeviceId": "35b7918d-4438-4236-944e-dd49a6b1352b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87fd7b61-0f4f-44c9-a1cc-a398a699d1af", + "TenantName": "Tenant-87fd7b61" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_590695292", + "DeviceId": "fc6760ea-b47f-4cb8-a21e-64db0d082234", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608594387", + "DeviceId": "ac691ad0-02cc-4c27-bffe-a1c604cf69f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140005464", + "DeviceId": "98b26a53-b807-441b-9c39-9733e06d6d94", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659212111", + "DeviceId": "caf55391-f946-425b-9a26-7a861e169fbf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_447852943", + "DeviceId": "23f8619b-3d5c-42fa-9069-ba4bced0b0f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838869273", + "DeviceId": "b6f453d0-3030-47d2-a74a-9bdfb041a4f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_411107132", + "DeviceId": "e8311afe-000b-4e1f-9e39-08e35e89d882", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_985553901", + "DeviceId": "74fc7197-bf16-4780-843f-33961f379f7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476269814", + "DeviceId": "8e328e2e-e82c-4a23-9ca0-9c217140f4b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810992613", + "DeviceId": "330f86f2-8092-43a0-bef8-f9367f9c5e99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_948159382", + "DeviceId": "5555aca2-d6ef-4604-a55e-a950c9d98570", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "91a2e93e-ab2b-49ce-bcdb-da7c11c576f7", + "TenantName": "Tenant-91a2e93e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582324877", + "DeviceId": "5160246a-cb10-4e95-91a7-a22bccfbaa9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_466262496", + "DeviceId": "4c82691a-06bb-4e14-abee-af3fe826038f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_801597262", + "DeviceId": "f1a8bc0f-0e36-4609-95c3-457c8376f4a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_626718525", + "DeviceId": "8a64e10e-a9a2-411f-9366-6bcbcbf3a1f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_534025951", + "DeviceId": "48343375-fce0-4dc6-9103-4825ec8b13d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_632415708", + "DeviceId": "9768ac84-ec19-4122-ae59-83a2501f8741", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_655849067", + "DeviceId": "e353718d-9eeb-4fb0-9d0c-cf695abe0114", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969310386", + "DeviceId": "15716385-46d4-4ea7-aaa2-f2f882686f5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432596517", + "DeviceId": "457f5a6f-cd46-4790-b8e4-02ec163f4c0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826588029", + "DeviceId": "ac19afe0-4ade-4a98-a89a-ccbd127bab4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_513881834", + "DeviceId": "8515a95b-99e5-4cb8-ad0c-50142bc24bfa", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0bb59150-1fe3-4fa5-a69c-068daef88324", + "TenantName": "Tenant-0bb59150" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_954982430", + "DeviceId": "1d766522-b6a4-4b6b-a2b5-55d4b9495178", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678458616", + "DeviceId": "f1ae88dc-c4b0-419d-a6ec-10704fe55195", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388605921", + "DeviceId": "28d7b41b-d53a-4e29-b389-4ec881159a07", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_105899325", + "DeviceId": "e23868f8-0593-4178-85ac-4f7e211a1327", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349967894", + "DeviceId": "1199f453-edfd-4628-ae17-de81cde9aa0c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351177074", + "DeviceId": "d8f21cb2-6381-495b-b74f-602e10ff5e38", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726889506", + "DeviceId": "dc649b79-46fc-4a25-a800-7d9ac4e7bc70", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_432159632", + "DeviceId": "a0085fd5-2599-4f47-b784-fb8e29fae459", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_118538712", + "DeviceId": "4b42a265-89cf-48bb-87b1-49f4e2cf960a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_359526379", + "DeviceId": "c2f70a13-207f-44a8-9cb6-0c9521718ba6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_879412587", + "DeviceId": "69c2a691-8aec-428a-9d1e-6bdf0c9f8291", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d8957d55-d86c-4717-a4f2-3d313d2015cd", + "TenantName": "Tenant-d8957d55" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819611932", + "DeviceId": "c926e761-8918-48ca-b693-e57746b40a68", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_958765540", + "DeviceId": "752d275e-9f12-4238-91c8-15ee0451a773", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_267311912", + "DeviceId": "e5a513cf-408e-4dca-99a1-cd49ef52d68d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333133514", + "DeviceId": "1ef1f9ec-6d48-4323-a71d-ba6325824fa4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998686583", + "DeviceId": "ff72b7f0-5b5b-42b5-8d05-af8f19fb1d6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_376953858", + "DeviceId": "9574e0d3-6c35-474b-b06c-594ce28513e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168396243", + "DeviceId": "c7e65762-4d75-4fb3-bd99-77c76b50c6f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_818387235", + "DeviceId": "eb1433b7-bf5d-415f-a875-1da6434a5d89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973599767", + "DeviceId": "39617250-22a8-4e63-af6f-e77111d6763b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650110720", + "DeviceId": "de4962a1-f045-4adb-8834-7eea6d49097b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_500854873", + "DeviceId": "a76a3d75-5d23-4e7a-bbe7-318efcaebc70", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "724e227b-d680-4c8b-8b14-43ebbc108037", + "TenantName": "Tenant-724e227b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458893282", + "DeviceId": "88ec376d-0771-4baa-9c4c-e999439a3e17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_997140773", + "DeviceId": "786c82d0-52f3-4abb-8570-b1b1922c976a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273706121", + "DeviceId": "08d450ac-829a-47f6-9d36-86c7144af4a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768693461", + "DeviceId": "023140a8-edae-4cf6-8184-91a895a30090", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377049053", + "DeviceId": "605df25e-0833-4b0f-8835-6f3b76d311ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_972016443", + "DeviceId": "d762c825-aac6-45d0-9107-18665f962cfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_760748067", + "DeviceId": "0020b15c-2556-42bf-a045-23398cc6226a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_644938365", + "DeviceId": "2c87ca13-b61c-4fb5-b1fb-7a816425808c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_281588929", + "DeviceId": "0101dfe9-3591-4b7f-83a0-91a912edef73", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314689932", + "DeviceId": "0a47bc60-107e-47de-b527-156d39772710", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_921923134", + "DeviceId": "732f95a6-b62e-4739-9b6b-3b79ada1aacd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a1265843-e744-420a-98f1-b67a19e36af7", + "TenantName": "Tenant-a1265843" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_849635689", + "DeviceId": "c1e1cde1-9ecf-48e7-8092-0550b17ddabe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_903679513", + "DeviceId": "c6ef1882-ef89-4818-a968-ffd0ab259839", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_649794732", + "DeviceId": "de3b6f27-45fb-426f-b339-4fbeb2033db8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_656525347", + "DeviceId": "b950c3b5-e143-41f7-a200-9d07f6bed99d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575290107", + "DeviceId": "b8e43a60-30d6-4740-bb82-5eae4de6575e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_876016378", + "DeviceId": "1851c57e-e8fe-4f9e-a932-d8b59047775d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_457919438", + "DeviceId": "4921b392-baa2-4d9c-9723-2d30e47b23da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_641067644", + "DeviceId": "95964472-cf5b-42c3-a266-f6cca37cb99e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_280711848", + "DeviceId": "9526a84e-57f0-4967-ac0c-493ac177458c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_914232944", + "DeviceId": "4ac8f66d-1da6-44f9-8a79-63544e636be7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_336005242", + "DeviceId": "da1b4b3f-893a-4411-a52e-ff714c5196ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ba27e99a-c96a-490d-935a-99fd80d0937f", + "TenantName": "Tenant-ba27e99a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_346780700", + "DeviceId": "100cdf47-efd1-484b-9218-ecaa59083ae3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_462378272", + "DeviceId": "2fd38058-8be1-430f-a03f-0cc37a740eab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304106307", + "DeviceId": "4be169fd-54ce-47fe-8979-0fc3ead0d785", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257911119", + "DeviceId": "6ecc484d-2b12-47cf-b52e-790db5fcb4ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521650300", + "DeviceId": "8e948f33-8779-4f4e-9c6d-b5da04c756a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995045086", + "DeviceId": "c509c885-2a8a-4eb9-8866-e5b006fb0901", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_725014937", + "DeviceId": "e24dd05f-8035-4618-ac41-86374703a7dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_474827522", + "DeviceId": "cacdae7d-8ddb-44f2-9497-992ecc5b5fc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_672210898", + "DeviceId": "475b13e2-744b-4cde-b683-050a52a895c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749112924", + "DeviceId": "c76063ea-172c-4d5c-b60d-c199b21d58d9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_112903418", + "DeviceId": "6ebb6664-5ef4-4637-9352-10c651d2d67d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "71981804-e918-4bc0-a87f-4a0915c7d88e", + "TenantName": "Tenant-71981804" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613471355", + "DeviceId": "49709d1d-ef52-455e-b4ca-dcb6f2b5a579", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_645180894", + "DeviceId": "b488aa82-2c83-4ba9-86e1-563a081fb593", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_668338604", + "DeviceId": "485b9a0a-9003-4f80-b5be-9a2e6f503c5c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872494734", + "DeviceId": "6528c43c-fa13-499c-bc01-bbca6cba693b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708380385", + "DeviceId": "ba05c227-0196-4da9-a192-7a687d98c057", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472330667", + "DeviceId": "3962fa29-27c5-4172-98fb-886856825fd3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626046846", + "DeviceId": "575e3a0b-297f-4314-b4dc-e00201743db2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157323199", + "DeviceId": "b58bae04-1c27-478e-843e-78e25d974ade", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_399965255", + "DeviceId": "e8180d11-77a0-4a86-97f9-b63850c4bd79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_442306351", + "DeviceId": "32aff7d6-4fc7-43aa-9cd3-f60c86a20d58", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_518808329", + "DeviceId": "0d4f7aa4-f211-4ab1-ad25-d21a71631b86", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "009c7832-3ebd-4690-b566-8759197156a1", + "TenantName": "Tenant-009c7832" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562341587", + "DeviceId": "82620ae4-ca62-4968-8fc6-8f4fd0770355", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_973042578", + "DeviceId": "4eab5013-311c-49b3-8a46-826cb0313f40", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_599213226", + "DeviceId": "14472788-5cb8-475e-91c8-355244a1f670", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_393221400", + "DeviceId": "bef1106a-82d8-4c22-944d-9c932300d036", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333594447", + "DeviceId": "6a7df551-9ceb-438e-9019-17c1334758f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_574420857", + "DeviceId": "307ed3a6-6158-4003-8bf6-60b43f0a0130", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_986990241", + "DeviceId": "5271497f-6176-4236-9f07-d06596e42b52", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_923007888", + "DeviceId": "8c93660c-a0f7-4a6a-adfa-ad682ce5d7f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_424110388", + "DeviceId": "9bc09ac4-5153-4b6a-af16-55ce450f2907", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965832545", + "DeviceId": "a3e17817-41a3-41a4-af41-ab2586d368a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_307059371", + "DeviceId": "c1c0afe4-0c3c-4b01-813d-1426cd7186bb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ffe35069-5f48-45a8-b518-31ba4a755a11", + "TenantName": "Tenant-ffe35069" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260554.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260554.json new file mode 100644 index 0000000..ff880a3 --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260554.json @@ -0,0 +1,4752 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_576935191", + "DeviceId": "4a7d59c7-cb3c-4fe3-a90d-a5be370e8b64", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644630217", + "DeviceId": "1d6d7544-80e9-4426-b7f9-43432db42903", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748492938", + "DeviceId": "861b773f-e119-45c1-abce-162591565c21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_367530822", + "DeviceId": "4586b117-e0de-4faa-ac31-0e0e5b6ba705", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984915280", + "DeviceId": "1090a895-fb64-4a51-a9e0-ad9b3f0552ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_955952567", + "DeviceId": "75cd506e-488f-47ad-bbe3-3cea9e05a9c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_746682458", + "DeviceId": "7854b574-5a6d-4eaf-ba0f-fa480cc03aa5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566916348", + "DeviceId": "67cac51d-0caa-46b5-950e-0b54f94deb68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_102699765", + "DeviceId": "970f430e-9743-4a41-b1d5-35247afb08ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471889552", + "DeviceId": "725e24ad-6a29-4dd0-937e-e2f4e4f2e95b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_970097227", + "DeviceId": "edeb9cda-f054-4520-b4a1-951be3feac4e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3dc684e3-8480-4e7e-b126-94251dce6dfe", + "TenantName": "Tenant-3dc684e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_927885148", + "DeviceId": "2768bf08-372a-402b-9f98-c547ce5a083d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_197219759", + "DeviceId": "2cef99db-7ee4-4e7a-b655-40278440fb61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_901526324", + "DeviceId": "0185f422-810f-4d61-8f23-e2a4578d5ead", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349510651", + "DeviceId": "62d11dc1-86fb-40f3-9dbf-21bd3cbc2857", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_860183603", + "DeviceId": "1a6f9cfe-69aa-4f9c-bfb4-21ad325ad10f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_472576241", + "DeviceId": "0823ea0a-466d-43ca-85f5-64f241c426fd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_119741681", + "DeviceId": "c836f41e-483a-467d-be1a-a8b202223605", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334477622", + "DeviceId": "c57d1b7f-f4b5-4c42-845d-68cf15e8263a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288712421", + "DeviceId": "7dfbc772-a754-4739-8d53-c44751a2cc5c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814849071", + "DeviceId": "784f8237-909e-4e44-b21d-ddbc734681e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_259673115", + "DeviceId": "e54d336a-fa49-4ab8-a7e6-07782c372376", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4b410bab-1804-4325-b5fd-99f6b12a3b04", + "TenantName": "Tenant-4b410bab" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376955063", + "DeviceId": "d85a2325-766a-48d5-b594-55f8c0afe43f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_512268165", + "DeviceId": "2908537a-71cf-4120-bfba-546d97e6112e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_819666443", + "DeviceId": "0bcf9e75-be1f-43b9-8bee-ac026fd6759a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107342545", + "DeviceId": "7169250b-af5b-4863-897e-70ba7d2239c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899494544", + "DeviceId": "b7468009-ce53-4891-8717-2bb73c720e39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658020805", + "DeviceId": "28ac7fbf-e7cc-47c1-b08c-eefa0a1d1384", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660902934", + "DeviceId": "af8a6b8c-f9d5-44d2-8c87-498e16706f37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463299529", + "DeviceId": "7945827d-b4bf-46a9-ab75-4473eed23001", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_374826327", + "DeviceId": "5edf30d2-1402-4855-9974-af965ae24f44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187435790", + "DeviceId": "746caf30-9566-4103-a4a2-b49a14189499", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_666500834", + "DeviceId": "caea24ff-a70b-4acb-bc8c-e87316e08b1a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2362a494-86cd-4fc4-a811-df52f2cf3ecb", + "TenantName": "Tenant-2362a494" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349752150", + "DeviceId": "fc705f6a-30f0-49c1-97f7-5505bfd6bde6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374478488", + "DeviceId": "d066c18c-fe97-4dc8-96b5-c1ee013904dc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_941555155", + "DeviceId": "4dd45b85-6b91-45a3-829b-32cd19750267", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_512510101", + "DeviceId": "dcd0beeb-a897-4a9a-a9b8-a9f666565f61", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_210077104", + "DeviceId": "58ccfa17-c948-4604-ba4c-952972e482cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_406565879", + "DeviceId": "ed708cca-6d40-4eab-a6ab-85959380f0a1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_625685414", + "DeviceId": "7b544863-8d96-4fda-8b15-1a467d654155", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526669841", + "DeviceId": "41596479-6821-4c0c-9fdf-c34612fd4252", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_838412132", + "DeviceId": "f00a0170-06dc-4833-9cf7-dea5b2ed0246", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925036960", + "DeviceId": "dd29316e-706f-40f8-ac30-79c8997e8d43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_998397014", + "DeviceId": "00546c2a-e967-4826-ad99-a27d15b1eed4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c9133a4c-f080-4007-b38b-b29e98d1feed", + "TenantName": "Tenant-c9133a4c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368703480", + "DeviceId": "6056e6a8-cfe8-45fa-91c8-dbaf410b0a34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429447081", + "DeviceId": "d8235c38-2c19-495f-829e-109429a18115", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221720315", + "DeviceId": "7027156e-b8de-4c0b-881d-b9fcbba1f0f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_676571598", + "DeviceId": "b8ccebf6-a304-4056-afe8-3067c1b6b29d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_693638753", + "DeviceId": "26437239-d466-41c7-aab4-79a01ad901a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_396652241", + "DeviceId": "4163b0b8-f689-45cb-8891-11ca4e9893dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730749790", + "DeviceId": "a5235649-6246-454b-994e-23af01d86bcd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182160893", + "DeviceId": "f37feb75-8fcf-402d-8682-9b6f25e3731b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_461176974", + "DeviceId": "40b91f2c-b7c7-42be-acdc-c50e2e83ace8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_461338163", + "DeviceId": "dae58b5f-69ff-4a99-9bf0-1501e815ceff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_315709396", + "DeviceId": "d37f81b3-6192-4268-a720-a4cb26920060", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fc13908a-175d-4250-95d1-3015941e7957", + "TenantName": "Tenant-fc13908a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_555272772", + "DeviceId": "0a4a93bf-f110-4ef6-94a9-8e74c1e4ae02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_104793829", + "DeviceId": "50740bb8-539e-4488-ab56-0442f27c43ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893157779", + "DeviceId": "7fab2ec5-6f0d-49f1-83b3-cdf68e4f00ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_254306947", + "DeviceId": "b1fa55fd-e811-4d36-927c-d103ecb76af3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_985834988", + "DeviceId": "05049f8d-1b36-45d6-a08c-abc4b650d923", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476387603", + "DeviceId": "1c186dbb-443c-462c-9801-089260631565", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977192140", + "DeviceId": "f6042e56-98a8-44ca-8ada-1b782a3a53e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_812019630", + "DeviceId": "e580f85b-8326-4c2c-9535-8792c3253e09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665634685", + "DeviceId": "727f1a2b-2775-4772-9d48-deefec111be5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_897557655", + "DeviceId": "d6183497-3fc2-4caf-a2ef-202e2d5f5038", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_913480085", + "DeviceId": "f3398bd9-baf5-403b-b679-8f0c0f7affda", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b0d71db-525f-43a7-80e7-8308597d7735", + "TenantName": "Tenant-2b0d71db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600143631", + "DeviceId": "d9e81004-50f6-4e8a-869b-d41ea70d01d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_939310666", + "DeviceId": "0dc84e9d-171e-4857-8d51-fb5dbeb0f096", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_384066708", + "DeviceId": "d41e3cac-1d53-474a-ace7-357a722c6235", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_708416787", + "DeviceId": "1dd003f0-3555-4958-9275-999084aaf58c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825368266", + "DeviceId": "42d822c0-8988-4448-8b79-fd14fae60ac9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_735951165", + "DeviceId": "79791891-389a-46b8-ac25-ec4337901dcf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_959295179", + "DeviceId": "73840ba6-b8ac-46b7-9529-43a29b4480b5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373498935", + "DeviceId": "6ada1801-66c8-4677-965c-480802be9a41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925990221", + "DeviceId": "58bad0e1-2a75-471d-8c63-48bfd8c13dcf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_801691235", + "DeviceId": "e2b0a446-c266-459c-aa8b-e2088eb5e439", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_981927964", + "DeviceId": "98485822-2972-41f6-b3bb-0329b23801bd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d5445fbf-17bf-4c8c-a865-033b4ecc0d99", + "TenantName": "Tenant-d5445fbf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270630095", + "DeviceId": "f99380fa-bd57-4039-a93b-0bd2d8404714", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_124731024", + "DeviceId": "8348839f-95c8-4837-a1b4-68f1ad75eaf0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_972997944", + "DeviceId": "72d7f1ea-36ec-4a48-80a2-5dfd1b8407af", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_226801690", + "DeviceId": "78e8a4ef-073e-4326-a7e3-ea0a2da40943", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_732912794", + "DeviceId": "c8a18334-03f8-456b-8a1d-5ae1c55b9c9a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_335904062", + "DeviceId": "41b98c6d-2108-4eb2-865b-a560f9338599", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_258152040", + "DeviceId": "987ffa00-8acc-4e37-a1e7-66fc7a05609f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_522690995", + "DeviceId": "b3f1c3ef-e90f-4ee3-8935-f8f801809390", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650977689", + "DeviceId": "6d50aa5f-31ff-4e2b-b255-3cfd8864c95f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_105350393", + "DeviceId": "f8821fa1-0e08-4219-8d6a-9b48f03ad1a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_862373632", + "DeviceId": "0c5e3822-074d-428f-acf7-294136793853", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7086c648-e654-4dbb-8810-ea0cac42a54d", + "TenantName": "Tenant-7086c648" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_370386069", + "DeviceId": "8c6475dd-bd24-4ed6-a557-9c2c41cc3380", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113509562", + "DeviceId": "5beb191a-55ba-4fc7-9e61-66fcb19232d4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349402230", + "DeviceId": "0157d3cf-d4f3-4105-b8da-5aa615d090fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_337637788", + "DeviceId": "a731bef7-3040-4b8d-aed3-84c0650b7df7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100131644", + "DeviceId": "8c14a3d4-ba08-4e7c-8ce5-842e21c14933", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_378984205", + "DeviceId": "b021633d-999a-48ba-832d-099ea463cfae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_814601661", + "DeviceId": "cb0960e5-5b89-4ba5-ad6a-f597afabc16d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_506615996", + "DeviceId": "8141268d-d81d-4f6f-84a2-c2ab6fe786cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_202275789", + "DeviceId": "25405509-4c3c-4154-8cbe-664ddafeca27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688082095", + "DeviceId": "b04bcde8-eebf-4bec-b0f7-aafe2fb7ddb9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_751507679", + "DeviceId": "14cf5569-57a4-4fcf-ad61-f7763aa04627", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "534ef4ff-379c-4b04-a86b-8e54603218cd", + "TenantName": "Tenant-534ef4ff" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833984808", + "DeviceId": "996938a3-ff51-4c50-998e-7d1a0cef7b71", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_963036103", + "DeviceId": "632389b6-c901-41a2-b18d-8fe245a3eb6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_178654829", + "DeviceId": "7b2c6295-36ef-434c-b67a-6ee4397bf5d3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429176235", + "DeviceId": "e1a270a1-8330-43b6-851b-1e2d9a062f4a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580498869", + "DeviceId": "a5af0271-aa5d-47e4-871a-3b9a9dc92aaf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_807697121", + "DeviceId": "de9171a7-dac5-4271-8e99-ea43e0300481", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_518218192", + "DeviceId": "e1a6c21e-b6a6-4d7b-85e5-f89ebafa6d5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109961947", + "DeviceId": "9bd1621d-587f-4180-b2a9-f7f61b0f2a99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_524546202", + "DeviceId": "5c17697d-e14f-4128-b7e6-92d9a7565125", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_978460514", + "DeviceId": "13039537-c8a4-44dd-b9da-60eab8c4bbdc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_489621570", + "DeviceId": "fa8740eb-97f4-4281-a5fb-a0e0f3757a98", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fbef73f7-a6df-42e7-a52b-9676dace4d2b", + "TenantName": "Tenant-fbef73f7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957590776", + "DeviceId": "85e3a8d4-e4b3-415e-967a-c3cf0912102a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_839636680", + "DeviceId": "820aec5f-2045-433a-be01-534ef2893cc7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699799747", + "DeviceId": "5be3966c-76d5-4d76-8d56-5bf209146e93", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_156074696", + "DeviceId": "6d68f239-59b1-4ba1-9e9e-69daf1829879", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_520276172", + "DeviceId": "c80c422d-8390-4c8a-b401-a247589ef330", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_483507613", + "DeviceId": "1edbdda8-6f45-4b65-b628-b1efd704985b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250182050", + "DeviceId": "c316a1c2-dc1d-491c-abac-5f26fd2d1448", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_128450631", + "DeviceId": "5f8c82d8-abbb-443f-9d25-0a258ecf9797", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592204685", + "DeviceId": "8d930034-f498-4f01-b98c-8ddc01f69884", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_616174318", + "DeviceId": "a5e4ea97-3766-43ad-94b9-df1a3a88449d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_358214872", + "DeviceId": "c4a3e11a-4e0e-45f0-a637-6dd24c84d0fe", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1f442d95-b52c-4513-be98-a0d1abdfe071", + "TenantName": "Tenant-1f442d95" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391724888", + "DeviceId": "a9ca8a58-69a1-482f-a942-2242793fcad4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_494219957", + "DeviceId": "bc1fc44f-6095-405b-8591-9dc760ba5e21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916488853", + "DeviceId": "4e74107a-4b3a-454e-b90f-a3a78ddbc3dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350104705", + "DeviceId": "213b890a-0e9f-42b9-8223-3f9ffc194d14", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_463567265", + "DeviceId": "683ee9e3-97be-4a77-8ab7-2b7753fab9d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_321275865", + "DeviceId": "51e4bb6d-79f9-43df-ab15-9b22b6c15f4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969861995", + "DeviceId": "7394ca4f-960f-4024-9e6b-979135bab8dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_329303200", + "DeviceId": "9bfc5d08-5f04-4001-b986-fb1678ab8ee6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_995949711", + "DeviceId": "7e5323dc-f058-483b-aed7-2fc17627434e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_607245128", + "DeviceId": "6ff8bacf-3f4c-4ea3-ac81-8ab60cc38b01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_465096814", + "DeviceId": "49ff46f1-4a03-4fb3-9489-7d5514236720", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8197907a-687a-48b0-85fe-483afa9accac", + "TenantName": "Tenant-8197907a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441922677", + "DeviceId": "8c0aabe1-6f96-4b81-8c78-05c7ef8767ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_753036433", + "DeviceId": "8b92b6f5-b499-4980-b902-46f79a107c97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_387439883", + "DeviceId": "0244eb30-802b-4c05-ae4a-a3896db62dc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477092921", + "DeviceId": "9fa55f5b-bbbf-49ef-b171-2721126c4e51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928254354", + "DeviceId": "54cbc77a-8482-45af-854b-580581143fae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266045382", + "DeviceId": "18d0aef3-2617-40bb-a904-e2c7266bd2e4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_659224789", + "DeviceId": "ad9715f3-06d6-42a0-acd8-93cebfcd9913", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_686613067", + "DeviceId": "c8fdd637-36bb-45a8-ac0f-a2cc5f242b4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559131886", + "DeviceId": "981b3471-7627-4018-8613-967948f16428", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673589126", + "DeviceId": "68e27663-4b4d-48f5-8f81-1178578134e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_430091668", + "DeviceId": "ee6ed518-5015-4780-bab6-416ab5a60176", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0a08cc97-ae0a-4287-802b-4b2616612729", + "TenantName": "Tenant-0a08cc97" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_987729648", + "DeviceId": "dc3a0b13-7127-4464-8ba9-e33c6c12dc75", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_285683934", + "DeviceId": "ffc7d746-9396-421e-8926-02567a446daf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129044669", + "DeviceId": "488f17aa-7dd3-47b3-b46a-9eee66fc956d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841007869", + "DeviceId": "01d0220c-f700-4aaa-a176-4a27e8d26371", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_325159271", + "DeviceId": "09430ccc-f0ce-4965-960f-36cf87a37214", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861344437", + "DeviceId": "e38594ff-b213-472d-9e22-951b5ffe7700", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_172596565", + "DeviceId": "4560ff27-d45f-4f07-a036-65859a8a019a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837723819", + "DeviceId": "02b896f2-50c5-45a7-a14c-6741279aab55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_784857446", + "DeviceId": "5f986b42-1d88-48ba-8754-3ed253a4b635", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_594950551", + "DeviceId": "cab98e02-0251-4b58-b3d9-2c09599ce73b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_631968983", + "DeviceId": "120fae29-8aad-4c47-a705-dfb7ab0b253a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9449aeea-5644-4ff4-bc80-409fae487cb5", + "TenantName": "Tenant-9449aeea" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_118359187", + "DeviceId": "4215c3e6-d7ac-4571-b3c4-25bb4423f058", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_550089799", + "DeviceId": "37f33996-196d-43b2-bdf7-714d8e219677", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_288243267", + "DeviceId": "60c47c94-02e6-4cfa-a651-aba4cb72d722", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622353489", + "DeviceId": "5834aa5c-46e5-4600-8052-1d947592cd34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_575418916", + "DeviceId": "d4f4080f-4f00-4905-b82c-7e98e3e07353", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_573576417", + "DeviceId": "4630a2f1-d1ea-4920-984e-519a11670cf4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379582526", + "DeviceId": "172f582b-023a-4167-a91e-920d28c8e160", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_514245306", + "DeviceId": "fada14c0-f15f-4c8f-9654-81e79dce8d86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_364066584", + "DeviceId": "fea2e77f-498f-4b2e-baa7-6e1feb40004b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915813332", + "DeviceId": "e621659a-c391-487a-97e4-0b5bd4347ab7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_551224072", + "DeviceId": "21200caf-aa4a-47a4-a1be-cc3f303e82dc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cf9a49f1-0227-4f0f-a297-2e8c8fc8becc", + "TenantName": "Tenant-cf9a49f1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_304003264", + "DeviceId": "dd328612-f919-4fde-ae64-49df428bbd97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_602230521", + "DeviceId": "476052cf-162a-4b55-be6c-5ab24269cb8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318353249", + "DeviceId": "d79e1db7-a4fe-4fa0-8d12-c9685b0c62bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_767605287", + "DeviceId": "6b3a7c6b-ed41-4a27-b273-8f8c2103bd4a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246463938", + "DeviceId": "70dacc7c-9cbb-495a-9bac-ea4d71950b91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181334092", + "DeviceId": "7c7f00dc-604d-4157-93ba-cce3a2fb3d81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_750243551", + "DeviceId": "8f12b103-beda-4343-88ee-fa9e018aa212", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_592797209", + "DeviceId": "75fea854-7518-416d-9646-3c36df744185", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898000101", + "DeviceId": "15de0dda-8213-4afc-b77a-032daea95962", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517940563", + "DeviceId": "978545d8-4a71-44df-b938-5635baa22a96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_887035375", + "DeviceId": "eea982f5-5b27-4003-9fbf-df9932179959", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "083d08b8-f1e7-47ab-8bec-68de05fe7d9e", + "TenantName": "Tenant-083d08b8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_117046666", + "DeviceId": "b073aad5-6f70-4e66-9f01-ef6a954cdcb2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_256434823", + "DeviceId": "a70f1f14-9e42-4cd3-86fd-04f0b52def33", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_234984324", + "DeviceId": "eed00f33-67ec-4ad3-933b-17eaa8a61289", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_593928282", + "DeviceId": "ab9ca194-47c2-433a-abe2-9d0b7a39821c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_328499676", + "DeviceId": "35b6b4f7-6f34-4709-8c57-fef98d383b16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_952094536", + "DeviceId": "4f88a470-48bf-4981-8512-f45b53868663", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370759542", + "DeviceId": "0aabc4b4-73d9-4887-9aa5-96759506cd07", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956165505", + "DeviceId": "57bddb96-89ea-47d7-ab0e-6343b565519c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_620780663", + "DeviceId": "caa1b730-e8ee-410c-8e44-48c83d2dd59a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_922519053", + "DeviceId": "f17600f6-73a9-4cdb-944b-c10de02a1edf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_580860433", + "DeviceId": "39dbffd0-b647-43d4-8cd7-f63a9e64b736", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "34f838aa-6941-4d0f-b182-dd1469a371c5", + "TenantName": "Tenant-34f838aa" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248697681", + "DeviceId": "8da1ffc7-9fbc-49fb-9aca-aaa13d735aa0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_571283973", + "DeviceId": "d8060574-d3aa-4c40-ae4b-45f0d5b3f4de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_795574144", + "DeviceId": "580d3371-d2fd-45ac-92fc-68eb2a73943b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_396398332", + "DeviceId": "0f50f374-1387-4023-9717-b2346794e0f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_589061646", + "DeviceId": "7705c4da-4797-4c98-a2f9-9581c33511a7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853239867", + "DeviceId": "f16c50b1-fe73-49aa-bc5a-1cbbb93461d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727505480", + "DeviceId": "e4406471-8eed-4bb8-ad63-b3280dca09b7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_239904275", + "DeviceId": "ad4faed4-c012-4ff3-9972-209ba0905b1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146310036", + "DeviceId": "118d8d54-9d2f-4ed6-8c62-730b0f8b6fae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_920043884", + "DeviceId": "1215a0b7-2d20-4199-bb6d-4f71d5145e91", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_566101700", + "DeviceId": "9ef55bd1-a5ea-4e96-a2e3-4561fe65c414", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1727393d-6d01-45e6-9692-f1d0ab0c91d1", + "TenantName": "Tenant-1727393d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_739388522", + "DeviceId": "16a39d9f-4b92-44f1-a0ed-dc7caa45b530", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_840693172", + "DeviceId": "de6e70e3-7eda-4698-a2b1-ca16bf2efbe7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_561348307", + "DeviceId": "08f9540f-9ded-4318-b1a6-53c7860e5676", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_818418240", + "DeviceId": "5e808e79-1c3c-486b-996b-0b5b708bc4c7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429651577", + "DeviceId": "eed45aa3-b567-4db4-b97e-eb916edbda1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_156170441", + "DeviceId": "6d82482a-c4f6-4b90-8630-ffb4ccc8fb64", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_862471805", + "DeviceId": "eae322cf-6af9-47ab-a0c4-dffa8c7b37e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177441780", + "DeviceId": "770c79bd-e8c0-4434-944b-bd523f13bb7f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_420240926", + "DeviceId": "23babd88-31b0-4252-81bd-b19c0d490009", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_240873241", + "DeviceId": "b76bf658-2aa1-4535-bbe1-91b538a23e54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_985168267", + "DeviceId": "d5b900a5-9c07-42ea-94da-8b06de7b1d3b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "78173b2d-857b-4e81-b39f-9bfd7e0482c5", + "TenantName": "Tenant-78173b2d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270749709", + "DeviceId": "c58a69f6-42fb-4bd5-b227-4720b196649c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_166462357", + "DeviceId": "efbd2f7d-7cf2-4cc5-a703-75593e751d6c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_646666424", + "DeviceId": "d395c2c4-30da-444d-8c8a-078d7b8061e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305320439", + "DeviceId": "85bf23e4-1757-4034-8d87-0f398a074100", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_834217468", + "DeviceId": "a8589924-0a73-4f13-8903-d7bb4b6f1c86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_778790762", + "DeviceId": "b0580f0d-ae25-4a1e-9a9b-4abb9ebc89ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_969055188", + "DeviceId": "64635258-fe3d-4127-b7e7-0529339a15eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_429345237", + "DeviceId": "45488eee-dc37-448f-af18-289bddeca0bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_157549705", + "DeviceId": "6807dfed-a74c-459f-8fe4-e98f45def284", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_177270841", + "DeviceId": "c0ba16c5-1b1b-488f-8f2d-1f004e5c5db1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_342480525", + "DeviceId": "8cbae56b-288a-4b20-96af-2ecd05f4d472", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "59d52c0e-0e6a-4a1b-b67e-bdb97e3d4293", + "TenantName": "Tenant-59d52c0e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_246168556", + "DeviceId": "d6a29a2f-b493-4e78-9c93-4c589f7438e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938444382", + "DeviceId": "df0ea842-8d0c-477f-a740-019b809d8e4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_389112187", + "DeviceId": "7423ea12-c0ef-45e1-aff1-056679b99f42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239288313", + "DeviceId": "2e12a535-d151-44ec-aa6c-129391d6d444", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_243928348", + "DeviceId": "36b3bb8b-abd2-4416-8120-e88d9222a4d1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_688260505", + "DeviceId": "99b5b5ca-cb62-4130-b65b-35f0dca6d56c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794548987", + "DeviceId": "0b1b6129-bb70-43e9-84ec-fc176893beca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556334192", + "DeviceId": "2a6a0174-456f-4384-a1a0-cc98656bf269", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189116487", + "DeviceId": "6b641bcc-09b0-4f92-998e-00b90f574adc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_628177126", + "DeviceId": "9efda02b-c491-45f6-b03d-7abdc4ccb27c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_312974405", + "DeviceId": "501489c9-ade2-43c7-a620-4455e8017bc2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "de4ff7d5-f1c9-4a0d-9407-9a70e7203bda", + "TenantName": "Tenant-de4ff7d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_349180075", + "DeviceId": "56cc9cf8-d1c3-4714-8fa7-c203b5170fbe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_548689782", + "DeviceId": "a02cbd26-1a54-4df7-8ee5-e21df2b76b1a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_952505564", + "DeviceId": "d350a49c-e4e9-4de5-9e61-a19e54a83a02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_174200178", + "DeviceId": "3a1238df-c2da-4822-bc21-63cbf19a9b80", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_809236761", + "DeviceId": "5d8d2e60-159d-4f63-9ca1-e491f9217d1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_567481387", + "DeviceId": "db44708f-3932-4dc5-88e0-c17e8880afce", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843897809", + "DeviceId": "e18cd723-7292-497a-b02f-200048d51260", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250466862", + "DeviceId": "51186436-80ba-4477-9524-991a0fd0e242", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_946470103", + "DeviceId": "0a77ec73-85aa-4b27-b5af-879960405712", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264488043", + "DeviceId": "7416412a-66f2-49ea-968b-07e0307f4f2b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_184699442", + "DeviceId": "8b5f6ec4-7d85-410b-aa59-45fb99528020", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4bc49969-b179-4d6d-bd4e-36674e3ba17e", + "TenantName": "Tenant-4bc49969" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_960835560", + "DeviceId": "4f6ed80e-0fa2-4ecb-b138-1b57c84b4465", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_916294392", + "DeviceId": "6afa8029-0343-4498-a601-efcde97e23d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314385238", + "DeviceId": "f4c1cd57-46b9-457e-bb78-21548e9f8f26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_407859864", + "DeviceId": "6e260647-d0d7-4e4b-bd93-57183be04176", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_721478960", + "DeviceId": "078dc589-259b-495d-89cb-40bc14f652e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961647332", + "DeviceId": "c7dbbbad-bc44-4c6f-8f0f-67a16be84241", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_861107969", + "DeviceId": "2f7c6f05-4f3a-4d4e-b35d-8c061994c464", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418739039", + "DeviceId": "e942b77a-afdc-41fa-9138-d18dbd01344b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_149148647", + "DeviceId": "e0e5e4b5-23ea-41bf-bede-7a984d69893a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662181024", + "DeviceId": "d8deeeef-5710-48cb-bcd8-265e36b020e5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_335150072", + "DeviceId": "5399e630-26fb-42be-8413-eb105fe89fcd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8cf92c74-da2f-478e-bfae-10828e57b439", + "TenantName": "Tenant-8cf92c74" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330722681", + "DeviceId": "e7aed6b6-315e-4cc8-a308-4aaab5d5746b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_585898680", + "DeviceId": "7d3f8ad0-4697-43ff-b97b-6ad5435ba079", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_334895559", + "DeviceId": "f028a819-99f8-4c31-8b0e-d5aaf8293147", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_931306266", + "DeviceId": "0dab9cd8-82a3-4a60-8d5b-37910f397caf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_841785356", + "DeviceId": "a24b7ea2-1c19-4414-b618-11dd269f67ac", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_811567297", + "DeviceId": "04d18e3f-2e95-41d6-a94e-00f7e984c863", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_132279641", + "DeviceId": "79fa3cba-7a12-4991-9988-49c522e7627f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_777407288", + "DeviceId": "a9d983bc-17fc-45f6-9408-7b905ec4047a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_416631691", + "DeviceId": "1d5d9d15-f47f-4149-97b1-11d806930b5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_292248492", + "DeviceId": "40afa6a1-7e6d-4979-9a39-d009d5751122", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_473958954", + "DeviceId": "53655a7e-42b3-4692-822e-4f45776f10dc", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2c808ad5-efca-41cb-90b3-4af452b60a6c", + "TenantName": "Tenant-2c808ad5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_429816392", + "DeviceId": "44e6e813-7c09-4b29-a161-281d3831f0c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_816844021", + "DeviceId": "d72ca1a0-7087-4179-af60-ed843d41d7f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582356020", + "DeviceId": "33331d52-26d5-499a-afa5-e5bbbca281ca", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_296881662", + "DeviceId": "b74cf956-5f7d-4049-a12e-071f8fce400f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_775305025", + "DeviceId": "060e09f0-c3b1-43d5-800f-8e3b39667676", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961439827", + "DeviceId": "5c119cf8-218b-49b4-991b-af7b20874790", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_786086077", + "DeviceId": "4d109191-67fd-4a57-8a97-4759308f7d3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286862433", + "DeviceId": "d8169338-2fb7-4d52-99ef-ecd946e4cbda", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190394324", + "DeviceId": "9aa0b480-369f-4ac5-b1cf-f0f617af1800", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_982315713", + "DeviceId": "481a010b-26df-4c9f-a3e3-a03c603827ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_310083463", + "DeviceId": "b8c9d71d-8edd-448a-b5fe-8a3da759422a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0183bb1a-d6b0-4c7e-8c5c-dd0ea00d8ab2", + "TenantName": "Tenant-0183bb1a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_217181734", + "DeviceId": "39b7c795-42b0-4159-894c-46e2057e7277", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201523146", + "DeviceId": "50c96e56-77ff-4613-b01d-118d5449d21e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_740873116", + "DeviceId": "903fa18f-0cc3-48a9-b8df-13e0cf4fc3ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_790115598", + "DeviceId": "66177b0c-df5d-46a8-8ef9-e8ed16bf7f86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_480958145", + "DeviceId": "35c8aa6b-66ef-40ef-864f-06083dcd6de2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358073667", + "DeviceId": "af4eee6e-7845-4cec-824f-a2cfe975eeba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373567953", + "DeviceId": "d21991b4-27d7-40d8-a573-5baea98b9ec5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_445272531", + "DeviceId": "2ddb9ec6-3850-4fcd-b159-df4de5da8f9a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989605617", + "DeviceId": "80db508a-bc71-47e2-8f0b-75ffc56b9fb9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_174852391", + "DeviceId": "b416b86b-78a6-4273-8670-b263abf235c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_291890663", + "DeviceId": "a6757047-9abc-4a1a-8d4e-fdc61a32322f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b5a3cf4-9ea6-470f-b614-ec683bee0552", + "TenantName": "Tenant-2b5a3cf4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_201620358", + "DeviceId": "964f10aa-74d4-44cd-a9b9-0edb672900a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_761118396", + "DeviceId": "391f2852-615c-431d-a8cd-dd321c0c9a26", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_657659717", + "DeviceId": "bce02d8c-8829-4a14-a41e-dad5f3730164", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779907934", + "DeviceId": "d5e763aa-5ebc-43dd-affb-2b1fbef085e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409986454", + "DeviceId": "8bbc17f3-a746-4a92-932b-00bab2a98663", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_634732538", + "DeviceId": "fb539deb-64d1-4d97-ac85-40f2b90291bf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_496691400", + "DeviceId": "fc82452a-98bd-4805-b1b6-56c6aad6b241", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_798812462", + "DeviceId": "54b71a6e-7c67-48ba-a5a3-afa093fcc1f2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_196328262", + "DeviceId": "bd905aa8-dc32-4cb2-a549-ba1cd76df2c0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_367025835", + "DeviceId": "84c3d41e-4554-4361-a45d-e0f2ecef5bda", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_372640412", + "DeviceId": "0a0b64e3-ff35-4334-bcf6-95609a7a241e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ea01706f-6c40-458d-a9e7-b04f3586d26f", + "TenantName": "Tenant-ea01706f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697783393", + "DeviceId": "aabd55ed-cbf1-49b0-9ad8-69dda2b112ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_240817520", + "DeviceId": "a851b979-2fc5-4c6f-a982-bbe8a046b7ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_938901651", + "DeviceId": "ba897e86-30f1-4cf7-bf5c-ecef30d03848", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408137907", + "DeviceId": "aab289ab-ee74-4ffc-9589-763d63fb9f69", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_347947532", + "DeviceId": "02e7b875-3fb9-49a2-b160-19761be48c1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_715408194", + "DeviceId": "d2b5c795-bd45-4a62-bde8-3c92c5a8a29c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_806613558", + "DeviceId": "fbba414d-4698-41ac-920e-d0e164f6c05c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906494254", + "DeviceId": "9625589d-49c1-4f84-bb06-5b700f58b890", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654797700", + "DeviceId": "36b58cf0-c742-49cb-9d94-8217320604cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826564521", + "DeviceId": "b8bb58bd-56f8-46e5-9932-7861debe74d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_601857076", + "DeviceId": "938b363f-fdf7-4c02-b5b8-a61f890d750a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "26afbd39-5583-4500-9374-460ce01243b6", + "TenantName": "Tenant-26afbd39" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_945792843", + "DeviceId": "6c2ed900-8686-43a5-8e4e-0c7727289ba7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690248106", + "DeviceId": "b81eff41-1c3f-46d8-9303-5013ced08309", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895804364", + "DeviceId": "b627e187-cc60-4f84-884c-7d91e1dde22c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_752336157", + "DeviceId": "bbaf023d-9e84-4503-a3a0-24ac2b52477f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_512320183", + "DeviceId": "b4074aee-ed56-4af3-92c6-fcbca32f6dd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_566113805", + "DeviceId": "2e67f6f9-0aad-4714-9e7d-c2c3a4873d58", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_462135678", + "DeviceId": "2edb378d-ba19-4d77-8edc-fe0798dd8569", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_975347934", + "DeviceId": "7a83a05e-4135-412d-bef4-ed85f987448d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463020761", + "DeviceId": "85200c64-bf61-449a-aff4-402339d9df83", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309738073", + "DeviceId": "eb5d4dce-0281-406f-91cd-98fa1f517552", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_558073162", + "DeviceId": "42f684c8-05ec-43cf-8e62-64eff48a7ac3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fb9c55ad-8804-48ed-a246-d4b9f0acddad", + "TenantName": "Tenant-fb9c55ad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692559303", + "DeviceId": "814db028-c0c3-4167-a02c-9e6ddd707a30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_685274110", + "DeviceId": "eb46216b-e4b0-45fa-862a-d3f2785278ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_857618971", + "DeviceId": "5a34aeeb-a03d-4018-8111-b2d7f1009a6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_960735030", + "DeviceId": "141edb28-a1da-465d-a747-2f8ea5da603c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756760363", + "DeviceId": "3575a4eb-6ae3-407e-adda-bf8512cbbdb6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_600387878", + "DeviceId": "74a74db1-5ce5-44ae-b029-fead252971cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_345557658", + "DeviceId": "fff59386-df8b-4c41-b285-bc468e5844f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_860349252", + "DeviceId": "7078e987-160b-4b21-902a-777330d6a9d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517351622", + "DeviceId": "0a470af7-7853-48ee-b0cd-18641baa46ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_679626598", + "DeviceId": "92e51ca6-dd39-48a9-96dd-b3d675b32270", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_532100910", + "DeviceId": "17c51493-bbd3-4eec-930c-ec3455c2c1f7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a2e28578-4c09-466d-9625-bbfeed482178", + "TenantName": "Tenant-a2e28578" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_716031305", + "DeviceId": "fa8e0761-2069-4f5b-afd2-c43834aa7a45", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888303408", + "DeviceId": "e24d5c22-da78-4aab-b353-515416cb3079", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_131281169", + "DeviceId": "b24e1f09-b9a6-4d42-8fbd-5b992ca11832", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_181817448", + "DeviceId": "84860424-7e83-41a9-bd5c-e8726969a9de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199909558", + "DeviceId": "47e20d73-e650-45a8-a093-f990458fb774", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_743235430", + "DeviceId": "e79a9611-6523-4a63-ab06-df65f8faece4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622187430", + "DeviceId": "37b74989-e613-4475-9905-7bf597af45d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251628253", + "DeviceId": "827936a2-e25d-4f5b-9dbd-df78203e70e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_893925110", + "DeviceId": "aaf471cb-f756-403e-87e5-1e13d0e67e04", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645468708", + "DeviceId": "7575104b-2346-4121-aeec-803cd8ad24c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_811078860", + "DeviceId": "1108b10a-8ba0-4bf6-b31e-fe944108b63b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f8835263-f144-40d8-b5ba-7c0365801200", + "TenantName": "Tenant-f8835263" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694778461", + "DeviceId": "c287a1c4-c6f1-4a40-acaf-3f779e7a2ff0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570976902", + "DeviceId": "d19e8246-be9b-419c-ae54-3e28aeace8c1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_751876961", + "DeviceId": "1a8ede10-f5e0-4b57-ba87-381623507627", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_617091682", + "DeviceId": "8ee9199e-3104-40ad-a5b2-89f7253fe342", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345239744", + "DeviceId": "50dfdb82-fa27-4ca0-a19a-e5ed18876b7b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338936267", + "DeviceId": "bc4cd93d-877d-4183-8494-2cafbfc005c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_146472503", + "DeviceId": "87b3b969-20ae-4e3c-b7d5-9041a755ec1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456000463", + "DeviceId": "28502eb7-b5dc-4860-9bb5-99eb927089c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694754855", + "DeviceId": "7b308374-a62b-47f9-8241-9f8785af6bc3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348116171", + "DeviceId": "e613aa26-433d-4545-bfcc-c7c8e3ed9940", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_743350686", + "DeviceId": "bc028e5e-d199-4e8f-8500-6bf308c5f230", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0d8a456d-beea-4d89-83ea-e007f3fb878c", + "TenantName": "Tenant-0d8a456d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_150864068", + "DeviceId": "ad542d8f-7f35-4da2-9f3a-fcebbb041015", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542871963", + "DeviceId": "e49ae94a-ff95-416e-affe-3e13f6e970f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248501118", + "DeviceId": "6e073b9c-0448-4790-9059-f10d99eac702", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976518676", + "DeviceId": "491f4d7e-e16e-4162-8a38-c7d0cff27393", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948175102", + "DeviceId": "469a979e-bb52-4686-be9a-ebd1d599d6d7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_654457440", + "DeviceId": "2b09c4cd-841d-4680-b91a-293855caccfd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_832521717", + "DeviceId": "6a32f50a-6877-436d-b9b0-c0b7863fa297", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_434452820", + "DeviceId": "b2c4628f-a09a-4835-bbd9-17bf432e9b5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724785726", + "DeviceId": "0989b9e2-5a65-42c5-8036-7d0dafe81eb5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660577521", + "DeviceId": "31cf361d-a3ee-49f3-8e21-ed814e4a1bc2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_785331991", + "DeviceId": "d380a7d8-b688-435f-8251-a422d54c67dd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8a800965-d76c-4bce-9092-c91a66640daf", + "TenantName": "Tenant-8a800965" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_589134538", + "DeviceId": "5425f951-8eee-486c-87bc-f3a8e19bb094", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584578085", + "DeviceId": "5660b552-2b6d-4fbb-878b-46c3afb560fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315526653", + "DeviceId": "6459fef3-732a-450d-92fe-045cbd3f9cfa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108476085", + "DeviceId": "7b991d13-9147-4bf7-a7c7-9b765019387d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_811760763", + "DeviceId": "ae13e1fd-77bc-460b-aa10-45de55fc2bee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_354341471", + "DeviceId": "f12060de-9ca2-4481-b3a5-9a527026bfe7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744923213", + "DeviceId": "81a812f9-6e80-46b5-ba02-3218d1a48007", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342129416", + "DeviceId": "c12f7ddf-ef19-4d20-8162-c83e8f0189cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_403141936", + "DeviceId": "cf7187e8-b67f-47ef-8650-19badabbffa3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_215532914", + "DeviceId": "2a4fd011-c388-4e65-a05c-c6c7f49a167e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_265534744", + "DeviceId": "c11a54ad-5961-4504-b0f0-83ef39a84651", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1c36494e-d939-4d13-a714-15d2d57215c7", + "TenantName": "Tenant-1c36494e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741052386", + "DeviceId": "033ade6b-4301-45e8-8106-2dbb881ee90b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858017505", + "DeviceId": "72ab8b6f-2406-43bb-b098-c675278cfa28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562204001", + "DeviceId": "7dcddc30-ce0a-456f-876f-f71548be722c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_723622420", + "DeviceId": "54dbc20b-ec47-410a-9bfb-859938c641ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358046194", + "DeviceId": "7652eb04-316b-43f6-9cb5-c94353440ae5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_582401670", + "DeviceId": "b27bae24-bfdd-43f4-a505-488c43caf7bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_928122052", + "DeviceId": "c486d5e1-3db7-48a8-b052-f66c51e3a801", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_271583308", + "DeviceId": "3719d415-72b0-4388-a002-5061ede9e511", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_283395077", + "DeviceId": "3761c773-0685-4a19-b05a-d1a08cdf1b5d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657920627", + "DeviceId": "80690e99-171f-401f-8a59-006be3c77837", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_613424398", + "DeviceId": "e31fad58-1401-428c-bf19-e396e5cc277c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3a10545a-8433-40ac-b499-473ab3f0971e", + "TenantName": "Tenant-3a10545a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_446463500", + "DeviceId": "4a87b746-155d-4d57-8c6e-e5e6735351a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779511020", + "DeviceId": "8a7877c0-679c-4748-81e0-a4d9ef8a97c0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_355727593", + "DeviceId": "2ecab7c5-7263-4890-a60d-dc697d205166", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_146980507", + "DeviceId": "6e18f96c-400a-411c-a27f-e58f1a20b7d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_773599812", + "DeviceId": "01d31b8e-69b6-46b0-b479-4296bf349129", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_715868376", + "DeviceId": "8fe894f0-8e46-4f1f-b1c8-a58abe40999f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_968204518", + "DeviceId": "ce2e072c-4642-4ff2-b5d4-5c38399e94e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_202748622", + "DeviceId": "dbc64d16-0a7d-4865-91e5-46f447ec7d6b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_637413103", + "DeviceId": "7e151943-0b0b-4d42-a475-6b9813a9392a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_476012523", + "DeviceId": "31d7307d-12ec-4830-913f-0ed209d7e060", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_580793976", + "DeviceId": "f1c3c598-2872-44fd-a83a-6dca162c5727", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "05ce4fe8-4e10-4bfd-8764-7d59f92dafb8", + "TenantName": "Tenant-05ce4fe8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_800878949", + "DeviceId": "2055b2d1-d31b-44c0-a9e0-f829de346601", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_756956865", + "DeviceId": "43b2a9cc-14b0-4968-8080-1c9bf31d3fc2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_964429290", + "DeviceId": "8459a408-9e01-4a82-b623-7fe2f6fd222f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914167550", + "DeviceId": "e5bcc7a0-d61c-4ae6-97a1-b1bd024d6835", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808811187", + "DeviceId": "158d0fcb-d8fb-4ce0-ba2f-2b2be3e06ff4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_822596758", + "DeviceId": "7453fe28-79d6-4d34-bff5-1750b6635989", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_209552990", + "DeviceId": "ad94ca17-04fb-42fd-91ea-6ff5d5e7c659", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_473178790", + "DeviceId": "160b8d08-2653-4aff-a619-4d3abc76ed0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_880972189", + "DeviceId": "c69bbe9c-c839-4c0b-840c-26028148095c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_820243317", + "DeviceId": "f7ad8a67-1cef-4e18-8552-cab39c63907c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_553080325", + "DeviceId": "e22a76fc-be9e-4eb2-8b94-c6f688a931a7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "67c899b5-cabc-4838-945d-abd78a488a70", + "TenantName": "Tenant-67c899b5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768517028", + "DeviceId": "d1b4aea9-0fe2-49da-81b7-e71e59d9f9f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_389157572", + "DeviceId": "beb2f488-84d7-4a20-b5ca-6a075ff36f3d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_558739290", + "DeviceId": "6e2fbbd6-1a35-4508-99af-df38b8b1f48b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_641171438", + "DeviceId": "fa3c85bb-8595-45e8-bae9-8758bd694bf7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_950705381", + "DeviceId": "9354a843-3808-402a-866f-c53ab0d7580c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727624272", + "DeviceId": "c4925b59-4d60-498a-ba55-b1cb09fcf207", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961067600", + "DeviceId": "17fc4a55-2734-488c-908b-cfa5c9eaad89", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427363262", + "DeviceId": "d04d24bc-9fe7-4523-99f1-1a5c3a244b2f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517883767", + "DeviceId": "8113f86c-1131-4e98-9017-3cbe68010b33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107062665", + "DeviceId": "8aed9b69-008d-4315-9356-b25fdf7ecc44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_905598025", + "DeviceId": "8bd8643c-1db2-488d-b85f-01e68e194546", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "64ab7a33-983e-4f2d-9add-c839f90e2ab1", + "TenantName": "Tenant-64ab7a33" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_993246174", + "DeviceId": "f28ef8da-3cf2-4222-acad-220c17402271", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521941104", + "DeviceId": "eb897f16-dd1f-4f03-b328-d2c7d81b3ad3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768620567", + "DeviceId": "74dc1d97-b9e4-4456-b7d3-26c1b28fcfea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207168758", + "DeviceId": "b0b19f6d-6cbf-4483-b513-d1a56b36a20c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_180303889", + "DeviceId": "91d73860-2910-457d-98ff-afdd157bc6d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_821242025", + "DeviceId": "cdc4a9fb-2c6a-4d56-ba76-336d35fb25c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_188348263", + "DeviceId": "20493a68-d194-46e6-ae3b-ee5111155ef2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_604548272", + "DeviceId": "ad107341-cbd2-45ca-989c-145406dd7196", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_889344348", + "DeviceId": "c95c293d-c6e0-4213-9c6c-9a57569c61d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744698781", + "DeviceId": "22ca5c6f-b607-4ff1-a76f-70fa8a9613d6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_313924965", + "DeviceId": "1cda103b-9c0f-41ff-908e-c75696dd9711", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3f986245-8584-414a-9d43-fa6923c79323", + "TenantName": "Tenant-3f986245" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_454087229", + "DeviceId": "9257c9fa-803b-49f9-b8b1-91696d5337bb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113669988", + "DeviceId": "0cf4f12a-3da3-4e64-96a8-487cf24a3d65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765679254", + "DeviceId": "4ebec198-3933-442c-848b-090e1a0b6399", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_333589952", + "DeviceId": "2496baed-4257-4379-bbdf-b9fffdd21d5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_923396821", + "DeviceId": "0f7c8d3e-5b05-4383-948c-3b6d64277545", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_575439025", + "DeviceId": "b3115a97-6683-4f31-9547-4f1e60ef86dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_728048086", + "DeviceId": "9f9da01e-0f40-4e96-a9ee-8cf6e45107d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564963975", + "DeviceId": "225f76ea-5252-4f5f-86d9-9d94993182a7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_352078570", + "DeviceId": "e3e385c9-9721-4637-bb77-22f03208f04e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_545825907", + "DeviceId": "1dcc2fc8-68ff-4f72-9e99-e39011da6742", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_209962202", + "DeviceId": "72baceaf-5f80-4f72-a4c9-00a9add7e594", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "da28d3f3-dc47-45bf-97b3-8b26fa545f09", + "TenantName": "Tenant-da28d3f3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_750654197", + "DeviceId": "495d5d54-cbfe-49af-b9f0-5abfa29b28ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_426377813", + "DeviceId": "600bf9c2-a099-46a1-815b-69357008e4b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_757337569", + "DeviceId": "f5effea5-e993-4365-b291-e822707dfa90", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525085987", + "DeviceId": "c8d3a2cd-d3af-43c9-ae90-b97450ba32dd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_572032578", + "DeviceId": "124c6d37-c6a7-4a5c-aed8-e4dd4e959e01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960305002", + "DeviceId": "3bd462e8-246f-4c1c-b57c-25c20bb0f753", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_259099623", + "DeviceId": "0ea6cdd4-dbd9-44ed-8a51-0940015278ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_190572978", + "DeviceId": "427650c8-d38b-4f89-9986-4cd01ec2dff3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_259584721", + "DeviceId": "4cf93fe6-081d-4fc5-aca8-7d5101144745", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126012981", + "DeviceId": "99161d32-de61-4b1b-b506-1a40d13faa1f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_597273907", + "DeviceId": "44771482-2167-4542-9111-6350c2a6512d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "945c21c2-9581-4248-a6a4-2cb63ca5085b", + "TenantName": "Tenant-945c21c2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_467330303", + "DeviceId": "669da80a-e1bd-479f-9538-55e9c89d7029", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500806156", + "DeviceId": "ccb587ab-3f7b-48c1-a15b-4a97d834a716", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741287968", + "DeviceId": "4157959e-5ef4-4d63-a246-570a7be31429", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_779615951", + "DeviceId": "5d834349-c6e7-4e32-b061-fd10d3c5902f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_806357916", + "DeviceId": "517639a1-b468-49e4-bae6-64555c7cabcd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_840992762", + "DeviceId": "32033a24-38b5-422b-8615-81223fd22eb0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456096311", + "DeviceId": "eaa88ebb-724f-45fd-908b-9956cac0afd1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938480213", + "DeviceId": "bd713bcb-4185-4843-86a1-3b3729d960ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_500463582", + "DeviceId": "4e73f17d-e912-4e67-bc9c-373e984e3d2a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881761342", + "DeviceId": "c1cf897d-1581-49ed-930b-8a56478f4d86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_184937034", + "DeviceId": "3553cd99-d3f6-4849-bb44-288cd1e23532", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3b133e87-cf83-49eb-9125-e0862c037ab5", + "TenantName": "Tenant-3b133e87" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_261996237", + "DeviceId": "2391a830-5d77-4f23-b6af-bb9bc2b28b48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_995462969", + "DeviceId": "270fab87-72ba-417b-907b-b6a649ff72f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_515194558", + "DeviceId": "5415fbfa-b9b7-4406-9656-3754d5eefdc3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129964949", + "DeviceId": "f6aa82f5-8088-4776-b21f-6d5ac0429535", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_373346766", + "DeviceId": "fb51a47b-fe36-4d9c-b041-509f70d1e909", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_657995950", + "DeviceId": "d06a0ab6-b8df-4e59-9f88-cf7d96cfa670", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233404720", + "DeviceId": "0a2e3d31-c680-482f-b1d9-1787c018d8ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_153118007", + "DeviceId": "1a49a2a9-4ce0-4785-9660-00c961789c3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925697848", + "DeviceId": "a73231be-88f4-4506-a85e-7f34e3907ceb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_330385933", + "DeviceId": "386b27ae-69eb-4766-b7ac-f572f27dc92d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_165346609", + "DeviceId": "6cf30ac9-9a42-45fb-8612-5364454cfe63", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9a2bd5a6-641f-4df7-b024-f70218d3e1bd", + "TenantName": "Tenant-9a2bd5a6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_580249578", + "DeviceId": "e90c8155-a3b2-4487-83b8-179370e7a3a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_865740477", + "DeviceId": "dd0794a8-9e13-4045-acee-c5b620e6ab2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562795610", + "DeviceId": "4ded39f6-7abd-4f72-aff7-0b6473787bb4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_908788593", + "DeviceId": "d6a2d304-e3a6-427a-b8ce-1ca739a9bc1b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692963369", + "DeviceId": "e89d1c8b-3d49-4712-8a54-fcda94d9217f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918576596", + "DeviceId": "9a959ea1-8327-48ee-bf1e-417b71a2c2ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662041618", + "DeviceId": "b2c36761-d445-49f7-9439-e2bcafeb0faa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_944896030", + "DeviceId": "a371a149-e8dd-40f3-8306-1b4cd2c77fa1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_989041019", + "DeviceId": "fa32fffc-9506-4476-b090-e602fb32b2d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_262681274", + "DeviceId": "fa1b0304-4d1a-448e-b37e-6e5ae35ab60b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_977833430", + "DeviceId": "186aea54-4ccb-4f07-93c0-898222f9ab40", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8874b693-e4ae-4ae0-ba00-248873e254e0", + "TenantName": "Tenant-8874b693" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_102398046", + "DeviceId": "e3abd5ba-40ef-4855-a300-7d1904f80653", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_914029004", + "DeviceId": "ea04edad-8b16-43c3-a3d5-f6b0c9f94bdc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339972795", + "DeviceId": "828c9fad-2aa7-4ab5-97ec-4d8d96f9f1b0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559629400", + "DeviceId": "04fbbcf7-3354-4a4f-bd7c-e1bd5be6d0bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_552013068", + "DeviceId": "49c63f38-2bc9-4ab1-8f0a-a1d0efd1b9e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_407290983", + "DeviceId": "575f22b1-b980-4e82-880b-4481e09449d8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_819727762", + "DeviceId": "c02184b4-2d98-4c6e-aab5-25fcb8b813a6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257660234", + "DeviceId": "982ab9db-871b-4af9-834b-2f433962181a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_193691390", + "DeviceId": "3a6e2581-c552-43d5-83eb-752cae8c8fab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337040252", + "DeviceId": "b8b9f0ff-6dcf-4c14-999f-9179f475d2d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_856159348", + "DeviceId": "4a4cd36d-8f98-44f1-a7a0-336755c3c0d7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3b6e9bd5-1d30-4984-95fe-cd18b7c7a381", + "TenantName": "Tenant-3b6e9bd5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350318819", + "DeviceId": "ce3b3fce-8dab-4845-91d0-1a1f784d29e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329888179", + "DeviceId": "36d1ff1b-e804-4541-9377-1b5d78862085", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317463743", + "DeviceId": "ca653b49-9797-46b7-b5e1-5520a9fb09f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525884715", + "DeviceId": "c37a659d-fd1c-4261-b812-2907c2d128d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_130295305", + "DeviceId": "15ad4b92-d7d9-481a-994f-cb467a25e271", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858207636", + "DeviceId": "c3c2b2b6-ca24-4e22-a3fa-b7817d042c9b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681686634", + "DeviceId": "d4a534fd-c5f2-4397-87f7-8c094eea5dd8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_898064459", + "DeviceId": "8fead83c-7c10-4bcb-bf64-92e714b7fa26", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_602848988", + "DeviceId": "6f54a860-4e49-41c2-8ef0-a368c6a50644", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737994304", + "DeviceId": "de15b4b9-aba9-4101-913a-c884745930cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_232447825", + "DeviceId": "8ab1b757-4098-4532-8278-2996dcfb942b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "56b75c2f-7d7b-4779-b1ea-411b23e84d13", + "TenantName": "Tenant-56b75c2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_491219827", + "DeviceId": "bb905a0b-1ed7-45da-ae64-ebe4a004e3ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_772581833", + "DeviceId": "e190cae9-bc98-464b-8219-356066d514ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_835775726", + "DeviceId": "87643e85-4837-42b2-824b-d69f4c3f10d6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_199744357", + "DeviceId": "265621f6-2d15-4538-84db-34df6b926d9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663973082", + "DeviceId": "d7098e6c-0ab2-4167-9506-08890a042645", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_173656815", + "DeviceId": "f481ed22-e9fe-4c62-873a-4e5ed44ca6a3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727636816", + "DeviceId": "4e7451ac-2314-4e92-a9b5-65deef6e5a42", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189764577", + "DeviceId": "c6c57dfb-1964-470d-9809-8be040443aa9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_926559494", + "DeviceId": "ba29f09e-d007-4b0d-91b7-840b9e05fb59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_391600834", + "DeviceId": "723023f3-d43a-4bc4-adad-a633283dc970", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_979959246", + "DeviceId": "4a0e8546-99f5-4deb-9b97-82bb74d3b070", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "858b060c-ece0-4b32-b240-c5ddf7cfd09d", + "TenantName": "Tenant-858b060c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_158244861", + "DeviceId": "3c6c74f8-3140-40b5-b392-d090aff353bc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_799979776", + "DeviceId": "fa98bb3b-5fc7-42d6-b6a0-be728ea590b9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850223844", + "DeviceId": "4b1f45c9-a0c3-483c-ab6e-93bf0479f45c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_107078264", + "DeviceId": "aee57b31-3b3a-4674-b179-649f5a6fab97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625728001", + "DeviceId": "dda43c81-b7f4-47af-a1fa-dadf82104c0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107779014", + "DeviceId": "f2dbe322-1fbf-4000-96de-560696ef98fc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936729780", + "DeviceId": "5e8bbcac-9218-4d91-86a7-0a7b1c5e52c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_881985715", + "DeviceId": "68a8f412-08a4-40b5-941b-95465d063da5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_587540246", + "DeviceId": "bbf94d36-39cb-4ea2-bb24-e161affc77ac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_326954950", + "DeviceId": "03c7f1c7-1dcb-4550-b9ac-8d48ef018705", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_429044721", + "DeviceId": "04a3fe66-1548-4a57-8848-e749a3606823", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "87d9f696-fdd6-4b95-9e95-7379028208bc", + "TenantName": "Tenant-87d9f696" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_743841106", + "DeviceId": "021b78e6-76cc-473f-a781-dc85c3f34bb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_180160449", + "DeviceId": "c0a659fb-f5bc-44e2-ab5b-a0a599098284", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_208347932", + "DeviceId": "956cac91-6872-4a27-a974-69084f2570e9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_216727309", + "DeviceId": "1ad72009-eb61-4e74-a87e-a7b8e4622490", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658779927", + "DeviceId": "7887b3ff-63c8-4cd0-a483-b9835939261f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817883959", + "DeviceId": "df9be132-c60f-44af-9428-b1254a6024d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_578897842", + "DeviceId": "8f18f55a-5389-4184-ba8b-35c5a29b1d79", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590849461", + "DeviceId": "6d4ee0a3-799b-448d-b69e-ef30d79d3e0d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408153927", + "DeviceId": "34691450-ccb1-4987-b8cb-e4b650114f6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_423421940", + "DeviceId": "a6e99893-47b0-426f-bbb7-3a68da435d66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_564622141", + "DeviceId": "16c39dd2-5277-421c-9fb7-1ecc8030315f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "5e473e32-af43-4f69-bb88-5c85a851b4e1", + "TenantName": "Tenant-5e473e32" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684645626", + "DeviceId": "6d8c1cc3-630c-488a-86e6-33892dc68bea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562253586", + "DeviceId": "42d9cd21-5152-42c9-93ed-b6f7763e399b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314320025", + "DeviceId": "84eac059-094e-41db-8e31-811397389218", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364203058", + "DeviceId": "a685a981-ee4e-4f44-9b3c-be01578b6393", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_738846091", + "DeviceId": "61ad89b3-0140-4c5e-b29c-8eabdb80743d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_228158423", + "DeviceId": "be78dbb5-81de-4d59-98e1-eaee0bc908f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_658190911", + "DeviceId": "d47c5943-f1f2-4b64-875c-1ab785e6ac2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_518499147", + "DeviceId": "888b4343-1012-408f-91a8-dbaebee2dbac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_719452997", + "DeviceId": "74e08488-8dd7-4e44-a2cf-92793f110e5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606740207", + "DeviceId": "443c1900-8f43-45b8-827e-272e7e412cfe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_477424034", + "DeviceId": "d50abb64-b009-4c98-be66-06114988bb49", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f87e1671-889c-4cf3-809f-e29f1081dff8", + "TenantName": "Tenant-f87e1671" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260555.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260555.json new file mode 100644 index 0000000..99bbbeb --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260555.json @@ -0,0 +1,4752 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_817830980", + "DeviceId": "13ae6f1b-1b9c-4336-8b99-aea25905ba9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_289809073", + "DeviceId": "d7b13e89-dd76-41de-ae2f-9f1636696639", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398819098", + "DeviceId": "6a288729-100e-4411-ad1e-99c09772b775", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330330052", + "DeviceId": "b6c8ef1a-97a3-45ad-b6d9-70bd19bcb613", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578853335", + "DeviceId": "46fbd16c-7e2d-49f0-8030-f14ace5b393f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665316913", + "DeviceId": "7233a58b-0a40-4e4c-933b-162d310102b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966905799", + "DeviceId": "200a67da-df0d-47c7-83c6-67ce6ea4fcd9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_103095885", + "DeviceId": "204a3d58-ce21-491c-bec0-d05463092e28", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136697456", + "DeviceId": "47e3323f-3f06-4ec1-87ae-5db54db075da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_199249152", + "DeviceId": "c8f51a0b-ed90-4f91-b727-f62c8d94b68c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_133958808", + "DeviceId": "445ffb33-0e8f-433b-97c1-718ed03debec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f468525a-1bd0-40c8-a12c-5d429d5f9539", + "TenantName": "Tenant-f468525a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_759723454", + "DeviceId": "97914938-826d-4d9f-a00e-0503e75d8bb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_124452384", + "DeviceId": "579b4061-4003-4528-b16a-16ce8389c0db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292468715", + "DeviceId": "c4295b88-cb18-45a9-81c8-661a3ea2fed4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717876489", + "DeviceId": "c20ed3ae-ff15-4148-b0ba-2082cb5eba4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_388025620", + "DeviceId": "1f614485-1e83-444e-b005-be600e9fce02", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_973717497", + "DeviceId": "8715825b-1ab6-4dcb-846f-f4e5026126b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643566201", + "DeviceId": "b3bf7c02-5fc8-4fb3-9561-4b4a2919f497", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741382031", + "DeviceId": "100b5f4d-2beb-4e69-8301-c94f6b636d33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673745406", + "DeviceId": "b20895e9-d96c-491e-a12b-2c5c3b0c7e59", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_482066180", + "DeviceId": "a28ad3de-6a0f-4121-a401-df673db25d33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_925600142", + "DeviceId": "d9653454-15da-446e-9610-0ba70be55fc5", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1f37632e-90ec-4152-9e72-9787344d7220", + "TenantName": "Tenant-1f37632e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298318653", + "DeviceId": "ef0c4ff4-7872-4798-a1c0-4410afbdd252", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_193064527", + "DeviceId": "b79fbc6a-09f5-481e-aaaf-2b00e385e78a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409790286", + "DeviceId": "bf22f651-acd5-4d5d-917c-516c4e24d0e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549295870", + "DeviceId": "437f2c2f-c1aa-48ca-8627-148ed19158c5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518706105", + "DeviceId": "ef1e08a8-810b-440e-b977-3604fd3f9ca7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_111895937", + "DeviceId": "b8d46e01-e7be-408e-8785-c1181a48e33b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_786660410", + "DeviceId": "b7474a12-a75e-46c9-a9a3-f895f86cfda9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965043123", + "DeviceId": "ede5208e-8f71-4c84-aae9-b64b280b4803", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_589780238", + "DeviceId": "43ab328c-1bbd-4d78-a3f3-6cdec12b83a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_764572078", + "DeviceId": "72549601-79aa-4bb1-8d8b-fe1c163bae55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_967583512", + "DeviceId": "5d7d439a-f873-4d29-baa3-c08a241f15d3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bcc2afb8-3d11-41f3-8fd5-c111e4ac8616", + "TenantName": "Tenant-bcc2afb8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413314314", + "DeviceId": "8ca3b2ed-1027-4115-a776-278aabded78e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_357460287", + "DeviceId": "4abdfd61-03dc-416f-bb8b-96d299034a12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_342599271", + "DeviceId": "5552c00b-47d3-452a-b608-933529b5221d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377294235", + "DeviceId": "97d429a7-ef6f-47fc-b2f9-060b68751e54", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_504574154", + "DeviceId": "effe81ca-66c9-4cf4-9f8b-7bc9d721269c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_731814966", + "DeviceId": "39eaa8e9-8bb7-4e51-a02f-e894efc7e317", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_155742122", + "DeviceId": "f5908fc0-b0a3-4f27-b78f-aa2506fa24b8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549410765", + "DeviceId": "03db78ee-fb38-474d-85db-bcccef6e83e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678339530", + "DeviceId": "5e812a54-5bb9-4bd5-a923-1d27f74cff08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_911929839", + "DeviceId": "925d7eb4-4f7b-451e-bbfc-b8a4cba7925d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_710760962", + "DeviceId": "2a3e6b28-0e8e-41e8-955e-41671d8c47df", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3259af9c-1838-4e05-ae1a-9aff705560b0", + "TenantName": "Tenant-3259af9c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509297967", + "DeviceId": "36d0aa40-2207-470c-aedd-c61dd88dbe41", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838637468", + "DeviceId": "bff687e0-64a1-4dba-81a9-14496d2c540a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391392842", + "DeviceId": "320ab5b6-96fb-4216-a044-c9ae201af0bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129346388", + "DeviceId": "64b275da-9cf8-4d48-b8ac-edff4298e725", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_208144322", + "DeviceId": "6a4c2185-4333-4cf4-a3d6-9c57f6e39fae", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_936533886", + "DeviceId": "0cddd354-6881-4e1a-af41-37877f518516", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_565205344", + "DeviceId": "98b1a77d-6695-4291-9bc8-93337b29b3e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770948560", + "DeviceId": "d72b63b1-28ab-43a6-94e7-e2cddb9ec835", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915617494", + "DeviceId": "63d46a1d-073c-4f75-b580-cec4f2a44429", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_976010598", + "DeviceId": "e88c5e12-1bae-4007-91d0-e4166e640273", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_640109174", + "DeviceId": "dcd5c453-d0ce-4fc9-84d9-f2e02044367b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08891c2e-0724-4605-ab18-8a8cc85cc1e1", + "TenantName": "Tenant-08891c2e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_477471178", + "DeviceId": "145ca825-5c83-42f6-8bb5-1ad5a0ba53f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_625070510", + "DeviceId": "36b0c3a7-8d86-443c-8b50-f297f7ba07ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_446860534", + "DeviceId": "e08d64f0-553d-42d4-a5a3-af2a64c81818", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_763334822", + "DeviceId": "a1bf01c5-54d5-409e-85e8-9e3ce3fe79ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_485932672", + "DeviceId": "01f6447d-70b5-4e3f-a37d-375c24f531f5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_987697432", + "DeviceId": "fe27b5a8-484b-405a-ac78-02e00c257d4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_692585519", + "DeviceId": "b7dbf0dd-9402-4300-b0a7-4be279473a7c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_703018029", + "DeviceId": "c94497ea-cc37-4ee2-9d32-27ca41e53304", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693163536", + "DeviceId": "d1c11fa1-1979-4c8e-9d9b-d106762cb4ca", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_310268578", + "DeviceId": "24e525b2-8607-44d3-9771-bd81a89d848d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_144598613", + "DeviceId": "a289baa9-5dba-49ec-9084-fe0770a0d183", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9e703ebe-1e54-4d9c-8092-f6326ace22cd", + "TenantName": "Tenant-9e703ebe" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_238515077", + "DeviceId": "4d2afe60-436a-499e-82ad-62c4e13344df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_271442227", + "DeviceId": "96442043-d9f7-4dc3-ba27-35bc64d77a9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588782239", + "DeviceId": "74b0fcf7-5ee3-438c-a319-2921864ffb00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_742336760", + "DeviceId": "259216ac-02c4-41dc-b7bf-6f6b7bc3abe1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_273284629", + "DeviceId": "429ad789-26c1-42d8-9ea7-9c9cf252a452", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_107577773", + "DeviceId": "39d6eff0-421e-422c-8cdf-56913ca3032c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_816468154", + "DeviceId": "f28a1679-172c-4e79-92a4-4cc398de6b57", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_913070761", + "DeviceId": "b92b15fa-f0b8-4e71-badc-b10554d6e673", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559868956", + "DeviceId": "996a3793-e5fe-4d14-850f-1c708fdfb737", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_398956845", + "DeviceId": "0b22ca71-9ac6-465d-9c32-d47b5fd534c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_441160591", + "DeviceId": "0915228c-b9d7-4a00-a8c9-4369f46d4a64", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d6f78374-37e1-4dd4-8982-4f1bee582a5b", + "TenantName": "Tenant-d6f78374" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_827803518", + "DeviceId": "3b191b74-0bc7-4343-be25-b43c6834b7fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_948877713", + "DeviceId": "2afc1d54-daa4-48e1-aa90-5f05a4178a57", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989783288", + "DeviceId": "e84b57bb-b301-4e55-a028-6336b8a208a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_444292746", + "DeviceId": "5bbe540c-4a31-4d3e-aba1-de647dd8d859", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_613678597", + "DeviceId": "eb23c573-278d-477b-9db9-15c0027df37e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512563329", + "DeviceId": "3e1e721b-6ba6-4ed3-9acf-b1bea0efd6e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_262900331", + "DeviceId": "a7735c74-c17b-41aa-a1bc-679d2236778b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_187577431", + "DeviceId": "acdfda4b-e01c-4a43-bad4-0bc864248140", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_466854871", + "DeviceId": "730708cd-a5ad-4a72-8c25-2440907646e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_133978429", + "DeviceId": "cf349807-d6f6-48ac-9667-176686c87fa9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_148078380", + "DeviceId": "256efb0e-759b-4855-9ef7-47973cf5eaaf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a1af5303-73f8-4a90-96a7-693b36560270", + "TenantName": "Tenant-a1af5303" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317660797", + "DeviceId": "9a09e282-3955-4ccc-b4da-1f6bd025b448", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_851081629", + "DeviceId": "78ac8ad0-50ea-4482-b7b7-ee2fbcd5e294", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145398746", + "DeviceId": "52f30781-dbca-4cc9-85b5-8429d5ff14ee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533960606", + "DeviceId": "583838d5-816d-4790-bd7e-9427c36b9eab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_530360001", + "DeviceId": "7e449df7-d4ed-4b5f-aa53-9b9888621b4b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_808575686", + "DeviceId": "2b105ac4-b277-4383-815b-ea517be60bdd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_304210227", + "DeviceId": "c8a67283-6a03-4c3f-a248-af9837b3bd68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_112299841", + "DeviceId": "d231e72d-eaf2-4058-8d07-0776282c0b9c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_825342679", + "DeviceId": "9cc537ac-9e4f-4c7a-b132-e2e417c0c760", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_588246617", + "DeviceId": "9a3617ba-e8e1-44ed-ab2c-cd0fb2c55a1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_594053767", + "DeviceId": "193c74f4-3871-4623-8612-506fd05344b7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f172e6db-f4a2-4439-b126-7e6bf4473c98", + "TenantName": "Tenant-f172e6db" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_435277258", + "DeviceId": "b9f60f0c-94aa-4edc-b742-15872a171ea7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549371367", + "DeviceId": "8c12f750-d261-4bea-b203-354fca9eedf4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_826726789", + "DeviceId": "29664e1b-ca71-4a0c-a098-bd5f6d28f931", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175624689", + "DeviceId": "097dd764-d119-4ca3-b882-b78fd00ec1a6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_475402229", + "DeviceId": "bcc3b843-27ff-4aea-bd24-58bfa233f17f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_984019494", + "DeviceId": "d44c5764-00e5-4165-b399-aea34b60228f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_465545514", + "DeviceId": "4de7f316-9598-46ee-8958-1b8683d4691c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_162189673", + "DeviceId": "ee55d171-de7d-4a93-b64f-374f48e21ced", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_920697175", + "DeviceId": "7323ef28-8e3c-41d5-a1c8-d6e4fccac9be", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347765061", + "DeviceId": "3fcb0808-c86a-4db1-94de-81570d73a5e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_417191246", + "DeviceId": "55984102-23d3-4d14-a66c-f3f3b9495156", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9d28fa2f-0b81-47fd-ac90-c23e336fd483", + "TenantName": "Tenant-9d28fa2f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_798456605", + "DeviceId": "9d4455d9-b59f-4147-bd6c-76c1fa5dde1c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318036494", + "DeviceId": "b4c5fc25-bfe6-4c8a-9b22-a337ed57e30b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_606936624", + "DeviceId": "5f2c5438-3d1b-4cdd-b889-a12afbfc707c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882360499", + "DeviceId": "6aacbbf9-8a53-404c-8140-2377a9f51c38", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_700178994", + "DeviceId": "3ac4141e-38a4-4818-9e63-2e169a736fe8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_159949618", + "DeviceId": "1d8731f1-afc7-442e-9ae9-242b0ba69900", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_794623668", + "DeviceId": "4adb9fd9-1c49-4aaa-8d0e-7b1f9f8ec06a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_811639769", + "DeviceId": "c6bb2378-26cd-4f1e-b4c2-0883b2b0fef5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_117046945", + "DeviceId": "d231a1a1-858b-44cc-bd18-0543240218de", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_228521373", + "DeviceId": "aec5640b-ea8e-45d8-945e-36e78733545e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_983471186", + "DeviceId": "6e7bcd00-5804-456e-ad59-f0cbd3805e93", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a5127f36-fa58-4fb0-a39a-859dae5430c6", + "TenantName": "Tenant-a5127f36" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_272679652", + "DeviceId": "ac877967-c31a-4703-b523-971f77eded48", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_728740635", + "DeviceId": "f096ae1c-66d7-41d8-a7a7-1cf3b689ed73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710021154", + "DeviceId": "d89faffb-9c11-47c8-ab05-5bf9e5471ec8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317950612", + "DeviceId": "c8a00098-d5b3-4728-bc05-032f2df863b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_596505925", + "DeviceId": "a24ebb30-1f98-4a57-a85f-2163d70fd221", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_981532897", + "DeviceId": "10a6179d-63c3-4a6d-b37f-7f69e14ee926", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_732588559", + "DeviceId": "30dc7cb0-6d1f-4eaf-ae78-a466bd5c9020", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_492419933", + "DeviceId": "511326a8-c72e-4e14-9b18-7dbe82333e66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_274201241", + "DeviceId": "cd8e9d3d-3f43-43a1-b01f-f595c93e393d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_916635377", + "DeviceId": "2f987b0b-5383-4814-8070-c9009dcf23d4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_286576098", + "DeviceId": "dd74a77b-e2fa-4a04-8e57-b944db7bedf9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "066e8af7-98b5-4890-b578-d209f6d380a2", + "TenantName": "Tenant-066e8af7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_673436403", + "DeviceId": "8590e75a-6f21-4c5d-95f2-7abd576e7d4d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_115429371", + "DeviceId": "660e1649-3d6b-47bf-8d7a-a2d319662320", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_287369404", + "DeviceId": "c2240af2-fddf-43e7-acc0-34a1cfbede67", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412348554", + "DeviceId": "53df30a1-b6d0-4a0e-938b-c2b367df4029", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_168828446", + "DeviceId": "4c6fe968-d23e-44fd-988a-36de8f6c50b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_533650832", + "DeviceId": "84f7bb9e-d2b9-4e0c-ad7b-c5b10c9803c3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642959621", + "DeviceId": "a9850ec2-69a8-4d89-a2cc-86277cf54392", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698290768", + "DeviceId": "74785d20-ff34-42a7-91ea-21f1bc2e32ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_253581656", + "DeviceId": "11132327-6a31-4ad6-a878-8b8627669518", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_251738797", + "DeviceId": "44985bcd-a0c1-408e-a2eb-cd7cb88a0812", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_916333678", + "DeviceId": "c9e8851e-7a60-4451-82a2-e3801968bc34", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "203080da-eb58-4c6e-94d3-646a97e1525d", + "TenantName": "Tenant-203080da" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724734665", + "DeviceId": "05665da3-3e1b-401d-b8f6-2e874131f523", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694753630", + "DeviceId": "83993e86-9840-42d6-85d4-f35f307fbcc0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_573964323", + "DeviceId": "ab1db7ff-c072-419d-abc0-ede2dddfec09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578894024", + "DeviceId": "3e90cadb-62f2-4f18-afa5-f01a7e2df6a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_768373838", + "DeviceId": "88a6e8bd-33bc-49fa-96aa-bbbbe1e3f9ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_568468543", + "DeviceId": "32d2161d-696e-4971-9e2d-2ef5c20001d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_510804810", + "DeviceId": "28976727-705b-40fb-a097-74e476d92f81", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_931797314", + "DeviceId": "c6fd7dd0-431b-4b51-ac9d-703d86df2158", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_493985178", + "DeviceId": "db62493c-2012-464d-88cb-28d8fc4dbb3e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_696433982", + "DeviceId": "de5772fc-ee56-47f0-a861-cbee55c01bac", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_418734643", + "DeviceId": "eae8e37e-9700-4817-8124-7cd2d1157c0a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a16d8d72-152f-460f-9b9c-f5467197fd47", + "TenantName": "Tenant-a16d8d72" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_610159268", + "DeviceId": "e97f2984-4a57-4236-922e-6baa70260f44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_769809686", + "DeviceId": "d004e133-39f6-4cc5-b176-936433ecab20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962355754", + "DeviceId": "f2103316-c849-446d-93b1-1ed542dbfd91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_305901239", + "DeviceId": "157b269b-be66-4ada-8a3e-5c1e0f3bfad2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_518296296", + "DeviceId": "c54af4b9-30bc-4b8e-9ee0-a6a29519aa0a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935207301", + "DeviceId": "f1934c41-66b6-4ed4-8a12-b9de9ceb98dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252510930", + "DeviceId": "f1c5faf1-5bac-4dd4-a459-89b79cdbd383", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_515373041", + "DeviceId": "91fdf51e-007f-446e-a047-125126ef46e1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_380615973", + "DeviceId": "e251fc40-e28c-465e-a3f2-821c7956378f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_324466743", + "DeviceId": "0174170f-42fc-4668-a583-78a28cc11325", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_117999010", + "DeviceId": "56431c8e-c2e7-4c24-bb57-d84d87d7a5d9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "1fd04900-5cde-4ecd-8c7c-49fc25865702", + "TenantName": "Tenant-1fd04900" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_357945729", + "DeviceId": "755dab9a-a138-4aa7-abe1-6656beb2d7a5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184618080", + "DeviceId": "ae498d1d-ceeb-468c-8a72-31c24ad86546", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468928616", + "DeviceId": "f643e25e-6062-49f3-b3d2-1b0308f159cf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774347685", + "DeviceId": "7a786611-2752-4e9a-a726-7293c4b050a9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838314355", + "DeviceId": "dd54d514-1a94-4f70-9fa3-84cc720e2660", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_504093079", + "DeviceId": "8929bc1a-b698-4b81-b4e8-01cd8235a711", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_805618038", + "DeviceId": "6f8cfac3-b529-4cdc-9066-1d48ca1c0cc7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_992348937", + "DeviceId": "b333ce6e-d349-415c-a3cb-921313f83478", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_739751892", + "DeviceId": "da8812a5-756b-4186-9f8a-d75299a4580d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257495044", + "DeviceId": "1a7b62eb-c5ed-4327-9243-c5b282e92a95", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_243335865", + "DeviceId": "aae0e3c1-55c6-4713-998b-a6a6d71d2344", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "caedaadb-5894-4432-8bd2-61e292139988", + "TenantName": "Tenant-caedaadb" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787923717", + "DeviceId": "5bcade99-efb3-4c77-9b7b-a2c561ebd2ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_559945975", + "DeviceId": "4932182f-bac4-4dfe-837c-1d08bc5e6965", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_521461994", + "DeviceId": "ca4976ac-c149-4902-a7eb-820833a9e6f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_712081015", + "DeviceId": "ac0cee5e-bed0-48e5-b19b-4f3009d3b80a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_523489061", + "DeviceId": "bd23d69f-ea9c-4f77-a226-ce8928d81dd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_809227807", + "DeviceId": "d91d265d-2848-44b4-a160-ca9d5ee2a9e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_463166929", + "DeviceId": "51874545-dd1e-42de-86a7-12c4b489365e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_355507667", + "DeviceId": "7faabe71-05fd-4453-b625-c98a61695fa8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977820266", + "DeviceId": "28d1136d-3f97-4d88-9c58-a154fad21111", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_587271610", + "DeviceId": "838eb7e1-20d3-4537-acd0-e38386944a48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_249968465", + "DeviceId": "8d6fb2f2-3d35-40f8-a1fb-1bcb2991b7a6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b185e148-01be-40ae-8048-500952453aec", + "TenantName": "Tenant-b185e148" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563815681", + "DeviceId": "d6a8fed1-361f-4b39-bce9-4e9d387b37b8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717064812", + "DeviceId": "117235cf-51dd-43f8-9e9c-01e0ac297aa5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_171510270", + "DeviceId": "880bd0b2-9891-4c54-82e5-613561152a44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_526397550", + "DeviceId": "c6223d53-6cf5-4bae-af3d-75a8df42a570", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582145912", + "DeviceId": "77f050bd-5927-47d8-ac0c-ec87f70b3400", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_454980831", + "DeviceId": "114e53ca-1b98-4f53-b504-06a6af486573", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_181077736", + "DeviceId": "afaff802-5b3a-4cad-b82b-6a52e5b83554", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651908824", + "DeviceId": "80f6502c-82b3-4d2e-aeff-ff56017c2867", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_312392512", + "DeviceId": "d3e3dedc-c83d-4e0b-af1a-05c70dedf948", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_261138463", + "DeviceId": "6ef4ed30-9fbe-4e68-b702-228a0c80ab1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_759247344", + "DeviceId": "05fea722-2c6f-4ff1-82d2-f81a58f015c6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd260553-7e79-4899-8ef0-79de31e48c55", + "TenantName": "Tenant-fd260553" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_323102087", + "DeviceId": "ab02910c-dacb-42cb-b75e-18d99e6071c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_239544967", + "DeviceId": "b91f2106-2551-4b01-91e8-d1cd581fdd6d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_549615521", + "DeviceId": "51eb3a15-3e8d-49fe-a88e-8e964b65416c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675354187", + "DeviceId": "dba93db4-de12-4a19-ab24-5e98c1931ef5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_933058807", + "DeviceId": "4961ef20-d8c1-4c28-bdbe-c6a446e89d9f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_309766164", + "DeviceId": "fd946da5-7eac-462e-9560-11e207a9f9b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_238929848", + "DeviceId": "ea8d1a26-30d8-4252-ac0f-da714e1c81dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_270998985", + "DeviceId": "1bcb5dd8-cf13-4ab4-b51e-b298c2e7824d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_900003482", + "DeviceId": "ebe7cf78-5d75-4e43-b8d2-082fcb6f8160", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_894373893", + "DeviceId": "8248198c-fd4e-41fd-b5c6-e892e60e2066", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_568897643", + "DeviceId": "7e6e4c13-f92d-4e28-9527-dac8338f3dc6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "fd62b51b-4bf7-4bbd-847d-3a8747f9af46", + "TenantName": "Tenant-fd62b51b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_982137299", + "DeviceId": "48591bf2-a347-4e42-902b-3c64c97568e4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391537748", + "DeviceId": "60b16531-a966-4464-ac55-3b9effc3b5a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_969457552", + "DeviceId": "1f70d653-c3ab-4792-85f5-b9ed83971eb5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_357247896", + "DeviceId": "894fd0c4-a2fa-47c2-b6a0-b6b10c4e0b84", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_656546138", + "DeviceId": "845acba9-2aeb-46fb-9376-92a0846f8bce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977332713", + "DeviceId": "a0f2d9e0-1934-4216-ae93-d222ccd4df5b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_719779325", + "DeviceId": "7fe2775e-aa25-4182-8de2-f26641586762", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_681714856", + "DeviceId": "c2e9577c-4c79-4bec-9fb5-2d72bd4121fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383322412", + "DeviceId": "2b9a9ee1-7738-4bf0-bf7b-0bd5c74c1a44", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_853629849", + "DeviceId": "5aee27fd-3925-4d39-bb14-b5babaf95473", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_210240748", + "DeviceId": "978493ba-3573-423c-bb3d-2bd2bf97c3a7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c6eddcf4-f56f-4091-a390-bacaa613a5cc", + "TenantName": "Tenant-c6eddcf4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414589911", + "DeviceId": "6d5a4e6c-46ff-429f-9663-a8f1a8f88e9e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_872901645", + "DeviceId": "d08601e2-1dd4-4208-b31d-00000e5c748f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_644290658", + "DeviceId": "5d9e0ec8-9cc5-4ab2-a8f7-95d75e3cf23f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_290004112", + "DeviceId": "8664c57a-1963-45f2-ab57-7d4ed2f1022e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_266196141", + "DeviceId": "90ca6ed2-dc0f-4609-b0d6-8febed2c90ed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_935969615", + "DeviceId": "73819f3f-feb5-4e1c-b1ca-7329dc95b54a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_264166544", + "DeviceId": "199aa156-b8ef-403b-89a4-fc7c1bc48d51", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678445493", + "DeviceId": "bbfdccb3-f87f-4bc6-b923-dcf7e3b31bba", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_606506403", + "DeviceId": "8f53457e-d2de-4bc6-8257-c7bb46862e08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_138717183", + "DeviceId": "d09c01ae-eaf8-4000-8f33-7064e9bccbc0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_308485421", + "DeviceId": "3f541d81-16df-489d-88fc-318c98bcfd21", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2b54456a-765c-4de0-b6e3-dfcaacf2b30b", + "TenantName": "Tenant-2b54456a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858890940", + "DeviceId": "e7bdcaf5-fc76-4900-a550-dd6878cbfa6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_311141627", + "DeviceId": "b3bd5629-4b61-41c9-8362-eacf2a0cbf53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_498438365", + "DeviceId": "697ae889-8e56-456a-8cae-a0cefa0a5d0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_212633975", + "DeviceId": "e2e529af-94c8-4401-9de5-c7f15807041e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_248949281", + "DeviceId": "7336ded2-39cd-4deb-966a-0ba1152625e5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_536503735", + "DeviceId": "18bf20d9-0166-403d-bf5d-05840127cde4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_318620924", + "DeviceId": "35daff56-2bab-487c-8d3c-c3366dae05e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_175400674", + "DeviceId": "82e43bc8-6b5a-4601-bcbd-6c9ca110f55f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_402247179", + "DeviceId": "a76ba6a7-1f15-449a-a1da-335e32cb9a55", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439553643", + "DeviceId": "0f21e482-2892-4ddb-b416-2778e327ac8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_362812739", + "DeviceId": "872b89cd-8c17-4cbb-9bf8-bb5476918d2b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7477266-7598-4b7f-8afb-213c793d1fcf", + "TenantName": "Tenant-b7477266" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_783792535", + "DeviceId": "a1815c2d-305c-4185-ac3d-0975c973d77e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539359913", + "DeviceId": "937c0f1c-f8aa-4f96-abce-19d84e01b446", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_838884386", + "DeviceId": "88734c3e-14aa-415a-b3c6-74c0e5ecf87b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175927195", + "DeviceId": "a253a60d-da14-4e7b-ba02-80a32582f097", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_659818283", + "DeviceId": "58d86ff6-e524-4193-8f3c-9e1e0d8d95de", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_626080329", + "DeviceId": "70a85f91-c9b9-466f-9c89-f1668af56d53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_507581917", + "DeviceId": "1debd01e-fee6-4367-86b9-1af23ad2bf37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_217382441", + "DeviceId": "115d45f9-5028-4819-8bfa-5c0806861427", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_257340429", + "DeviceId": "b4e8e750-a445-4176-896c-9c41f35235ae", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_746203728", + "DeviceId": "51731349-f30b-4628-9509-995423b57a4a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_204209128", + "DeviceId": "23dcdff8-d6a5-4c37-b316-3c162b52a34f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4d515f83-abf7-474b-8f5e-45d4ecdaf1e2", + "TenantName": "Tenant-4d515f83" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_640103171", + "DeviceId": "fcfb6689-e56d-491a-bbcf-e442449397ea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_330693507", + "DeviceId": "c016226d-2de4-4aff-a988-2950d53a00c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_642374716", + "DeviceId": "16a6f37a-f6b0-45ab-9a8e-2854110c8715", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_686762534", + "DeviceId": "d68b827b-b69f-4101-8c3d-3e3006beda0f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618067712", + "DeviceId": "9bb14596-2e11-4265-98fc-b0c3fbf6887a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_831446053", + "DeviceId": "a49aa56c-16e4-45cc-9d34-82e0d8f146c7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_683911023", + "DeviceId": "d5b21702-609a-4c74-b9ff-691035ac0ccf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_241386577", + "DeviceId": "95a9692e-6263-437c-bc96-2e1ad40e2b7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_771256763", + "DeviceId": "7c57dc72-29b9-44a1-a0ef-4298fc6063b6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_495575340", + "DeviceId": "b5f64206-8d0d-4d97-9da2-7983ed07c994", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_324815247", + "DeviceId": "9d32f78b-b00b-43eb-b058-3f68190be493", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "24e8731f-4d14-4c02-a8f8-f8c0614f7a97", + "TenantName": "Tenant-24e8731f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_260963546", + "DeviceId": "05136086-c0a5-49d4-975f-4ed002e86b8e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542998908", + "DeviceId": "81e20ed1-3ac1-4913-83c2-74317b0e5084", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318494125", + "DeviceId": "a83736c5-be13-470b-a758-394b1790bc4f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895333162", + "DeviceId": "6ce448b5-0305-4d0e-9ce0-fd60e92ab3db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_495835969", + "DeviceId": "dd1176ed-902c-49f1-8a96-badb2ae64879", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_327791130", + "DeviceId": "0d12d2c3-cfc1-4140-9021-70e287948f7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_289368589", + "DeviceId": "94c0b177-43ee-40d8-9d16-e832c43bed66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_720431781", + "DeviceId": "440a9588-4c10-4295-9776-c8671a0eca43", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_810640312", + "DeviceId": "b480db17-cd9f-4507-a7cb-34d9b3aeb36b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_439565430", + "DeviceId": "c69e0fba-17bf-40d9-92f5-b0c5d7cb1ac5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_927260996", + "DeviceId": "c3c8c60e-6714-4e84-98c0-37310c037ef7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e601630d-b2d7-4125-a3bf-c07c88107a23", + "TenantName": "Tenant-e601630d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377200351", + "DeviceId": "fb538365-3a4a-475f-b041-c2f32b4febd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116876941", + "DeviceId": "d1aaf79b-2f6c-4b12-8b2c-6d2ed7b953ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_341895607", + "DeviceId": "673d9613-5a20-4705-8d66-8f0714e25855", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618799104", + "DeviceId": "94920192-bb9b-4505-b7d2-1ee2a2ed1dda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565282113", + "DeviceId": "e3d0cf2c-c12e-4609-959c-da1ad0225b6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_189990422", + "DeviceId": "9b2aa1d6-8266-41e8-bb9a-3476a25049ed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532841866", + "DeviceId": "81a26e32-c392-4214-ad81-bc9dc262e866", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729780415", + "DeviceId": "a4602526-d2e1-47b1-b2c6-fc9aaeb43f1d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_488319818", + "DeviceId": "e27d5c5d-ed53-4e02-8eed-6ae7b61f4173", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_471264358", + "DeviceId": "ac980680-cbaf-40a2-b67b-6e6594955d76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_762581251", + "DeviceId": "632e90bb-3c38-4ff9-80c1-6ea7971008f9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "107b623c-36e8-473d-8f37-e4c2f2ee4dbb", + "TenantName": "Tenant-107b623c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_717121178", + "DeviceId": "05ffa7c3-077d-414a-ba9c-975d49a62398", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_990670769", + "DeviceId": "649ab9c6-8579-4f99-9a96-5e067c68a5cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_372510354", + "DeviceId": "7c341a4b-aa0a-4e68-a487-0d79760797f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_139149429", + "DeviceId": "85634919-06bf-461a-99e2-50ec4dc89a66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_457889696", + "DeviceId": "35aed611-85d7-4f75-8a0d-3c9703e7ab65", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615486948", + "DeviceId": "ae632da4-f8cd-474a-bfcf-dcc587dc2d09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_546747707", + "DeviceId": "f367ea41-40c9-45cb-a401-dc549f3b52bb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252496612", + "DeviceId": "0211c3e7-3d27-40ee-b45b-9155e6c0ac3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_580771248", + "DeviceId": "bd00a6f2-7e9f-4c85-b2fb-7ff336138f0f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288621684", + "DeviceId": "e1a67729-3029-4747-a66a-db9a60f44ce5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_435541241", + "DeviceId": "9b8c4ab7-3745-43c6-be5d-a1bbdbe4f62a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4581405b-bd9d-470b-8fd1-0e73577b25fe", + "TenantName": "Tenant-4581405b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_609328992", + "DeviceId": "597b46d6-4c10-41a0-97d7-9c9d16aa31db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692409567", + "DeviceId": "f61b49b9-423e-45c1-9852-4c469f003047", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437790420", + "DeviceId": "4bdfe258-ebd9-464d-bcc8-ef93fd4f99fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_105477758", + "DeviceId": "9395bbdd-a656-4c10-a325-333474cf9455", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_622410229", + "DeviceId": "d3efee99-a8cc-45b5-a372-665e7a7b2c33", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843928125", + "DeviceId": "6d75ba90-a664-4f5c-a0d2-833ddf8ee73b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_662733458", + "DeviceId": "a8305552-53bd-44cc-a146-d37811511ee1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252406939", + "DeviceId": "21488f3d-50fc-42e6-bba3-937c45569ee2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733259223", + "DeviceId": "3566ddcd-b59f-42e1-b68c-442ffa47eb10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_570844492", + "DeviceId": "98afde1a-ead7-4b2e-b890-c20ec45aa682", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_649778038", + "DeviceId": "bfb0b3f1-c68e-4e62-9c50-8f6c7d0ee1ec", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "075774c8-a5d9-49c5-a056-01ea8d59562c", + "TenantName": "Tenant-075774c8" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_292380317", + "DeviceId": "d4962f3c-ccae-411a-b0d7-1fbcecd1bc76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_178338564", + "DeviceId": "f8dff992-8ea8-444c-9c96-89a7239bd259", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_252679054", + "DeviceId": "c426bd0c-328f-4497-97b5-2a1065b12894", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_727729412", + "DeviceId": "18db20cb-57be-4ec6-a373-f8ce86d2b52d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533380569", + "DeviceId": "a0633822-f6e0-4236-8ded-22092a1d0ed9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_954787008", + "DeviceId": "6e5eb66c-4c99-4d40-8767-e2926158f85d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154053530", + "DeviceId": "9bcbf1fe-6834-4c72-a3fc-3100d49a011e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_866874929", + "DeviceId": "651647f6-0347-4bea-a96e-2d15abfcbf6f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227136148", + "DeviceId": "380a2265-ef72-45c5-a1a0-15f3424dde1a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615948922", + "DeviceId": "5d3d70af-0a64-491d-9096-94e4d86efdad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_600153919", + "DeviceId": "88fae812-38d3-457a-bbbe-c7dbf34c2e4d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4a16e043-ce04-441a-98fc-114689f58354", + "TenantName": "Tenant-4a16e043" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_186195227", + "DeviceId": "7ed3e72e-d989-40b8-9632-b590c625d956", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_153916169", + "DeviceId": "11667a81-63f3-4bfa-9a30-f43d06f33f88", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_584737811", + "DeviceId": "d091e5dd-01b1-4b80-b628-85459d122793", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765425353", + "DeviceId": "40f5dcbb-b77a-4b28-a3fc-f4cde1cf60b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_957190788", + "DeviceId": "0871e89a-f39d-41e1-8af8-8a00662be347", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418135164", + "DeviceId": "4b6a75f4-5bc6-4eec-94a7-742728fe18bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_966496346", + "DeviceId": "20b3306f-4ed5-4b17-9041-cc860cf96811", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_456791198", + "DeviceId": "db2f13ed-7df9-4901-a855-6da730da7f3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_819834996", + "DeviceId": "4f650e4f-c0bb-4e4c-a71d-22197ee9e2cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_126747143", + "DeviceId": "7c7720f1-f130-44a1-8121-5bdddf65b764", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_548131008", + "DeviceId": "31e2bc4b-1126-466a-ab62-b9ac93b2925c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "114fefa0-0236-4a0c-b4ae-88fb4aecd30b", + "TenantName": "Tenant-114fefa0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_441077115", + "DeviceId": "41e1f2f1-6224-4d0f-8e6a-17c35b507aeb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414571104", + "DeviceId": "342c391d-4c72-4966-adc1-e23c3d7631bf", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_695369988", + "DeviceId": "6eca96a7-1bc4-4cf7-a37a-26f128b1ec20", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_136147170", + "DeviceId": "d5e29fff-98a0-4393-9264-49497485e2a0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_899047335", + "DeviceId": "864ea767-7aa1-4ed9-b04f-0546ded39073", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_284150909", + "DeviceId": "99470774-f472-40ae-a468-b59232cb3b99", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_671445748", + "DeviceId": "8ea4c586-d02f-470a-95a6-2efc53b3a856", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_642646781", + "DeviceId": "fd3d2ab3-6c2d-4dd1-98cd-4e031b9ed174", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_215175028", + "DeviceId": "c94b9415-1ae1-4a19-b0d1-9da478430108", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_420507807", + "DeviceId": "ba2fb6f4-c0a5-4191-ae37-53411c3a6630", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_407939227", + "DeviceId": "e4349049-f559-487e-b007-82d8c1f290c7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "47c29a18-7ce2-47db-82df-74abeb1d6f73", + "TenantName": "Tenant-47c29a18" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_377164244", + "DeviceId": "741d51d1-be97-4a37-b80d-c1355c64be34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_635299840", + "DeviceId": "10d2d95d-4a2f-4397-b89c-fc357d9a912f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_795356928", + "DeviceId": "07697299-e12f-47ef-8513-1ec025eb7203", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_152716454", + "DeviceId": "baa310a1-3c25-4aae-8c2e-7f410a1d58b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_906405715", + "DeviceId": "79bcbe33-b5f3-48f2-85d8-8ed51fac346a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255758744", + "DeviceId": "7e29da65-78e5-4e18-9232-d9bf0a568a40", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_377555846", + "DeviceId": "fe56ef4a-eb01-4d2e-a86c-c303bf865125", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_919110392", + "DeviceId": "51ee3733-277d-4879-b8b7-431f04f4151a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_170886895", + "DeviceId": "1f832f67-a205-45ae-b853-417cb0aad187", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_585837978", + "DeviceId": "eb6a922d-7406-4135-b570-8922dbed1ca9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_130437333", + "DeviceId": "2f6e8a37-4211-4401-85fc-4093cec76aad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aa4d8e7a-2fa4-4a77-9858-deea5132ac8a", + "TenantName": "Tenant-aa4d8e7a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_769017308", + "DeviceId": "f5cf16c3-c7c7-4729-bc9e-185ac017db11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147568489", + "DeviceId": "24a61086-01e3-4905-ae5c-aba411eda231", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_716504478", + "DeviceId": "c75c3ef5-d03f-4917-afd2-052376ada191", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451932795", + "DeviceId": "64f3dbf1-f508-4985-82a6-c01c88638f18", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155830381", + "DeviceId": "ffb311cd-15c9-4847-aea4-d0acddd52210", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_305453503", + "DeviceId": "48cb6ef4-1427-42f9-8acb-07eef5fac5dc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_185647113", + "DeviceId": "c40a5280-b5e1-4f98-b74b-890be84af1c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_234371416", + "DeviceId": "dd731356-d647-4397-88ab-b8754c4c6c3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_706625159", + "DeviceId": "14cefb6b-fa01-4f3b-a75b-0da6c6750b3a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154996441", + "DeviceId": "1098f04f-e9b2-416f-bb85-e1c0b6f2cee4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_838309517", + "DeviceId": "439dcb95-9d88-4159-bbf2-e84c7b33f04c", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f20dae9d-3591-41c5-b7f5-bb50d2c2a368", + "TenantName": "Tenant-f20dae9d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_688435144", + "DeviceId": "131b8f1c-b6cd-4b8c-abdf-a4d8b586b57c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_984771944", + "DeviceId": "f19c082a-96c5-434c-abb0-8ea7d517ba5d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_313909918", + "DeviceId": "f680a8c2-f200-4cc6-9eba-3a60b5904e12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_925518661", + "DeviceId": "2a4c0812-607d-4971-863e-a8e161448c55", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709002104", + "DeviceId": "7c752b22-4785-4ee2-a013-3f24acba2af3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_553016564", + "DeviceId": "9a84a140-12f6-4442-9102-a9fb86f42ba6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_886819264", + "DeviceId": "206aecbc-85a9-42f7-abb4-b5daf3732c87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_865937959", + "DeviceId": "1e86cf4c-9b10-42c1-bfad-088e0df63f48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_480570120", + "DeviceId": "740ea2d7-b750-42ae-9988-68a13a79536a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_398064225", + "DeviceId": "100cde71-aa34-4fde-8ee7-222f7f0fc439", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_758525745", + "DeviceId": "64a94bd4-e97a-4098-b4ba-02978b5d8bc3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "576d8620-aa76-488f-83d0-98787d1badb0", + "TenantName": "Tenant-576d8620" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837796349", + "DeviceId": "c280cd44-2b0c-4dc8-bfa0-acf196f80493", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_662762658", + "DeviceId": "1ae6652b-b7f7-4db1-96d3-731cb7a28858", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314321798", + "DeviceId": "791ea503-55a2-4ffd-b8d3-f8c8a01dd6fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_399237947", + "DeviceId": "0cc4add4-c5d8-4e6f-92b0-2376d7d31e03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468354906", + "DeviceId": "0a538c6b-c87f-4ea6-80d7-b6693bc10f21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_627357040", + "DeviceId": "043c7b8b-da2b-4ba7-8736-f6a49b77a9e7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622429388", + "DeviceId": "a45d38b5-1df3-43ee-920c-40841a64b652", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_512337506", + "DeviceId": "bbd408af-2235-4105-bcc8-b77a3a7c40c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_890352546", + "DeviceId": "2adcdaea-6c44-4f26-9bdd-0f35ad8f1443", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127000436", + "DeviceId": "b4645a0b-5700-4c26-8d06-dd433cdb497e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_295214730", + "DeviceId": "f773fdf8-9ebc-4bb2-9bb0-1f9b6f593ed6", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8244af73-ac9d-47a2-927f-788f8148bded", + "TenantName": "Tenant-8244af73" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360419224", + "DeviceId": "a8afdc38-d658-4c4d-92c6-d3f69122e482", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_808020296", + "DeviceId": "5e5bb767-8876-434e-a98a-31f66673d8ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281962880", + "DeviceId": "34fbd0d8-135c-41a5-852a-00932590b190", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579171009", + "DeviceId": "4fc9a067-3e3e-434f-8476-6a16f7c9e133", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_353910918", + "DeviceId": "0824dee2-107a-4c25-9998-1007c97f23f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418177818", + "DeviceId": "0eb4686f-c3be-407c-bd3f-5d373704aa14", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_334803214", + "DeviceId": "adff4c5a-3a37-402b-b349-11826ea968c8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_796673788", + "DeviceId": "3e38fc69-f0e6-42a0-b012-cad604deec47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_300167715", + "DeviceId": "0a276d5d-2c27-4f2a-95c1-4b869f8c8731", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612718021", + "DeviceId": "152ec421-3495-4426-a73b-b74ec7cc8ce9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_145087574", + "DeviceId": "2d2347cc-4b03-4de9-9196-16eeaefd82a0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "08254bd0-2551-4b9f-9eb2-689b3d2d753a", + "TenantName": "Tenant-08254bd0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_816814765", + "DeviceId": "dea27490-bc70-4321-8f1f-91c8333b6cea", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663727480", + "DeviceId": "5ee4b1a2-2334-4113-9a1b-712eab903eef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249655643", + "DeviceId": "8c2af4b8-1ac5-4b8f-8f68-25debe62d81f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_129829801", + "DeviceId": "229cf6ca-064c-4ea5-9e40-2a87cd1261f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_716477387", + "DeviceId": "36699786-eb04-4324-a7b1-61221ef1b428", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_924157660", + "DeviceId": "7beb686f-5724-4295-a1ba-35915eb09ecc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532187789", + "DeviceId": "725918bc-e932-4dd0-b4ab-d3bde49d6cb2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_347202805", + "DeviceId": "25578483-59fd-4a17-a189-8ad54e6d91e6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_826902147", + "DeviceId": "8ca9fca6-67cf-43ac-8ff4-9fa9b26b8e6e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_144305732", + "DeviceId": "4db979d2-9123-43fe-b090-aaa9f21ca34e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_431560985", + "DeviceId": "13847361-5967-4d93-9945-cb4073a13b56", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f17be2c7-7328-4c2a-9a1a-e55e75df9bf2", + "TenantName": "Tenant-f17be2c7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_787359772", + "DeviceId": "127fe1e8-4ef3-4363-9263-b9531000f14e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_270207714", + "DeviceId": "d3b38d26-b4be-4fa3-9578-a6c3e795554a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_959637418", + "DeviceId": "57f3b93e-09da-4c8f-88c6-78f24fbfe584", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608432692", + "DeviceId": "62749595-861e-4962-83ae-32b784890b96", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_747774106", + "DeviceId": "3a5a79e7-1da4-4118-9cf3-803d7d38abd4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_948594302", + "DeviceId": "2b8959ee-8344-4a63-932d-6c7a9e82a418", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_621387136", + "DeviceId": "0ee1d8c3-23f8-4d39-821c-4491977454e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427659749", + "DeviceId": "9d5c7e92-b55f-4a48-a157-dca5de24b7e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_418624283", + "DeviceId": "daba9a51-7fe0-4fd3-af32-64c49b6dc0b1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_836691299", + "DeviceId": "cbd0846a-2334-401c-9436-6cd7d8281621", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_747853369", + "DeviceId": "5dbabecd-56d2-4b8f-9feb-3906dedbf1c8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b7b0179b-c79b-470d-bdac-167ac45c7288", + "TenantName": "Tenant-b7b0179b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651379055", + "DeviceId": "7af77fce-7a51-4af0-82f2-101ae4c0b969", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992858109", + "DeviceId": "014436a7-df89-4a50-909a-97df11eabc42", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_221088707", + "DeviceId": "9f65ebc5-c506-4b9c-9582-2e36bc5220e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_391405071", + "DeviceId": "cbb24b88-fee4-4cd5-b509-af5c89b0e146", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_885904693", + "DeviceId": "9526b989-92e8-4f56-83ae-aacbcdfead5b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_293788829", + "DeviceId": "bf75c33c-8b0b-458e-a218-c8158ebf9be3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_986574899", + "DeviceId": "e8304270-3ce5-4e8f-8e87-bd7495d5e9ec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_603157635", + "DeviceId": "798457af-ae0c-430e-b2a3-53fe1de9199e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_152438122", + "DeviceId": "9e923b4b-1a0c-462c-8352-b87b9a1b588b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450798648", + "DeviceId": "cad47bb7-58df-4d4d-a19a-7a619da18fdc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_146734807", + "DeviceId": "3782469b-a4df-4fde-a4dc-304f153044ff", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2496edf6-d5e8-4649-a0a4-f997021e9cb2", + "TenantName": "Tenant-2496edf6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_249473074", + "DeviceId": "4c4d3782-6c60-4923-a9cc-7e26c267f0e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_684242987", + "DeviceId": "dcc6f4b7-1a3d-4f6d-9b9e-47fc2f3c260c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_705367941", + "DeviceId": "61e00999-c3a7-4a0f-a158-a65ee02a63f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_856631108", + "DeviceId": "12bee21a-efef-44af-a8a3-f806dd11769a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_433785469", + "DeviceId": "3ef9d285-b63a-414c-b944-b368e19efbf6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_774288182", + "DeviceId": "f182ac94-0348-4b8f-82cf-5e1b4978959b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_848707800", + "DeviceId": "0a879b21-7e0f-44fb-a0e3-15eb236d3088", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_903550654", + "DeviceId": "7eb27054-32ed-4238-a8f4-70db1d03c22f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_482484172", + "DeviceId": "79e44d0d-5f28-4c7d-9a94-d231c4963319", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_273915489", + "DeviceId": "627f60b6-f9d9-484a-822f-4b49e2368d4d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_530650807", + "DeviceId": "6e533381-ebc2-449c-9f66-bd0b98475275", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c1dd39dc-ebb6-475c-b8af-ae21b775c7e5", + "TenantName": "Tenant-c1dd39dc" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866198873", + "DeviceId": "e81d0135-d0ee-46cd-9ea8-6d43af2875a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_582504219", + "DeviceId": "5483e445-53e4-4e5c-97d8-2a5343c37932", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_953540557", + "DeviceId": "09bce312-ed9d-4ca6-8be3-e56a282b0d59", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_303982760", + "DeviceId": "bfc03869-8e79-442b-8dbe-222dcf5c0d08", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_251314972", + "DeviceId": "81e425f1-2f6e-4d20-a7a1-c5641d3aaad7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_242250996", + "DeviceId": "53243fc3-8601-482d-909a-cb7460421d2d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_893466887", + "DeviceId": "65be7893-829e-4ca2-845a-5cadf64f9745", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123898056", + "DeviceId": "8d7e32a0-93ea-475a-a91a-70e102f23077", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698052784", + "DeviceId": "2be29dee-ef9e-4353-ba52-26d5b10e4e6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_933843524", + "DeviceId": "904889b3-49d9-4a52-8453-b6727b1686b4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_446098198", + "DeviceId": "9a5b1c65-f025-4743-b933-13b48c1f2d48", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "545abea0-e699-4977-8450-737b84cefd18", + "TenantName": "Tenant-545abea0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_232873917", + "DeviceId": "65a68b1b-cf07-42aa-bdad-a99e135487ef", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_810636275", + "DeviceId": "e8a4cee0-4a16-4e39-b8a9-f21a83cb588c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142547019", + "DeviceId": "33e305c1-ffac-4126-afa4-3daf45895ec3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358120483", + "DeviceId": "3e08202c-055f-4efc-af58-3e52596c0d9c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_235874800", + "DeviceId": "dbb573f7-9230-4a49-ac79-ba0dedd1c92e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_655555807", + "DeviceId": "7f215c3d-55d3-4ed3-9834-5902e697f1d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_397596947", + "DeviceId": "07f362aa-d32b-46e1-8bf1-8c1a33397645", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_140688400", + "DeviceId": "f1c19880-00e3-4724-8f01-dc14a05d7691", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827040846", + "DeviceId": "3b1b994d-d589-4502-a636-0451bdbc38c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_591210770", + "DeviceId": "3531d517-83e3-4e70-bda7-0ad61bbbd9b3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_973294752", + "DeviceId": "775f93fd-912d-478a-ac94-2ec3278f4da7", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e6e3a9f4-ed36-4fbd-ab24-102da3cbe58c", + "TenantName": "Tenant-e6e3a9f4" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_414194293", + "DeviceId": "c42e4199-9ac1-4875-9e0c-d6f31a9c1eed", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_842326630", + "DeviceId": "b1c016ea-be06-40ae-8d88-de192a2b6dc7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_658275833", + "DeviceId": "06360a4c-421d-41cd-837d-7e93572a6bc1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_310150740", + "DeviceId": "120f14cc-a34f-4257-a5f0-5f84d89c3041", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_140737248", + "DeviceId": "b571bf28-d6e5-4e4b-b7b0-5cdc48c4a41c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232544414", + "DeviceId": "1fdcabad-9a70-4509-aaf4-69d1a3523833", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_288520521", + "DeviceId": "fa79b4ba-fa38-4e84-989b-65375c02707c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_757704096", + "DeviceId": "9728415a-a50e-4ce9-9ead-607e037b0364", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408525693", + "DeviceId": "521891a1-9191-4b1a-b32e-2cef399bc95e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_607174799", + "DeviceId": "168beb50-06cc-4724-b7ef-3aec9531187e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_172818288", + "DeviceId": "50097ae4-4eb3-456c-be19-71b712efdebf", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4c0c7765-d5b1-4ddd-980e-6caf34e67421", + "TenantName": "Tenant-4c0c7765" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_697334698", + "DeviceId": "47ccae0c-2838-4c19-9ecc-bc97ecf97e4e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145268348", + "DeviceId": "562afd22-7786-4095-b9c5-86f3c111e7f2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265415113", + "DeviceId": "19c8e1d1-a13a-436b-8b88-19bdd961881a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_804900691", + "DeviceId": "562f24f7-d557-41dc-8c9c-7272fd1d372c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_245426856", + "DeviceId": "085df53e-d3f2-4643-87d0-7eb9bc2a12fc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_678775103", + "DeviceId": "60fef4cd-f01c-4b10-8270-ec14e2ac4379", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_467350535", + "DeviceId": "e4fc08c5-a6de-4a44-8c51-78c6d7160843", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_547576369", + "DeviceId": "5ae09ae8-0d12-4f37-8cd6-792d406da0bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_724680999", + "DeviceId": "79ed42cf-9cee-4ab7-bf42-6430571e6e2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_715424806", + "DeviceId": "f583e0a4-8d34-4497-acf0-71771aac686e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_660321154", + "DeviceId": "b5cd3fc2-212a-47fa-a0e6-8784700816a4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b4287f48-15bc-4230-9991-c2259b59cf5c", + "TenantName": "Tenant-b4287f48" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233612753", + "DeviceId": "b11b3eb7-a130-4409-add0-a95d93a9b001", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364328853", + "DeviceId": "4a8876af-c735-4671-a601-9d1831cca0fd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_996636026", + "DeviceId": "1113522b-f15d-40f3-8627-4007fa6ec076", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144533994", + "DeviceId": "8e75725f-44d7-44c6-9f53-1a68e7f62b8e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_992823420", + "DeviceId": "72c83044-926a-42fd-8c61-ef4b6aa9b348", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_641121122", + "DeviceId": "c357c451-c5d9-4bd3-9580-0f06e99606e8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_991050004", + "DeviceId": "0c0bf89b-912e-4865-863a-7b503b247d86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_875279356", + "DeviceId": "37bcaf63-4786-4ef6-8758-324a8b8e879a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_841081293", + "DeviceId": "43fcc702-8937-41a5-b47a-bbf177a799f6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765162913", + "DeviceId": "84911286-7260-4aa0-a816-975bbff39d87", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_819230287", + "DeviceId": "2cc8836c-6463-4a21-b119-86f869b46281", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cfe495d6-6b32-44c9-a2bd-bf0df6bd6066", + "TenantName": "Tenant-cfe495d6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_163369148", + "DeviceId": "b26d6961-a33b-442c-a46f-182f40f7097e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_924121196", + "DeviceId": "1652e644-2aa1-41b1-a265-6686cb38fe0d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_135950151", + "DeviceId": "8e4d7e20-f3b3-471e-bf5e-a31f36198fdd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_801469910", + "DeviceId": "1e74d244-b1eb-4f1f-998b-5ce8a72685cc", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976459851", + "DeviceId": "59c97bcd-e79c-406d-b0da-10d47f00dc5e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_210134306", + "DeviceId": "cfad34dc-22e1-4ccc-8e8f-661a881e5a3b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_749481972", + "DeviceId": "6006daa8-6f1f-4975-ac6f-f329f8e1a086", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_807869611", + "DeviceId": "b2d6c271-e6e4-48c0-a210-0c2fea3323c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_216026557", + "DeviceId": "dce51043-382c-43b5-9a1e-4eec1f45a0c4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_548613348", + "DeviceId": "4b5e8ba9-e690-4f0f-a997-fd00931999f1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_551230033", + "DeviceId": "06a25229-562c-4900-ac52-13dcffba4e07", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8213e3c3-04be-4e0c-91f2-1bc5d285a9bd", + "TenantName": "Tenant-8213e3c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565724469", + "DeviceId": "33dda092-c203-442f-b5fa-4a0771f42604", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_298637054", + "DeviceId": "1d89ecba-f3b6-4696-8922-5d0ddea53fda", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_381440069", + "DeviceId": "fdbd1fcc-24b9-4db3-a695-9ba32d8dec79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_297659098", + "DeviceId": "359b9976-0e9a-492b-89e4-8ba30d926f81", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_577638858", + "DeviceId": "3812db07-5243-4cbe-a22e-ec84551856c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135832039", + "DeviceId": "0e751e28-d1d6-4943-b046-f3ca7f967e71", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358995539", + "DeviceId": "f764dc2c-6f0c-4415-baee-e70393d35397", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918527810", + "DeviceId": "740c4a8d-cb66-4a87-bbc7-1e0e56ceefc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_301589791", + "DeviceId": "ef674f95-627b-41c1-8af4-ac1abfca82a5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392566723", + "DeviceId": "3b127132-6aa9-4d74-8822-8723fdf49d3d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_302163039", + "DeviceId": "cbf7f2ad-d1e5-4378-92c1-077a2926f0db", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c34bb60a-9389-4e39-9295-fecb96eab782", + "TenantName": "Tenant-c34bb60a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_281361038", + "DeviceId": "e0238c98-8793-436c-9af8-75ccbdf0cef9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_176437955", + "DeviceId": "97f23a42-8f30-4690-b079-45529d0a697d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_416426608", + "DeviceId": "2134eab8-19c0-48f4-8249-4826d86fed66", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_724552125", + "DeviceId": "326cfa1b-987f-4515-8e35-9c94b67cfe00", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_295788676", + "DeviceId": "cbf75c33-b64f-437f-9f1f-81e5d4070cba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_896519940", + "DeviceId": "bcc3c04b-047d-4d9f-838d-deaf6e948614", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_149724261", + "DeviceId": "09f5f919-d83c-4215-b001-a6ec6ff3800f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_792813897", + "DeviceId": "72e9785c-8113-4c91-9101-515bd0c80c10", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_266702305", + "DeviceId": "b3ea6a89-f588-4952-84ed-fd8af0fc8949", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_645133900", + "DeviceId": "ae044554-2834-4293-982f-4127a8d54398", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_781746554", + "DeviceId": "a5e27e83-564f-48aa-a558-8f10d39d1aad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "adff7f45-76de-4e65-8129-ff761650e9ee", + "TenantName": "Tenant-adff7f45" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_530239714", + "DeviceId": "08c525f3-7dd6-4b30-8307-4f4a8c5010c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_197826166", + "DeviceId": "aeb0345a-302c-4829-bd94-9e7c56cea104", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_710587958", + "DeviceId": "0c132416-545e-474e-b808-a3655cdb422c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443621987", + "DeviceId": "2496d6bf-d1b1-4cb6-8bde-6d4042e50093", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_919041816", + "DeviceId": "77f6ea17-1d6e-4d5c-9000-73d4e1aae6ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_499205007", + "DeviceId": "be18c237-340d-4fe9-a038-3579fb9d7be3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_885197356", + "DeviceId": "8614a02b-38b1-408e-bebc-c9bccde4135e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674542824", + "DeviceId": "780df230-008a-42a0-938f-1c5ffa5cc04c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_540229787", + "DeviceId": "81686fa0-bbe9-4a94-a6cb-c194ed5f8add", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_786030539", + "DeviceId": "15388785-03be-4b36-9c6c-716957645d27", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_623386779", + "DeviceId": "c5e49240-9c96-4e42-9191-e28b16a9de26", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9146ba82-82c3-44e8-9b68-86559a91eaf3", + "TenantName": "Tenant-9146ba82" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_116822359", + "DeviceId": "0781822c-4c1f-48ca-8b2a-2e1bc1cfd059", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_339100930", + "DeviceId": "cccc7b38-c98c-49d2-8935-89f55ba4ff44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_928520840", + "DeviceId": "c210b686-93cb-40fd-afe2-b3f1be28af74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_570626136", + "DeviceId": "dcddc618-96d9-45f3-9935-fce63843dc39", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_590775600", + "DeviceId": "93345561-8049-4df2-89a8-7b96ec5675c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_101442533", + "DeviceId": "ffe79ad8-d960-4f6b-aba4-14f4010b0002", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_286106846", + "DeviceId": "ad19e14b-b452-466a-b80e-1e5cb122a2db", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_316926961", + "DeviceId": "eaacf102-d72a-4592-92af-1d3dc007513a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_791138734", + "DeviceId": "13523e83-8ea2-4e93-b4bc-f393007bd72d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_673062367", + "DeviceId": "f9fe6e58-812a-46ee-a9aa-9d8c443abcfa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_346226931", + "DeviceId": "512ed7f4-822e-4b1f-8a21-1cc14f81a199", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "04a39789-6379-4297-aa49-359c2191a205", + "TenantName": "Tenant-04a39789" + } +] diff --git a/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260556.json b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260556.json new file mode 100644 index 0000000..1f7be5e --- /dev/null +++ b/src/LoadPerformanceTest/Scripts/device-inventory-tenants50-sensors500-1806260556.json @@ -0,0 +1,4752 @@ +[ + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_482888316", + "DeviceId": "92b2cbf7-7337-4e29-a5a7-022f0f2bb769", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_455064621", + "DeviceId": "8be292c7-9f5e-49d0-8352-1262c57d8af6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_177835242", + "DeviceId": "8bb37307-a6e9-4d06-8c88-ac05cf69b574", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_268697898", + "DeviceId": "35a3becd-bc40-4330-8853-5bd8302d341f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_774300385", + "DeviceId": "e8e860a0-2e5b-4414-8ec0-9c5f32936f78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_192947172", + "DeviceId": "10a2160e-2ce0-4d4b-9da4-bca00cdcde62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_854191817", + "DeviceId": "70216f9c-b268-4640-be6d-1959e27c2c6a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_964050097", + "DeviceId": "c000699d-5bcb-4482-bd0c-aaf10e11586b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_902731977", + "DeviceId": "558f75b5-ca27-40fe-8760-56aa2fd31d1c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590998621", + "DeviceId": "319c66f2-7f0a-4c1f-b1fa-4e6170ca85dd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_105738504", + "DeviceId": "f4139067-2f95-4ae6-930b-de5547e69dad", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a9ee5269-24ef-4a2f-94ed-a160a8cfe960", + "TenantName": "Tenant-a9ee5269" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_619029292", + "DeviceId": "7884ba80-bd27-44d4-b9f7-e7ad54a7cff6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_468792544", + "DeviceId": "eb28ffc2-cb71-4a6d-8462-5258a1af9451", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_520361326", + "DeviceId": "231098b5-1384-44ac-80c6-cc79cf7d6ed6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858544270", + "DeviceId": "bbf4c465-c614-454d-ba24-8c7748d57d52", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_858985190", + "DeviceId": "6afd90ee-0f8e-4f9c-b1fb-0cbc73532994", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_121401726", + "DeviceId": "b337324d-1c95-4ba5-a9c0-f1633b957d86", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_949589881", + "DeviceId": "8f2d282e-bd08-4b8f-8ee1-2e21eaa4abeb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_811295423", + "DeviceId": "add07b4b-3479-4979-a659-f34c318d9111", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_858735205", + "DeviceId": "e5befde8-9697-4cfe-958f-c634528d8f69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_759487585", + "DeviceId": "fbc04185-ff66-4e3b-bb0b-32af60a05c4f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_152298088", + "DeviceId": "35815b73-2749-47e6-bcad-805a18ce1661", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "60b927c3-a999-4fde-8075-7a3f30912696", + "TenantName": "Tenant-60b927c3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_175358487", + "DeviceId": "8335983d-1142-4dbb-8aa1-3af12a4439f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397832901", + "DeviceId": "9acc0330-0de5-418c-975e-27c8854dae1f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_679128413", + "DeviceId": "db2009f7-8cc7-4a6a-b555-e608b05010f1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_417232710", + "DeviceId": "14622924-5322-456d-a596-97ce3664725b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_225148135", + "DeviceId": "b7f61c08-ed4a-404a-994a-1e6d0fb475e7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_733274743", + "DeviceId": "7d71b943-b7ae-4918-a6a1-74b9fdc20e5a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_539895363", + "DeviceId": "13b1b880-fecb-4419-a3e1-ac4032561f97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_204587660", + "DeviceId": "1793dcfe-6b84-44e0-98e1-ab685bb4ab60", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_975387850", + "DeviceId": "154ba295-8978-4243-a108-f6e9b9fa7077", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_250932899", + "DeviceId": "54cb9932-e912-46a6-b709-0234741d0f30", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_822661199", + "DeviceId": "95dc9688-c098-47a9-871d-5d493b029a37", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a7642b6e-6d0f-4bf2-917b-57f7391869f1", + "TenantName": "Tenant-a7642b6e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_463407563", + "DeviceId": "f10519d6-d5b8-4913-a1fa-97cf76ccf45d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_861938723", + "DeviceId": "92f70a29-6613-4c1b-a905-ac8b480d2b51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492107487", + "DeviceId": "8cc9f23e-eabc-4f17-84ad-b8af337ea918", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_492481575", + "DeviceId": "d8341b06-33bc-4d23-8298-008efde7e713", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_578600251", + "DeviceId": "b88aec5c-4b4a-47aa-848d-59b83e204518", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_513523409", + "DeviceId": "ef083da8-94d4-4f37-9395-ccf366f03b23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_478397076", + "DeviceId": "b14a7cf3-1d24-4fda-ac44-b21f95410d62", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_504552833", + "DeviceId": "917e21e3-27c5-4a18-8049-d3f632bded2c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_167994269", + "DeviceId": "26978560-24ea-4aba-8334-0b4a3c89c9c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_906869098", + "DeviceId": "67835868-45db-4ea9-bd13-d705ed407d48", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_927072681", + "DeviceId": "c4826ad6-cdb7-494c-a00e-80d1fd6be1dd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "9f38687e-8eaf-4e1f-9e47-756a422c812d", + "TenantName": "Tenant-9f38687e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_209511415", + "DeviceId": "9ba2f049-b8ae-49c0-844b-708d53e64ff3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_677700060", + "DeviceId": "f47bcacf-a222-43b6-9879-dd1d1f9d1d99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_962327405", + "DeviceId": "a0ab4084-b9a2-4a23-97fb-fa5276257e6e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_904639002", + "DeviceId": "f29fac5c-a01e-4000-9c6c-ae044a9408e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_451926044", + "DeviceId": "9e2f1a81-89a1-4f8b-be55-d1bfefc8ee1d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_761269218", + "DeviceId": "fac79dd0-e066-4466-a802-61f35f3933eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_788094223", + "DeviceId": "6da40051-c60d-4bd7-ad15-bc8a98677c08", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_178002160", + "DeviceId": "b5ad67e0-d071-412e-b8c7-c36b7fdeb9e2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_894971881", + "DeviceId": "84d53f71-7c2b-450a-af56-0566e3b45999", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_830431896", + "DeviceId": "a8cff7c9-0ad0-48f1-91d2-80ffa7008f3c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_662583409", + "DeviceId": "3508ef13-d2a6-4e68-a218-13c8253847eb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bdbf8d7f-61ee-40eb-8ba5-4bcf04dbf2d5", + "TenantName": "Tenant-bdbf8d7f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329353009", + "DeviceId": "4051f16b-efd3-468e-b401-efa33240ffe9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_592008438", + "DeviceId": "16572873-47e7-419c-90ae-dcb76baaa7f0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_563347422", + "DeviceId": "168939d2-e0aa-48e9-a7de-4ea067087e10", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_876577944", + "DeviceId": "31b40fff-b080-434f-bf2f-553dcc305cd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882732366", + "DeviceId": "e28581b5-beba-498f-b6d4-3b9c347f88b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550410029", + "DeviceId": "1233d477-6f4a-461a-ad31-de91fccd8e41", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297332091", + "DeviceId": "57c721ab-12fa-427e-bd17-ed7c55dc85cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_677481714", + "DeviceId": "0f9cd454-8e1c-4dbf-bc99-1000a3594b09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_660040412", + "DeviceId": "b8c5669e-024d-42fe-b922-4864b51b9a49", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171474889", + "DeviceId": "673fd73c-abfb-4814-a206-0304771521f4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_757603535", + "DeviceId": "232863bc-93db-42aa-9a55-1f07ddfb34df", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b24c03b2-2d08-4ba6-994b-3f81b04a844e", + "TenantName": "Tenant-b24c03b2" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_791055390", + "DeviceId": "4e7edd4d-5a76-4de5-9d86-42c7fb3f98f6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_315576067", + "DeviceId": "1b1e96fa-635a-4169-b885-55ab5dff34a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_866127096", + "DeviceId": "a22e8617-fe57-4825-a797-ad2581b33ad3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_881490259", + "DeviceId": "2002358c-fbe4-4b33-9a4e-44fb610f9b03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_506290440", + "DeviceId": "d4bf2562-cc38-40d1-94c4-e5bbdb1d8b21", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_863230383", + "DeviceId": "e4c1cac6-1dc9-4e42-a04a-7d5d35a4ba22", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_558402669", + "DeviceId": "ff43f863-5eb9-4042-b818-472065ba993d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907452143", + "DeviceId": "9541ca71-9624-42f5-b87e-167d130a5c06", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_255250963", + "DeviceId": "1ff9e493-b182-4b37-b9e4-a3da0d5f3888", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_727043201", + "DeviceId": "b5d06287-bb6c-4088-9dc8-9542bad79f01", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_270944711", + "DeviceId": "be4fd20f-e60a-421a-a85e-6bf803746686", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b3fb017c-7487-4915-ae3a-a0d83edc9a8c", + "TenantName": "Tenant-b3fb017c" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_458486930", + "DeviceId": "28caa90a-fda4-4517-83da-12c9b0f2985c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_825455854", + "DeviceId": "2c348878-89f7-4780-a3e7-9f10dc531402", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_591430468", + "DeviceId": "44053806-3677-441f-9633-87a3fe9e834b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_449098932", + "DeviceId": "557f8bc9-a130-40a7-b182-7b0b2d827cbd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_500132651", + "DeviceId": "f7023e62-81ac-4060-9090-99f128ee1fb9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_917454807", + "DeviceId": "c17e0d7b-3886-459c-8a7e-2d902b770d54", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_655189428", + "DeviceId": "601149ca-0660-4724-8117-a3c85ae1d6c5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_661493219", + "DeviceId": "66ead420-1977-4eba-b9cb-675b076fa53b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525225869", + "DeviceId": "5dcc91de-20d2-4b33-8194-db461c7d52e0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252303825", + "DeviceId": "06dcf252-70f0-4f10-a4d2-440ff55754e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_578877428", + "DeviceId": "860ea9be-8532-4730-8789-01d956c29956", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2e5e5ea6-75d8-402f-8584-63561f03093c", + "TenantName": "Tenant-2e5e5ea6" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_875676094", + "DeviceId": "7a74223c-30c1-4c75-beec-2843d5411ce7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_702878512", + "DeviceId": "ec834512-fd2c-4498-bb2e-b105762760e6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_259704897", + "DeviceId": "4d9aabf1-5111-4746-8c22-da1c400a1345", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_141630191", + "DeviceId": "f3c57c88-5b57-4206-b2f2-65731637aec2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_748641410", + "DeviceId": "dd8d6995-23b1-43e8-b4c9-a6b32560c15c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_109299191", + "DeviceId": "f97215c2-0a7c-4b3e-a207-a2f1c89e50b2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_349950508", + "DeviceId": "2884e22e-68b2-4147-aafd-c47488eb8010", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_822734792", + "DeviceId": "90b15b40-0a5d-4f51-80d3-e44a620e36a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561089671", + "DeviceId": "3a52e42c-7b92-41e0-9614-a894ee5572d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_834953490", + "DeviceId": "980c317f-27d7-4f2f-8215-46e67148d325", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_692266389", + "DeviceId": "0e630daf-c5d5-4263-9a6c-5c22e0b3bf2f", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c86e9cd5-b1c0-4894-acd0-bfb5c72b9257", + "TenantName": "Tenant-c86e9cd5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_471860608", + "DeviceId": "8b0e75f3-9cae-450a-8bd8-2bf14dadb133", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_255914833", + "DeviceId": "b615dccb-eea8-4782-9f0d-d28d6ee6b21a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_955177942", + "DeviceId": "a8fc0ad1-3ac7-4bf1-986e-458e80c7e281", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_257756467", + "DeviceId": "cc9f0dcc-c37e-481b-bcaf-d428ec7fcf01", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_692704820", + "DeviceId": "f3d0613b-8bf3-4937-b70a-1e823591bc89", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_763240241", + "DeviceId": "2f4b63a8-12ed-4bad-9efa-f909d9dbe3e3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_555193379", + "DeviceId": "3ddc55be-67fe-4419-a21b-fac66adad425", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_857730428", + "DeviceId": "117dd460-6754-47eb-a31a-fedc3af7b87f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_110999845", + "DeviceId": "8914131b-4f29-4378-87ba-a714cc24a576", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_737057737", + "DeviceId": "9161d4d2-0f80-43ab-92bb-bfc99300b0d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_497268282", + "DeviceId": "ad2ec108-b2ac-41ea-81fe-3bd0c1c71f18", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0d26be4f-5377-4eb5-a267-456cad7c4176", + "TenantName": "Tenant-0d26be4f" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893463551", + "DeviceId": "ff71416d-04d2-4214-bf23-0d2f15400ba7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822888709", + "DeviceId": "6d8232c8-f535-48d2-81bb-118d982ca5e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_242071076", + "DeviceId": "ef1f3e67-fa9d-4037-99bf-9a1b09654aa5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_450291732", + "DeviceId": "b6766415-77b0-4c50-819b-605fa8260403", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_690345308", + "DeviceId": "5f93eab1-e273-4814-ba1b-fb71020a01c9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_742801982", + "DeviceId": "20165216-de2c-4c98-93f5-5bcf2b09060e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_379409591", + "DeviceId": "0008e4dc-f3a5-457e-832d-d189a7505d66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_692130343", + "DeviceId": "0cc77e3d-087d-4bfa-b80c-07404e63d401", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_537641893", + "DeviceId": "129725c1-061a-4547-8fa7-6845b44be5da", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_328036287", + "DeviceId": "1e7b7f61-0e94-485f-b2b8-48b5f4cde871", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_978227609", + "DeviceId": "917e8394-8cd0-49c5-906f-80d124ae9365", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ab335276-c0e2-49ae-8536-cab964551d7c", + "TenantName": "Tenant-ab335276" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_170720937", + "DeviceId": "0870fbbe-e41c-4dca-b268-8d66d81262fe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_499125896", + "DeviceId": "ae130475-0122-4d64-8576-fb3b320e7c3f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_207856027", + "DeviceId": "e7f19cad-9d21-430e-9b78-e5e54694b61e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_539972848", + "DeviceId": "be8e4012-7f2c-44a0-a755-5424e34a5d0b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108039022", + "DeviceId": "bed93539-a28e-4b6c-ae10-1d6e31241e95", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_802127339", + "DeviceId": "3d83ef45-cc09-4ff1-b0f7-59de54b040d2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_277794025", + "DeviceId": "892c1fec-e366-4975-a7a0-34708f78ff33", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_201234867", + "DeviceId": "d6b67de0-1460-422a-8f17-55da5cac0a60", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_474579132", + "DeviceId": "49878dbe-b3bb-4d3d-8174-d256e098784a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_331155420", + "DeviceId": "e0fc98e4-32d1-4cbc-b511-976fb0a79d4e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_732180395", + "DeviceId": "0aca0c91-8546-4b85-86d1-b9d960908f4e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8d48fe01-d056-4e4d-82b0-d5667354a2d0", + "TenantName": "Tenant-8d48fe01" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_113167271", + "DeviceId": "22f6a1b5-2718-451f-8aea-44835536c7d5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_527158510", + "DeviceId": "c9d9293c-9d79-4b01-845a-6719a24af4d2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675060346", + "DeviceId": "f0cc5c10-317b-451d-9229-80d5ebe0cbee", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_833313741", + "DeviceId": "269b6546-dba1-4983-a513-022c9a03dfb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_411754092", + "DeviceId": "0c985512-2046-4586-afb9-a52fa7942c78", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_430398821", + "DeviceId": "fd3efcef-13f9-442d-965c-d8cf8a6e218b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_663972812", + "DeviceId": "e6ef061b-bae3-4303-9750-bf40e6f0ffeb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_227766027", + "DeviceId": "62b24ab5-16f3-4695-a066-10cdc345b232", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_892724938", + "DeviceId": "a76ac88a-02b0-44ad-99a5-0c5c16ee9b36", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368159940", + "DeviceId": "9327930a-6bbb-433f-a7a0-bdb818f49635", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_269552464", + "DeviceId": "5b3ed351-9bf8-4e24-8074-758b63114e22", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e7d6762b-5f69-43a8-9d65-a67d3c5da0b2", + "TenantName": "Tenant-e7d6762b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_620401930", + "DeviceId": "d67d2a80-8575-40b0-b33f-c1d4182c7f06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_632635615", + "DeviceId": "a1b48ee8-07fe-49c1-96f4-8d706f615f12", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122298347", + "DeviceId": "74e9c54e-5ff4-49e1-87cf-a904954b72cb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_306922081", + "DeviceId": "51e24e24-fa58-4615-ad9f-af8f68db135a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_415775623", + "DeviceId": "61b1a917-1d0b-4bff-9bed-f899aacfb73d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_590664706", + "DeviceId": "a222bf2b-dc0f-4c80-8dfd-9052bf201dc1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392637673", + "DeviceId": "eb663910-8dc2-4129-9ae0-6aa5297bb112", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_451066566", + "DeviceId": "888ff7b1-79d8-4374-b0a6-83aced40138b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_726652713", + "DeviceId": "2693fdf2-f1b1-4857-bc83-e4ade9259ebd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_768863292", + "DeviceId": "194c24f2-f6fb-457e-9c10-ee7a82b88cb4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_400706089", + "DeviceId": "a3c0b836-c381-485c-bbbd-2f74301cfa9d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "de1e3ae1-91ec-45f6-958e-33b0230c12b3", + "TenantName": "Tenant-de1e3ae1" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145875860", + "DeviceId": "6b9c8ab9-932e-4b27-87b4-0d2af2bf8ef2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_895630772", + "DeviceId": "fbd32c35-2ba2-4a1b-b702-943f55f66b09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_264343140", + "DeviceId": "9211e5e9-3b91-4e96-9329-11698ad8ec09", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_848685898", + "DeviceId": "1df66f87-da41-476b-bd54-3a377d83d0b6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_793433136", + "DeviceId": "9aa6fb5a-eb72-45fa-bf0b-4c9f6e9b64f8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_388640105", + "DeviceId": "afa7d12f-7fbe-4d9b-9ffd-1c0930624932", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_444023352", + "DeviceId": "a88f8bca-67b0-419c-af3f-99938a5998f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_149306890", + "DeviceId": "f69af249-318f-4ea6-963a-624d50a3c742", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_586257768", + "DeviceId": "99bf3539-9c00-4503-98e6-a4ccdc30c36d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_131334058", + "DeviceId": "3e038535-9605-4abc-80bd-ac9e66b1147e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_736311752", + "DeviceId": "168bb1f7-6127-4518-b3e4-8fc175d6567e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8fdb0cad-d33c-429f-95fc-6ce33916c11c", + "TenantName": "Tenant-8fdb0cad" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_314451637", + "DeviceId": "d5e21647-4415-4164-ac00-6b5f50f6ea16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562773859", + "DeviceId": "08e1c9da-b311-4f99-b6e1-65988893a601", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_629912716", + "DeviceId": "60081c68-2419-4884-ac8a-fdd14d350a17", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_986017399", + "DeviceId": "763b27ac-4ac3-4471-9626-d3357d84dc9d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_396118569", + "DeviceId": "480bb76d-8528-41c5-aa0c-9315b66c8abd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_698200804", + "DeviceId": "ce96c0ee-05d5-496c-bcf1-08b8417e1b4c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_168159765", + "DeviceId": "180d549e-6d7c-46a2-bc07-7a2e366a2028", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_588273244", + "DeviceId": "8a55e273-649d-4eee-9766-4aafdf553e7e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_817292720", + "DeviceId": "1cf1e185-b054-484a-932f-d9c7a44bf58d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765354679", + "DeviceId": "9adb81ee-176a-4a47-9d75-be2557380095", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_983416100", + "DeviceId": "33510b8c-87a0-4d4b-b490-b18093da85f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "12d2da53-0568-4d20-a06d-ed087d199d02", + "TenantName": "Tenant-12d2da53" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_702914566", + "DeviceId": "66dcbc54-6c30-405d-87f1-5462a731f048", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_535519002", + "DeviceId": "c2fb8117-e4d8-47ed-83dd-c8ae8bf24471", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_144539472", + "DeviceId": "86c364d5-1a6c-4b30-a7e2-51821edb9250", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_106155134", + "DeviceId": "71b570a8-9a8b-4f6d-b36e-79da3eefdd58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_805710750", + "DeviceId": "40b12f66-e55d-44eb-a9fa-b74865196523", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_965452361", + "DeviceId": "39659730-53bd-48ce-8cca-6f5371f75766", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_667884107", + "DeviceId": "d1e8e46d-5b14-4725-bea8-6c321d27396b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_450543822", + "DeviceId": "2c978b75-5140-4fa8-b872-e581c5207ccb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613827455", + "DeviceId": "a2b828d3-b56d-4f7f-8832-4b1bcbb608b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319969751", + "DeviceId": "f404bbd1-5297-40fd-a277-7eee72b92a3f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_638567106", + "DeviceId": "c670b9f8-946d-407b-ac8f-85bf3166116a", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "88d4cc43-8dca-429c-8717-f73b7dc32e03", + "TenantName": "Tenant-88d4cc43" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556778347", + "DeviceId": "853efd59-155e-4704-8260-2ac83bcd08bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_775192039", + "DeviceId": "30671be5-c234-40fe-a5b2-b75cb5189d06", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_998133801", + "DeviceId": "6baf3966-25fd-4245-a000-62467dfc7721", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_202203038", + "DeviceId": "7c1a0c0a-bb16-4c84-b73f-3b5b7fade482", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_484100951", + "DeviceId": "8c288298-f721-4e1d-bf00-bdc137ccfe73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_612912933", + "DeviceId": "668f526d-eadb-461f-a67c-2e97d13af49f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_559451268", + "DeviceId": "3fd3317b-2fb2-471a-9af4-e753bffb0856", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_338757665", + "DeviceId": "66eb95b7-c5a7-4cd5-b8c0-2477c8fefcbb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_371685905", + "DeviceId": "35a2295e-cb61-47f5-ae38-7a8c5f28158f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_695932981", + "DeviceId": "b5851662-5b65-455c-9263-82c90350682e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_868251983", + "DeviceId": "5962c233-64ba-48d1-8e30-7a3d22e7fea0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "134eb83e-ba16-46c2-b535-5a66b49df2ee", + "TenantName": "Tenant-134eb83e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_480048493", + "DeviceId": "993e14f1-001f-4bc6-b603-2a99c7d49c51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_897330760", + "DeviceId": "7920f1f3-888f-426c-8365-964b172345f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_258429331", + "DeviceId": "b54002b8-11b3-4cc5-9d2d-08414ea99770", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_893907795", + "DeviceId": "9f3849ad-391f-453f-b795-951e7adea32b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_864520455", + "DeviceId": "f3c7b49c-9475-4874-af43-9be1e2902f5c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_383135549", + "DeviceId": "92023ff2-7274-44b5-8ed5-2c03992721fe", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_305052294", + "DeviceId": "cc0fd6bc-a970-43c6-bafe-6ad67dcdacc6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_136445053", + "DeviceId": "12cc0579-4bc9-4c85-9502-94ac2247401c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_135907842", + "DeviceId": "63e11960-c3ad-4aa2-ac75-dbea4d1cd6d1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_694441911", + "DeviceId": "ab1229d7-e097-4ab8-8672-f848884dc71f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_816245681", + "DeviceId": "62bf92d8-1ab5-4579-bf4c-5cda954333fb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "54a12d38-2458-4fb9-93a8-db2530259e14", + "TenantName": "Tenant-54a12d38" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_616976025", + "DeviceId": "adb9eb7b-ada0-4688-8217-dce1f4e20d8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488476835", + "DeviceId": "2ff53cc9-f47b-478f-8316-966f547928f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_762073987", + "DeviceId": "0f452cc3-276a-44d6-9882-e2f7bdc82d03", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360796975", + "DeviceId": "ad59479b-3719-4879-85bc-b9a8b3bc10b5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_662200198", + "DeviceId": "96ffc904-597f-4aa9-8788-ad261cb18674", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650291625", + "DeviceId": "d25f7d71-7bd6-4836-9a83-9822599d8f53", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977154287", + "DeviceId": "f127ec6b-83dc-4654-84e3-2ec38235febf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_859005551", + "DeviceId": "1700e32d-eaf5-42a7-9730-778cf0774d6d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_960597618", + "DeviceId": "9db55e41-f466-4bfe-a169-7a85dea634c6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_180840122", + "DeviceId": "d53410c7-d29a-47e5-8fb9-73dfa2f64023", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_495412730", + "DeviceId": "dc887dd3-2edd-49f3-8c2f-db7ebd44919e", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "01ed28d5-e7ca-46d6-ac73-eff715253622", + "TenantName": "Tenant-01ed28d5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597054942", + "DeviceId": "acbfb519-20a6-4544-b73b-8ab50c15f21a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_694027996", + "DeviceId": "504ce1a1-02c5-4079-aa8c-60fffdf38f82", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_183277425", + "DeviceId": "577ee0f3-57b9-4654-8a33-af90a9013b2c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920253523", + "DeviceId": "02885739-caee-4cc9-85b5-5cfc5483761a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_989506266", + "DeviceId": "c48c383b-979d-42ce-bc7b-36c16aded133", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595489780", + "DeviceId": "1e954e83-198d-48ac-85aa-484be16b0955", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_163859620", + "DeviceId": "ac5bf691-5d02-4fa8-b9ac-693dd16a32d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_123071815", + "DeviceId": "474bf1b5-be80-41af-92a0-3d45b82ea60a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_252614351", + "DeviceId": "4458fdee-2aa4-4613-9c8c-e6d16ff65126", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_977082959", + "DeviceId": "c90d3aab-df4f-4d2a-8578-06ca87b06718", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_479618640", + "DeviceId": "eb431fe6-c36d-4df8-ae22-d7e9a11cadfb", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "f9c84a38-b84a-48e8-9ad3-b2f7dc22a161", + "TenantName": "Tenant-f9c84a38" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_437587752", + "DeviceId": "ba1b65e9-6be2-410c-8a18-27b5005c3475", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_846703879", + "DeviceId": "0c887ec5-e579-4f2a-a5a7-e4c616a0e4f7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_891568656", + "DeviceId": "54ffa595-e783-4c0a-925f-0c93eda04a92", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_597028378", + "DeviceId": "da96ae69-0a2b-4f5e-b765-a0d3e4ae79ba", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_220256718", + "DeviceId": "f8530a9d-4da0-4c0a-9262-6f2e82c45633", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_899565164", + "DeviceId": "787f768d-19bd-4499-aeda-932f213e8ae6", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_888445111", + "DeviceId": "7afa9903-5723-4802-9999-a36980736c45", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_360892532", + "DeviceId": "17acd5e9-29d9-46b4-97b0-ab122cb5fb94", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487093380", + "DeviceId": "57d44c08-1a8e-473e-999b-fcbf640190ef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_182687377", + "DeviceId": "a2a0b97a-d573-4718-be9e-103d03de9093", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_268064287", + "DeviceId": "b276ca5d-7a4d-435f-aa68-1835dab791a9", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "265c2ee5-f54d-41ad-8cce-32bdc1ba9144", + "TenantName": "Tenant-265c2ee5" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_955051359", + "DeviceId": "a1a1a7fa-1a48-436d-b12a-81f5d506f149", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_733501485", + "DeviceId": "af3bcf70-10af-403e-b914-6dcf09487d2d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_142165231", + "DeviceId": "d918b96f-c7d3-44ec-b3fd-ddac2093221c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_405568113", + "DeviceId": "5eaed3cc-2e1f-4c8d-8a1a-1a6e026ce99e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_912599462", + "DeviceId": "e00552b7-ddbb-4031-9fc0-b0965aad772a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_382348354", + "DeviceId": "0c4d1a50-0562-4ce1-8ef7-4e565a637af1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_532167383", + "DeviceId": "401ff947-d6c1-4c9a-9020-31e66fe1f443", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_754526155", + "DeviceId": "90b7c70f-17a8-4573-9042-663967d760f0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_770750563", + "DeviceId": "42545380-dfde-4988-a7c9-ebe67a4feafc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613469428", + "DeviceId": "09ca2ebd-5a5b-4056-a29d-70162e7936ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_593139711", + "DeviceId": "d7110b93-cfeb-4542-832d-6c6e021ed828", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "7997cbaf-aa25-49f0-801c-a55b051ab5dc", + "TenantName": "Tenant-7997cbaf" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600430484", + "DeviceId": "fc1be96b-7c09-450e-b0ae-7e1595d40412", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_837091757", + "DeviceId": "1ca20e50-9adc-4dce-a0de-4e1b60696013", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_873763364", + "DeviceId": "172dd6b2-39e0-4987-9b7b-015949a85ebd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_588978024", + "DeviceId": "1f2a6461-adfb-46b5-a764-232acd4e2081", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_812185851", + "DeviceId": "2e32d1ff-6901-47cb-9be5-a1394dde70c4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_113805437", + "DeviceId": "67cedf09-b2e2-4404-b63c-1f37308f799b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_323038994", + "DeviceId": "e3e3cfea-a712-4cfe-9da8-cf71dd31a366", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_342826518", + "DeviceId": "f273dfd5-154e-49ea-b6d9-f269f7a9f1a4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_415328430", + "DeviceId": "ce7564a7-d9b7-43c2-b603-b5bd4df6d082", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_297475507", + "DeviceId": "4d15af58-7709-4a7d-bc24-9ef4a397ef7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_348184239", + "DeviceId": "c6bfe479-916f-493e-a0ce-ed29913631f3", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "63f2c42b-6255-4159-8166-1520aa74c61b", + "TenantName": "Tenant-63f2c42b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_824809536", + "DeviceId": "acad264d-2c3b-427c-9761-d40dd10392f9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_276125062", + "DeviceId": "50ba48af-38d0-4f94-9838-cf54509b9374", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_566282448", + "DeviceId": "f3fa4893-0e2f-41a1-8490-07f0587dc6b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_556194816", + "DeviceId": "332aeba5-3239-47b4-8804-97b81c34c96b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_765158785", + "DeviceId": "bc3da44e-b63e-46ec-9d2f-f26c01e248ce", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_665597324", + "DeviceId": "1073528f-e553-4a19-aa58-2c1995c50b0c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_595343034", + "DeviceId": "8f07b0ad-88f4-4e0e-960c-41817a04e239", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_151428943", + "DeviceId": "69c6f9d3-e630-4d11-91ac-4c8f8911b07e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_938163452", + "DeviceId": "3656f04b-e1aa-4174-b20f-4f5a10ca3353", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_561282471", + "DeviceId": "056a96a6-59e1-4b44-9c44-f1caebe6f321", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_733421016", + "DeviceId": "c7e56b5c-bd02-49e9-af8a-82d035b133f8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "80291ce9-e372-495f-b797-e822f6919c83", + "TenantName": "Tenant-80291ce9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_233101368", + "DeviceId": "a102935e-8e9a-4200-ad3e-d5fcf57dfaf5", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_509347869", + "DeviceId": "33287d4f-83b1-414e-bd42-14f40d0dab6a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_133952028", + "DeviceId": "99f71b7b-b48c-4f56-8c45-110d91b0a69c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709285947", + "DeviceId": "875ffa73-b33a-428b-989e-27fcd01d77c8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_331585548", + "DeviceId": "118e891b-49d6-439b-976d-1a51744b868a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_526139855", + "DeviceId": "e753aaf6-13cf-4e11-986e-82623353907c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_370870026", + "DeviceId": "004ef40a-0a88-4a2f-a908-9812c26652bc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_203731791", + "DeviceId": "5729551f-cf79-46cd-87c8-b737ac572050", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_513829989", + "DeviceId": "1a7cfb2f-17e4-49df-8b1c-85a5d2862510", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_607477634", + "DeviceId": "39f9168b-da2e-47ab-a606-ca9a23287609", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_676945572", + "DeviceId": "51693715-2551-422e-931a-1e972eb3c987", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d1cafe8a-f7ea-47ea-8a1f-2fb248449abc", + "TenantName": "Tenant-d1cafe8a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_714395489", + "DeviceId": "346c4ba2-5738-40bc-ab85-48e0cb7072a4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_951718671", + "DeviceId": "be6172ad-c66c-4865-be29-f5ed90c1ab47", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_882069943", + "DeviceId": "c07a2f2b-c496-4cfd-a210-1f0e8be06dfe", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_356082385", + "DeviceId": "1aa64ad5-3db3-46e2-90b6-b793e7685c6b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_473827625", + "DeviceId": "8ad4e7f0-5838-4ee8-ab56-3945d4100e30", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_956805860", + "DeviceId": "7a80977d-7e66-4da7-9977-26f1f7fd885a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_730317953", + "DeviceId": "bf982214-9905-4b23-b4cd-cb97f39a0815", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_635416998", + "DeviceId": "46339cce-68e4-4eb7-8554-c3baf66b9a23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_549278616", + "DeviceId": "ff2466a8-9237-4527-bbd4-48f5877ed549", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_795803805", + "DeviceId": "27741930-e1be-40c5-bfc2-0cd50f29cf68", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_786707935", + "DeviceId": "2ae09a27-440b-4a79-aefc-af0b65ab7e4b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "aa4d4a7e-39c0-40c4-8a69-025967b263f0", + "TenantName": "Tenant-aa4d4a7e" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651664715", + "DeviceId": "71f49dd1-6b40-4285-82ef-39e9e3a80c99", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_360729679", + "DeviceId": "10f022f5-9a67-4761-9891-f0cad51cc5b4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_661982456", + "DeviceId": "6c484ff8-9b44-4520-8c3b-8ffb69dbfafd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_238532817", + "DeviceId": "f343a56f-478a-4af3-8a2a-d1f99bc8ca79", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_683591962", + "DeviceId": "99eb9981-de6c-418c-a5c6-228194bd08e2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_319081631", + "DeviceId": "4448ed1d-e02a-4add-9518-ae70467a2577", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530712243", + "DeviceId": "f7e12749-78ae-4e8b-b2f5-2be86941deaa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_851614260", + "DeviceId": "30b1ea79-7983-4750-8f1c-50c326aa12ab", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_656378933", + "DeviceId": "1989d6c7-752b-4333-9e88-20bc93e868b0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_348138574", + "DeviceId": "53b7b481-7c56-462c-b3a0-444365a1c767", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_105437472", + "DeviceId": "8e144e37-30ad-444d-93f1-b7c5cbed3b71", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "8bd72c10-4450-40ba-a175-0b03a40c5e29", + "TenantName": "Tenant-8bd72c10" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_398639508", + "DeviceId": "f6c53b43-62a5-4a50-a6e7-c0daccd85a34", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_368876522", + "DeviceId": "f01b2acd-74ed-4b96-af05-0232603854a1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_741134501", + "DeviceId": "0d3630ea-ec1c-404c-90d7-3ebde41749d9", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_155892896", + "DeviceId": "63b0c616-5e37-45c4-84ef-fdd8f80e7075", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_542133208", + "DeviceId": "f3cb2006-bac9-4c95-8749-b817d2346e44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_564169836", + "DeviceId": "4ba74022-33aa-48db-ac9a-f48d1731d0cc", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_843408696", + "DeviceId": "12a1b99a-7eb1-485a-bafe-21ff44cffe82", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_530025776", + "DeviceId": "60cae50e-656b-46dd-8bde-5048554867eb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_780637173", + "DeviceId": "6f43d481-4968-4251-a8bf-8c1ac0c0947a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_583021363", + "DeviceId": "173ff8e3-3420-4112-929e-58bcab3654ff", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_760965697", + "DeviceId": "0cd79492-bdc5-4217-966b-516e6b7f9d9d", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2d0762ec-9b46-4372-9235-79978c6ace4e", + "TenantName": "Tenant-2d0762ec" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666307530", + "DeviceId": "ed36821a-7d6f-48dd-aef3-bad490a303f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_376720361", + "DeviceId": "db0bc9af-90ac-48c6-a27e-693962de4537", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_443878074", + "DeviceId": "3d4e8c04-1e91-4f6f-b3ee-5b045792b1df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_122294880", + "DeviceId": "15c248af-cbf8-4478-9c54-75192a3575ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_409407653", + "DeviceId": "0a15cfd4-1c8b-4ca0-b53f-1e39eb78258c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_572804379", + "DeviceId": "3c5b5379-a9e7-4fe4-b065-179243c4826f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_162118573", + "DeviceId": "e99fd8d7-2a42-4486-a5ab-0a03966ba395", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_468018653", + "DeviceId": "46d453a0-e7d1-4653-a836-c6007823355d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_601015650", + "DeviceId": "bdf66cb7-1601-4f47-a074-a930ada0493c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_723768632", + "DeviceId": "78ee8b96-6369-4a33-8539-fbe18c2494a0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_745931185", + "DeviceId": "14ba8fd8-4d11-4fd1-8191-fc6ab38d66e2", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a4cdb31b-296e-413f-aa14-d086f453a764", + "TenantName": "Tenant-a4cdb31b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_781959849", + "DeviceId": "99584264-6e1b-4da1-b079-37649905c3fb", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_869567724", + "DeviceId": "a7deb5ba-95f4-4cfa-bdac-474877f01f8b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_358349993", + "DeviceId": "a186ba78-944e-4885-85e8-c508c4efbb44", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_725315498", + "DeviceId": "5235ba93-62a8-428c-ad9d-23a5297ee86e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_960176105", + "DeviceId": "3c2ec6e8-4e2a-4ffb-a867-a44a1add90cd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_718678427", + "DeviceId": "a276c20c-2b51-4a1e-ba05-ab447376be7a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_265265270", + "DeviceId": "eab5a685-d4c7-430c-b070-092d733fdbf7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_693261955", + "DeviceId": "84da46ed-f35d-4782-aae2-ace283db7fbd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_765722043", + "DeviceId": "cd50272d-9e3b-4fba-b882-1e5261b03eed", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_925326942", + "DeviceId": "2e33dda8-a101-4eae-b8df-6ce56c178b96", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_134352332", + "DeviceId": "ab1fb100-be97-4249-ad5f-bf5c31ebb4f4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "c5c9363d-6e80-4327-a8c2-26382b74fe8e", + "TenantName": "Tenant-c5c9363d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_565364540", + "DeviceId": "17bfc3ec-4b4d-4771-8de1-37c039998e51", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_569510850", + "DeviceId": "afa08583-34fc-40b2-b9df-c86d9e41c4b7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682569878", + "DeviceId": "e6d001d1-4af5-447b-88b9-dcd7acbdb677", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_476881975", + "DeviceId": "2042ff0f-351a-43d7-86e8-ce6a8de62f76", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_213473807", + "DeviceId": "4ffc3238-d940-4d53-a8c2-62a5bfeb3723", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_485833582", + "DeviceId": "2cf9b33f-f48c-446a-950b-3cf665af1eb7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_907774690", + "DeviceId": "4ba0e08c-1c6e-416e-8bb1-01371307a452", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_197292778", + "DeviceId": "7465bd46-c0a1-4e3c-b6e8-18211db294ad", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_755646092", + "DeviceId": "a4a919b1-2f90-41f7-bedd-645da171242a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_311634376", + "DeviceId": "8d6bca78-c621-443d-bfe6-c4805216f21f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_523767477", + "DeviceId": "cc6732d6-888b-4bd7-aab0-e9f16a4a33e4", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "04284966-4513-4c2d-b2a3-f2a86e0b36c1", + "TenantName": "Tenant-04284966" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_293935707", + "DeviceId": "292d3dea-c0c2-4091-a6a2-18dde2b8abb1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_364207135", + "DeviceId": "a772aafe-2d54-4b5f-8509-6c4468a79b3e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_438832587", + "DeviceId": "6b4816e1-9ece-4d26-8ae8-a13f6adb3287", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_363417080", + "DeviceId": "c0535bba-b1b6-4b54-a2a1-29ad225c3ca2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_192235686", + "DeviceId": "dc843840-bd53-45fe-bdf1-9f17e6ae62db", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_556217084", + "DeviceId": "e38aad13-ad15-47c0-8a79-5ebd5765c97c", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154370770", + "DeviceId": "dbcd7a77-71a8-47b5-a63e-5cf54adca33d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_962985687", + "DeviceId": "e9369976-b50c-484b-a2dd-cbbc6185ad23", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_867729876", + "DeviceId": "37b9fa7c-abbe-47ac-97e0-b13f7b5617d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_368668525", + "DeviceId": "69ed5d50-042f-4069-9c1a-654d4b9eb660", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_200970931", + "DeviceId": "224688b9-07fa-4511-ac6d-c567162157d0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "defd7f44-0658-419f-8cfb-2fd9c0d40ce1", + "TenantName": "Tenant-defd7f44" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_108116493", + "DeviceId": "86102aa7-12de-492f-b38f-01067ec1769e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_850739589", + "DeviceId": "9e654b21-c558-4210-a4fd-20236d608d83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_675755333", + "DeviceId": "17743921-47e2-484b-8a97-d05de4bafb91", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_125733008", + "DeviceId": "6dda7027-56b6-49dc-9cc2-5b7d1c868bd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_425840119", + "DeviceId": "0a43fe38-4e77-4400-b23d-39897c0f2312", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_163557995", + "DeviceId": "65ef3a6a-69e9-4bae-b5d9-c0398f7714cf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_669397652", + "DeviceId": "e5a6dc9d-37c4-4879-b662-45decc101ca7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_427303768", + "DeviceId": "d9ab2492-d34a-4b65-9300-be4945cc67d7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_998310755", + "DeviceId": "17bf17af-8ef2-4a1c-8e54-96fa0ec57ec4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_366166720", + "DeviceId": "e4ea2a23-44f4-4fb7-a88d-695d7bb75ead", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_155862325", + "DeviceId": "b734b1ec-b6c2-40e1-91e4-c6d09660b3c1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2154fa5d-9858-4316-952c-c5cec87e3919", + "TenantName": "Tenant-2154fa5d" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336995830", + "DeviceId": "067ae5d7-a22f-470f-92cf-19f73bbe389c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_920590595", + "DeviceId": "3cebd42e-b02e-4a47-b825-06f4d77e2e11", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_147392843", + "DeviceId": "0c0fac42-f843-4f53-9dca-b591a0a3944a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_618535960", + "DeviceId": "1ee31358-383a-4f73-931b-2dba8f5483f4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_430230669", + "DeviceId": "a41b7d56-3891-42bc-8a42-042a2c2647c6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_613673612", + "DeviceId": "3c3eea83-c06f-4dc5-8e06-76fccb2c2de5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_517868393", + "DeviceId": "f3ecf82d-f4ae-4ea2-ac62-f9ba00d3eefa", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915522816", + "DeviceId": "46bfe204-2f1d-458c-9c56-4732e1bcdd1b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_373176105", + "DeviceId": "993fa270-a0be-42e0-b51a-f2d41f9752a8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_214972702", + "DeviceId": "f6ff8162-3762-4fb9-abc9-f86a0e1a489d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_675695364", + "DeviceId": "2dab6a5c-ea97-43b3-8221-53ee79799b21", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "bd3b45b3-0f6c-4c0c-b822-728b1eacab8c", + "TenantName": "Tenant-bd3b45b3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_633478361", + "DeviceId": "36777e0a-cdb4-4f20-94fa-22c0f6969de2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562361628", + "DeviceId": "5a5ba4f2-8733-4f2a-8b72-182c898e2fd0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_265121446", + "DeviceId": "0861b0f5-3d25-4bdf-955f-c5accd8ee3f3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_446752834", + "DeviceId": "606f69ee-ed51-4024-ba5f-ab678c8c055c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_408132443", + "DeviceId": "a37f708c-f0e0-497e-b6c1-9be94df3c4c3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_664389439", + "DeviceId": "e3c2e6f8-35b6-4729-93f7-4b6bbf337b09", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_171098611", + "DeviceId": "68129a05-c9ab-4053-bb52-e8cb2910eb5f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_650260575", + "DeviceId": "f3f1b85a-4e24-41f9-b022-4f51e9679301", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_490626062", + "DeviceId": "0e663e7f-dc6e-4f6c-920f-8bfe60847303", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_618622346", + "DeviceId": "b82b93a9-f71f-49f1-bca4-ed89ddcb2a37", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_514410349", + "DeviceId": "71608bf7-b183-4b52-964a-97db322a86c8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "cbad4f46-f930-48c3-809d-4079dd7baad7", + "TenantName": "Tenant-cbad4f46" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_887767940", + "DeviceId": "7e82cb71-dc37-4599-aa0f-adcdd8d01f86", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_533381358", + "DeviceId": "92d55c62-882d-4b70-973f-e50a5a7bd472", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_488229741", + "DeviceId": "ded8cc3d-3c6b-4997-8d8e-3f401ccb47a3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_236577115", + "DeviceId": "42938850-b6cc-48ef-990d-02ae7bf3f17e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_216663349", + "DeviceId": "f103046d-d60e-4ad0-895b-a69c1d861e19", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_391166268", + "DeviceId": "73eaec82-7105-4642-a26a-5f750bb634f5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_143304216", + "DeviceId": "2bce5b30-43fd-419c-bdcb-905215d90371", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_505647727", + "DeviceId": "6295ae5c-698f-4914-a964-db22e6a3a904", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_766207108", + "DeviceId": "c12a7e44-d549-4869-a8b8-ec29f81c415f", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_619120786", + "DeviceId": "a2b5592f-d671-4765-93ec-d19933430a66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_770342465", + "DeviceId": "5f4f59bb-703c-4d97-b052-d0f99acfe13b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "3e1a11f9-98c8-4ebf-8d29-92b22e15be5d", + "TenantName": "Tenant-3e1a11f9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_250732661", + "DeviceId": "ad0f0e06-cf83-4f2a-9a77-3265f6cbeb8c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_173138742", + "DeviceId": "efe2a52b-1a8e-4443-8c11-57e65eafb67a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_382282675", + "DeviceId": "ce8a1d34-72cf-4776-b63c-5fe21d9690bd", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_532581627", + "DeviceId": "541cc829-6fd7-4fc0-969a-c15366eb0f72", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_822910738", + "DeviceId": "2be0ccda-00ed-4f87-a72a-f803953cea3b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_598349960", + "DeviceId": "89382f0c-4077-47c0-b64b-fd8ef46d26e9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_767971651", + "DeviceId": "5ab7e2bd-099f-4752-9219-1d675e1e78c1", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_741863123", + "DeviceId": "38c605d9-deef-4dc6-9aaa-ae019b932fa5", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_483868374", + "DeviceId": "730de8d2-7289-4e08-85f9-4a16d703c202", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_275463898", + "DeviceId": "dd8ed19a-f298-4e1b-bce5-ebbb495ddaec", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_120456604", + "DeviceId": "35e45010-9fde-4aba-a13b-9e1274ca2231", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "2debd9e3-4a1c-49b1-ab7d-1b3016c65ea9", + "TenantName": "Tenant-2debd9e3" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_235562888", + "DeviceId": "ed5e78f1-4af7-4a29-a5e2-560628ce9e58", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_188513965", + "DeviceId": "b22f6757-c230-4962-9906-8513b5b8c484", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_918284892", + "DeviceId": "e9b78c81-fcaa-4d12-a0b6-c9e530ce2528", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_579355834", + "DeviceId": "f86e9a70-9037-48c5-9211-c277cb61e08d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_525263050", + "DeviceId": "0828edf3-56e1-433b-9988-0498a5fc55c2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_366303328", + "DeviceId": "7dd07ac2-adc0-4900-8ce3-fc3b36ffb408", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_514671660", + "DeviceId": "63163e51-db13-44e8-93c3-383971731e00", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_651821704", + "DeviceId": "32390f2e-d6b5-46a9-9170-d359242e67f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_873500817", + "DeviceId": "f1a4d00d-f629-4a96-b631-1b67af61d6cd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_405604774", + "DeviceId": "19ccf95b-fa89-4e14-a16f-b75e011be4c9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_215845531", + "DeviceId": "ff4793cc-8efe-4994-92ed-3444283b4b43", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "505389e7-9458-4634-9435-3dc4da723268", + "TenantName": "Tenant-505389e7" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_362008444", + "DeviceId": "4ef7e829-810e-43be-9667-93ddf638354e", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_317465390", + "DeviceId": "9c52fbca-938d-4f8b-b32d-fa8e8df20c8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_664375226", + "DeviceId": "51663be2-5651-4e60-a9c8-dcada826cf73", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_711621947", + "DeviceId": "c194c3b7-664c-4ae3-bc77-6e823600b09c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_651683532", + "DeviceId": "2a302b0b-1410-4a46-a3fd-0f6494479370", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_127060070", + "DeviceId": "bbebd05e-8ba9-4f37-91d7-a872b3ae1543", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_486152110", + "DeviceId": "9601e74f-6ae0-4676-b7be-d924ceef5fcd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_562200552", + "DeviceId": "f19eeb2d-ae62-4d2a-a53a-8d538154247b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_392260751", + "DeviceId": "8635161d-f1fd-4b84-be2a-8341d0e956d3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_233059414", + "DeviceId": "9733796c-2564-4836-82f6-18408770db66", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_969001699", + "DeviceId": "8690f411-8097-43e5-8fe0-cc483a05a287", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "95653c81-7586-4963-9a9d-82c71eedbe11", + "TenantName": "Tenant-95653c81" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_707057813", + "DeviceId": "0ed3e141-f482-44b5-a6f8-6bc2c30afe0a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_900084342", + "DeviceId": "ada72225-1fb0-4c83-9ab6-7b95e47c37da", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_562729275", + "DeviceId": "ffb0db05-ceb3-4f6f-ae4e-c7786c16a900", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_336820891", + "DeviceId": "b2a72ecf-70de-422b-833a-4f9ca723cfd6", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_678421583", + "DeviceId": "7f9a1b8c-1e25-4661-a4cc-f3bf6bacaa62", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_721258231", + "DeviceId": "e021e57a-52ea-406c-8d74-32030f600c51", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_313601199", + "DeviceId": "dd4ea7be-9286-4c7a-aa42-b5154c99065d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_732011025", + "DeviceId": "926b569e-25c8-425f-a0dc-6c5fffd7472a", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_837266090", + "DeviceId": "25913ce7-6ccc-41f7-bb5e-bf8de491ee76", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_615143908", + "DeviceId": "b4d3a84e-5570-4a10-a828-b25dd89f457b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_403276868", + "DeviceId": "4d0c48a9-6d9c-406b-8278-d4b9bb15d436", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "d52307c0-98f8-4301-bffd-dc17c1e0542c", + "TenantName": "Tenant-d52307c0" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_184090676", + "DeviceId": "2d58a6c6-353d-4f37-a1f5-ff2bd9242234", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_412402034", + "DeviceId": "8aa89b0c-fe51-41ed-aadc-b5a155406355", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_454136893", + "DeviceId": "000cc15a-0bc2-4ffa-9a73-22abb30645d8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_218201047", + "DeviceId": "d661159f-2107-4020-aaa2-0a9b769e74e1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_499157380", + "DeviceId": "cf3ee4ef-c0e4-4971-9dce-fd102d655369", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_358426258", + "DeviceId": "c97f1efd-f5e7-49bd-8dc7-8aa69263d073", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_332289386", + "DeviceId": "aea20411-315b-4a21-ae96-884d89642552", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_827718288", + "DeviceId": "fc73a61b-98d4-4179-a1ec-c0d7a5472cbf", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_978554533", + "DeviceId": "2b4f1677-2b97-44c4-ad7f-7df6ebfa0eb3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_882911613", + "DeviceId": "3cdb363c-0331-44f8-be89-f95f34db782e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_509321420", + "DeviceId": "f5a56be0-ba95-45e4-b3d3-1a24f9c29f52", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "16453797-1380-43c7-bf52-0b93c56378a2", + "TenantName": "Tenant-16453797" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_329242130", + "DeviceId": "6cc42c87-903a-4006-ad22-aba6a8def4b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_934840863", + "DeviceId": "e8cfe205-1d3a-4cd7-a722-835a9de39a6f", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_241789973", + "DeviceId": "c30d2ba5-f967-4e37-9a88-e503ccc4ace8", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_134922264", + "DeviceId": "0c21f11a-d12a-42e9-87c5-ba26a67db4df", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_154877808", + "DeviceId": "c4175a43-9a25-4c58-9301-a8bf0f3ffc28", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_550876052", + "DeviceId": "66d1d588-e72d-441c-8ab0-653fee5e5bc4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_674052772", + "DeviceId": "c49b7a58-5b42-44e0-8758-e114bb957e1e", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_597180580", + "DeviceId": "26376ab5-d93a-4c75-802a-27c64e6aa3f3", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_747812855", + "DeviceId": "5c7b7bc4-1221-45af-96f7-974765d54576", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_337433708", + "DeviceId": "521f37ca-ff1c-420f-9977-cd7af7fb4abd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_816062528", + "DeviceId": "f78792ca-97ac-4c7d-82f7-14565eeb2713", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "6ec24e49-8a52-4397-8b35-1514f3355659", + "TenantName": "Tenant-6ec24e49" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_345251957", + "DeviceId": "6f31c21e-75cc-467c-be97-e59b834d295d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_410211135", + "DeviceId": "92b006c2-55bd-4a72-9c7d-569795ff6cd7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_318151914", + "DeviceId": "9b0e053b-84f0-4d59-abb9-d39ba2a15d74", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_888809751", + "DeviceId": "c8721956-8ed8-4463-a05a-3da72463bbf2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_883397290", + "DeviceId": "84a7f0fc-0078-466b-95c5-408936f7da27", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_351727119", + "DeviceId": "2119a606-22b6-4cd8-a094-a3c4dd29a3d0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_232541357", + "DeviceId": "6cc71ff3-b861-43f6-bab9-07598351d80b", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_918388772", + "DeviceId": "7ef6cd97-5065-4814-8a57-951d785164f8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_927874636", + "DeviceId": "f3d62084-5a21-4aef-b73d-e1ff4324a667", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_894355029", + "DeviceId": "b743d5d1-d8e2-45bd-b961-cee39c8bc806", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_525862376", + "DeviceId": "686cdfaf-a173-41b8-86ba-ce0dc8e8ce5b", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "b139538a-88c4-4ded-90b7-49ebea4c63f3", + "TenantName": "Tenant-b139538a" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514838560", + "DeviceId": "57bcda20-ede6-4d60-aedb-1837fd9b65ab", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_100308051", + "DeviceId": "3ac953ad-07e4-436a-a200-d782ae62ab53", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_397319442", + "DeviceId": "cdbfad5b-7163-497d-81da-d6ab703bb2ff", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_600894332", + "DeviceId": "ce59c69c-67de-42b1-9976-4a9e55c1725b", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_638768896", + "DeviceId": "55b5bf25-3186-4dfa-a174-636d3819dea4", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_686970614", + "DeviceId": "5e737e83-19d4-49a4-ac5e-b5e9fd122c8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_791389158", + "DeviceId": "b303e88e-db7c-4eb3-8f98-3af73cf00206", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_253276236", + "DeviceId": "3d86f448-fe4d-45dc-a67c-3a7bba1824b9", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314016054", + "DeviceId": "c7879c91-cb05-48d3-aa0a-93fe980f8dd4", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_997644397", + "DeviceId": "e17019cd-e9bd-4067-857a-5e365176d334", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_768654711", + "DeviceId": "9a04a1c0-87c6-4b64-9f80-00f04b928eee", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "0f4a292b-21bb-4500-9d47-e67c5aff54c1", + "TenantName": "Tenant-0f4a292b" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_682815810", + "DeviceId": "bcb9bde9-533d-4cea-8b58-935fba014a97", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_400883215", + "DeviceId": "009d0ada-602a-4859-b953-b049905ae43c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_581677211", + "DeviceId": "bf005499-f10e-42d9-97ba-18e0dbf97032", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_907402041", + "DeviceId": "482fcb3d-399d-4acc-805e-1f562ec8f1fa", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413833187", + "DeviceId": "c4e33e70-3cfa-4a09-8d2f-5fa94b3b176c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_894259909", + "DeviceId": "271727d0-9b33-45fc-bcee-0c5ba2e1ca47", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_729949757", + "DeviceId": "c95a1163-0090-4293-841c-bd13784c4b25", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_713793250", + "DeviceId": "ef0bb7f0-37cb-4eee-989f-eeee8effab69", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_314681859", + "DeviceId": "1bbca9b8-6d8a-468f-ba91-79efc44f1aef", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_744607873", + "DeviceId": "377ed866-ffc3-4d9b-a9a4-269783ba69ee", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_922195342", + "DeviceId": "34b63299-1f32-4c47-9c6e-cc43bc24aabd", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4dc402d9-9711-404a-b05f-a68ae2c97171", + "TenantName": "Tenant-4dc402d9" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_145319326", + "DeviceId": "76bcffff-864f-40e4-98f7-0373ed86069a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_720142172", + "DeviceId": "c3956d5b-a5d7-404e-aba4-c10b615d310a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_699720182", + "DeviceId": "1998f614-99ac-4a2d-bea5-123cf1b78617", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_976287786", + "DeviceId": "1643c9bd-6c8c-481b-9812-8ae5d71ee5b2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_423681963", + "DeviceId": "79b45280-39db-4e76-9025-d10e4db232e3", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_643452659", + "DeviceId": "4cfc5247-c321-4962-82ba-2cb404a56099", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_589528770", + "DeviceId": "a052ba1d-87b1-4978-835c-2743a894a598", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_428998795", + "DeviceId": "50c6cfe5-0480-4159-b12a-2a82a14cc886", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_930141500", + "DeviceId": "172e0bf1-0370-4379-8b5f-54734e30f0c2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_943885510", + "DeviceId": "f719ba8c-d39b-4920-a330-6faa1ef43ac0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_472414869", + "DeviceId": "07bf3aec-e566-45bd-8a92-1601d5505cf1", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "ce8d2e27-86d7-4e01-833a-3f7a2cb8fde7", + "TenantName": "Tenant-ce8d2e27" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_813236730", + "DeviceId": "6a62c491-ea93-4ae0-b814-02f84dc9e06c", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_736603926", + "DeviceId": "5969ba25-d4c5-49de-b27c-e6ef11d81d77", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_470010317", + "DeviceId": "56a2ec25-42b0-46b4-a878-a350a804d008", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_608912320", + "DeviceId": "8b77a2ac-5c14-4312-bff0-11913634edf2", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_971804608", + "DeviceId": "70dba754-88de-4787-ba6d-6a60976f1db1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_908713254", + "DeviceId": "236af49d-4eb0-4aa0-af9c-a2788c24fbd7", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_487712360", + "DeviceId": "edf77798-d90a-4956-885d-d7984de5fec0", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_154885123", + "DeviceId": "227dd06d-14a4-476f-833f-a3649a9684bd", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_883421066", + "DeviceId": "f18d5abd-d483-4b30-9732-77660afb9d31", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_254207350", + "DeviceId": "0292e2c2-52a1-4186-bd2e-a043543235a2", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_505548272", + "DeviceId": "dae50d40-548c-4f6c-8fde-7ef636ddd7a8", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "e9afb050-24a4-46a3-a845-d23e7e5b3cdd", + "TenantName": "Tenant-e9afb050" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_413881224", + "DeviceId": "05875f98-fb62-4d39-a955-bb3c818b9c83", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_151588955", + "DeviceId": "946cdde2-97e9-47a3-978d-f7706702511d", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_350915712", + "DeviceId": "29d27a71-a21c-41ae-a225-0724b5638f8a", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_374165107", + "DeviceId": "101aa6a5-529e-4faf-a4ec-0b3eec2b3df1", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_286876754", + "DeviceId": "0233e775-6814-4005-8a64-42f4d62ce734", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_758226119", + "DeviceId": "cafa9ae1-edcd-425a-aeaf-9c956ca8b553", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_603904942", + "DeviceId": "fd5d031c-0376-4757-865e-70ebc181b200", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_961291490", + "DeviceId": "336c9573-cd5d-4821-a00d-79a131c21e8d", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_622062342", + "DeviceId": "63fbab38-c76d-436c-9546-683b6ca37880", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_311465232", + "DeviceId": "e08e1849-02c9-4b0d-90eb-f0e41ed1e051", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_854093583", + "DeviceId": "2b40762f-9b11-4f09-a41f-6c9371f56af0", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "4d496abd-3e3f-41d0-8dbb-2e69189b33d2", + "TenantName": "Tenant-4d496abd" + }, + { + "Controllers": [ + { + "DeviceName": "Controller-1", + "DeviceGroupId": "12ed4794-fda9-4187-af34-6da2774b4d28", + "Sensors": [ + { + "DeviceName": "Anise-Sensor-1", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_666868416", + "DeviceId": "f22cd0f3-267b-47b0-883b-ce9dfade6075", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-2", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_514811264", + "DeviceId": "21ff4e3c-3a0a-4b55-a08e-f1ff0977bf16", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-3", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_709659995", + "DeviceId": "a31aa85d-cd1a-4250-b7a7-ff1e5a9265d0", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-4", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_663417984", + "DeviceId": "42f4983c-d18b-4d5b-8d4a-60d7c338fac7", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "Anise-Sensor-5", + "SensorType": "Anise", + "DeviceGroupId": "55892762-da61-4f88-99d1-dc6c93b0f7b3", + "FusionId": "HL001_00119_886053984", + "DeviceId": "3b53449a-01cd-424d-87c5-8b925e3722ad", + "DeviceTypeId": "28dd1baa-a8b8-4066-b9f1-53dc027857f7" + }, + { + "DeviceName": "RTC-Sensor-6", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_278150483", + "DeviceId": "11149853-27a4-4b5e-9c6e-240c42cc9791", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-7", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_915209780", + "DeviceId": "06a3f630-72e2-49c1-893d-fb31d1da3071", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-8", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_525097771", + "DeviceId": "31dc3d50-5f26-4267-b438-2e6c4a903f97", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-9", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_478914342", + "DeviceId": "6696ae3b-31df-4966-991d-322db77274cb", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + }, + { + "DeviceName": "RTC-Sensor-10", + "SensorType": "RTC", + "DeviceGroupId": "32b4784a-e5b3-4db7-bdb1-099af10e142e", + "FusionId": "HL001_00533_408024968", + "DeviceId": "043ecb89-1f00-4925-8845-8b985b9a3af8", + "DeviceTypeId": "f0fb21a9-ac6e-429a-905f-e997d891604c" + } + ], + "FusionId": "HL001_17385_171685982", + "DeviceId": "d88a7791-9f21-4dca-9fcf-713c1ba789ce", + "DeviceTypeId": "27056753-613f-4bc2-8b2f-72d1cdcada36" + } + ], + "TenantId": "a471a2c5-406f-442d-9c61-988eb1307086", + "TenantName": "Tenant-a471a2c5" + } +] diff --git a/src/LoadPerformanceTest/Services/EventHub/EventHubPublisher.cs b/src/LoadPerformanceTest/Services/EventHub/EventHubPublisher.cs index fb1b84f..bd704c4 100644 --- a/src/LoadPerformanceTest/Services/EventHub/EventHubPublisher.cs +++ b/src/LoadPerformanceTest/Services/EventHub/EventHubPublisher.cs @@ -32,6 +32,55 @@ public async Task PublishAsync(string jsonData, string eventType, string tenantI throw new InvalidOperationException("Event is too large for the batch."); await _client.SendAsync(batch, cancellationToken); + } + + /// + /// Publishes multiple events in parallel batches to Event Hub. + /// + public async Task<(int success, int failed)> PublishBulkAsync( + IEnumerable<(string JsonData, string TenantId)> events, + string eventType, + int chunkSize = 50, + int maxParallelism = 9, + CancellationToken cancellationToken = default) + { + var eventDataList = events.Select(e => + { + var data = new EventData(Encoding.UTF8.GetBytes(e.JsonData)); + data.Properties.Add("tenantId", e.TenantId); + data.Properties.Add("eventType", eventType); + return data; + }).ToList(); + + var chunks = eventDataList.Chunk(chunkSize); + int success = 0, failed = 0; + var lockObj = new object(); + + await Parallel.ForEachAsync(chunks, new ParallelOptions + { + MaxDegreeOfParallelism = maxParallelism, + CancellationToken = cancellationToken + }, + async (chunk, ct) => + { + try + { + using EventDataBatch batch = await _client.CreateBatchAsync(ct); + foreach (var eventData in chunk) + { + if (!batch.TryAdd(eventData)) + throw new InvalidOperationException("Event is too large for the batch."); + } + await _client.SendAsync(batch, ct); + lock (lockObj) { success += chunk.Length; } + } + catch (Exception ex) when (ex is not OperationCanceledException) + { + lock (lockObj) { failed += chunk.Length; } + } + }); + + return (success, failed); } diff --git a/src/LoadPerformanceTest/Utilities/InstrumentDataBuilder.cs b/src/LoadPerformanceTest/Utilities/InstrumentDataBuilder.cs index 1685264..7866ee8 100644 --- a/src/LoadPerformanceTest/Utilities/InstrumentDataBuilder.cs +++ b/src/LoadPerformanceTest/Utilities/InstrumentDataBuilder.cs @@ -107,7 +107,7 @@ private static void SetDataTypeSpecificFields(InstrumentData instrumentData, Ins Value = 2, // Set a dummy value or use a default/test value DecimalPrecision = def.Attributes?.DisplayDecimalPoints ?? 2, UnitId = def.UnitTypeId ?? "30d9f576-a6d2-4439-9907-7e147af64508", // Provide default if null - TimestampUtc = DateTime.UtcNow.ToClarosDateTime(), + TimestampUtc = timestamp, }; instrumentData.InstrumentMeasurementDatas.Items.Add( new InstrumentMeasurementData @@ -138,7 +138,7 @@ private static void SetDataTypeSpecificFields(InstrumentData instrumentData, Ins Value = 2, // Set a dummy value or use a default/test value DecimalPrecision = def.Attributes?.DisplayDecimalPoints ?? 2, UnitId = "30d9f576-a6d2-4439-9907-7e147af64508", - TimestampUtc = DateTime.UtcNow.ToClarosDateTime(), + TimestampUtc = timestamp, }; instrumentData.InstrumentMeasurementDatas.Items.Add( new InstrumentMeasurementData @@ -206,7 +206,7 @@ public static ClarosJsonTicksDateTime ToClarosDateTime(this DateTime dateTime) { return new ClarosJsonTicksDateTime { - JsonDateTime = dateTime.ToUtc().ToString("O") + Ticks = (ulong)dateTime.ToUtc().Ticks }; }