@itentialopensource/adapter-sevone 2.2.4 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (311) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +169 -0
  4. package/CHANGELOG.md +59 -89
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +88 -74
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +225 -502
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +18786 -55
  14. package/adapterBase.js +1021 -245
  15. package/entities/.generic/action.json +110 -5
  16. package/entities/.generic/schema.json +6 -1
  17. package/entities/ApiKeys/action.json +206 -0
  18. package/entities/ApiKeys/mockdatafiles/createApiKey-default.json +7 -0
  19. package/entities/ApiKeys/mockdatafiles/createApiKeyForUser-default.json +7 -0
  20. package/entities/ApiKeys/mockdatafiles/getApiKeys-default.json +9 -0
  21. package/entities/ApiKeys/mockdatafiles/getApiKeysForUser-default.json +23 -0
  22. package/entities/ApiKeys/mockdatafiles/updateApiKey-default.json +7 -0
  23. package/entities/ApiKeys/mockdatafiles/updateApiKeyForUser-default.json +7 -0
  24. package/entities/ApiKeys/schema.json +28 -0
  25. package/entities/Application/action.json +66 -0
  26. package/entities/Application/mockdatafiles/getVersion-default.json +6 -0
  27. package/entities/Application/mockdatafiles/postLoggingLevel-default.json +5 -0
  28. package/entities/Application/schema.json +21 -0
  29. package/entities/Authentication/action.json +126 -0
  30. package/entities/Authentication/mockdatafiles/getActiveSessions-default.json +26 -0
  31. package/entities/Authentication/mockdatafiles/signIn-default.json +3 -0
  32. package/entities/Authentication/schema.json +24 -0
  33. package/entities/CountriesAndTimezones/action.json +25 -0
  34. package/entities/CountriesAndTimezones/mockdatafiles/getTimezonesByCountries-default.json +30 -0
  35. package/entities/CountriesAndTimezones/schema.json +19 -0
  36. package/entities/DeviceComponent/action.json +24 -0
  37. package/entities/DeviceComponent/mockdatafiles/partiallyUpdateObjectById-default.json +193 -0
  38. package/entities/DeviceComponent/schema.json +19 -0
  39. package/entities/DeviceComponentGroup/action.json +24 -0
  40. package/entities/DeviceComponentGroup/mockdatafiles/partiallyUpdateObjectGroupById-default.json +1227 -0
  41. package/entities/DeviceComponentGroup/schema.json +19 -0
  42. package/entities/DeviceGroup/action.json +45 -0
  43. package/entities/DeviceGroup/mockdatafiles/getDeviceTagsById-default.json +5 -0
  44. package/entities/DeviceGroup/mockdatafiles/partiallyUpdateDeviceGroupById-default.json +1352 -0
  45. package/entities/DeviceGroup/schema.json +20 -0
  46. package/entities/DeviceGroupRules/action.json +127 -0
  47. package/entities/DeviceGroupRules/mockdatafiles/createDeviceGroupRule-default.json +16 -0
  48. package/entities/DeviceGroupRules/mockdatafiles/deleteDeviceGroupRule-default.json +5 -0
  49. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRule-default.json +16 -0
  50. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRules-default.json +88 -0
  51. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupsRules-default.json +168 -0
  52. package/entities/DeviceGroupRules/mockdatafiles/updateDeviceGroupRule-default.json +16 -0
  53. package/entities/DeviceGroupRules/schema.json +24 -0
  54. package/entities/DeviceTypes/action.json +147 -0
  55. package/entities/DeviceTypes/mockdatafiles/createDeviceType-default.json +446 -0
  56. package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeById-default.json +5 -0
  57. package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeMemberById-default.json +5 -0
  58. package/entities/DeviceTypes/mockdatafiles/getDeviceTypeById-default.json +1350 -0
  59. package/entities/DeviceTypes/mockdatafiles/getDeviceTypeForDeviceById-default.json +22 -0
  60. package/entities/DeviceTypes/mockdatafiles/getDeviceTypes-default.json +4274 -0
  61. package/entities/DeviceTypes/schema.json +25 -0
  62. package/entities/Discovery/action.json +86 -0
  63. package/entities/Discovery/mockdatafiles/filterDevicesInDiscovery-default.json +442 -0
  64. package/entities/Discovery/mockdatafiles/getDeviceStatusById-default.json +224 -0
  65. package/entities/Discovery/mockdatafiles/getDevicesInDiscovery-default.json +1826 -0
  66. package/entities/Discovery/mockdatafiles/updateDevicePriority-default.json +100 -0
  67. package/entities/Discovery/schema.json +22 -0
  68. package/entities/DynamicPlugin/action.json +44 -0
  69. package/entities/DynamicPlugin/mockdatafiles/registerDynamicPlugin-default.json +42 -0
  70. package/entities/DynamicPlugin/mockdatafiles/registerDynamicPluginManager-default.json +6 -0
  71. package/entities/DynamicPlugin/schema.json +20 -0
  72. package/entities/ObjectGroupRules/action.json +147 -0
  73. package/entities/ObjectGroupRules/mockdatafiles/applyObjectGroupRules-default.json +5 -0
  74. package/entities/ObjectGroupRules/mockdatafiles/createObjectGroupRule-default.json +14 -0
  75. package/entities/ObjectGroupRules/mockdatafiles/deleteObjectGroupRule-default.json +5 -0
  76. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRule-default.json +14 -0
  77. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRules-default.json +148 -0
  78. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupsRules-default.json +36 -0
  79. package/entities/ObjectGroupRules/mockdatafiles/updateObjectGroupRule-default.json +14 -0
  80. package/entities/ObjectGroupRules/schema.json +25 -0
  81. package/entities/Peers/action.json +150 -0
  82. package/entities/Peers/mockdatafiles/editIncorporateModeUsingPATCH-default.json +5 -0
  83. package/entities/Peers/mockdatafiles/getCurrentPeerUsingGET-default.json +27 -0
  84. package/entities/Peers/mockdatafiles/getIncorporateModeUsingGET-default.json +5 -0
  85. package/entities/Peers/mockdatafiles/getPeerUsingGET-default.json +27 -0
  86. package/entities/Peers/mockdatafiles/getPeersUsingGET-default.json +197 -0
  87. package/entities/Peers/schema.json +25 -0
  88. package/entities/Plugins/action.json +292 -0
  89. package/entities/Plugins/mockdatafiles/createPluginIndicatorType-default.json +16 -0
  90. package/entities/Plugins/mockdatafiles/createPluginObjectType-default.json +9 -0
  91. package/entities/Plugins/mockdatafiles/filterPluginIndicatorTypes-default.json +88 -0
  92. package/entities/Plugins/mockdatafiles/filterPluginObjectTypes-default.json +98 -0
  93. package/entities/Plugins/mockdatafiles/getAllPluginIndicatorTypes-default.json +72 -0
  94. package/entities/Plugins/mockdatafiles/getAllPluginObjectTypes-default.json +35 -0
  95. package/entities/Plugins/mockdatafiles/getAllPlugins-default.json +29 -0
  96. package/entities/Plugins/mockdatafiles/updatePluginIndicatorType-default.json +16 -0
  97. package/entities/Plugins/mockdatafiles/updatePluginObjectType-default.json +9 -0
  98. package/entities/Plugins/schema.json +32 -0
  99. package/entities/Policies/action.json +370 -0
  100. package/entities/Policies/mockdatafiles/createPolicy-default.json +298 -0
  101. package/entities/Policies/mockdatafiles/createPolicyCondition-default.json +14 -0
  102. package/entities/Policies/mockdatafiles/createPolicyFolder-default.json +5 -0
  103. package/entities/Policies/mockdatafiles/deletePolicyActionById-default.json +5 -0
  104. package/entities/Policies/mockdatafiles/deletePolicyById-default.json +5 -0
  105. package/entities/Policies/mockdatafiles/deletePolicyConditionById-default.json +5 -0
  106. package/entities/Policies/mockdatafiles/deletePolicyFolderById-default.json +5 -0
  107. package/entities/Policies/mockdatafiles/filterPolicies-default.json +1709 -0
  108. package/entities/Policies/mockdatafiles/findAllUsingGET-default.json +106 -0
  109. package/entities/Policies/mockdatafiles/getActionsUsingGET-default.json +53 -0
  110. package/entities/Policies/mockdatafiles/getPolicies-default.json +1318 -0
  111. package/entities/Policies/mockdatafiles/getPolicy-default.json +73 -0
  112. package/entities/Policies/mockdatafiles/getPolicyConditionById-default.json +14 -0
  113. package/entities/Policies/mockdatafiles/getPolicyFolders-default.json +13 -0
  114. package/entities/Policies/mockdatafiles/updatePolicy-default.json +97 -0
  115. package/entities/Policies/mockdatafiles/updatePolicyAction-default.json +41 -0
  116. package/entities/Policies/mockdatafiles/updatePolicyCondition-default.json +14 -0
  117. package/entities/Policies/mockdatafiles/updatePolicyFolder-default.json +5 -0
  118. package/entities/Policies/schema.json +36 -0
  119. package/entities/ReportAttachments/action.json +107 -0
  120. package/entities/ReportAttachments/mockdatafiles/deleteReportAttachment-default.json +5 -0
  121. package/entities/ReportAttachments/mockdatafiles/getAllReportAttachments-default.json +26 -0
  122. package/entities/ReportAttachments/mockdatafiles/getReportAttachment-default.json +3 -0
  123. package/entities/ReportAttachments/mockdatafiles/updateReportAttachmentById-default.json +3 -0
  124. package/entities/ReportAttachments/schema.json +23 -0
  125. package/entities/ReportAttachmentsAlerts/action.json +311 -0
  126. package/entities/ReportAttachmentsAlerts/mockdatafiles/createAlertAttachment-default.json +122 -0
  127. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentAggregation-default.json +3 -0
  128. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilterSchema-default.json +218 -0
  129. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilters-default.json +17 -0
  130. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentResource-default.json +15 -0
  131. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentSettings-default.json +67 -0
  132. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentTimeSettings-default.json +8 -0
  133. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentVisualizationSettings-default.json +59 -0
  134. package/entities/ReportAttachmentsAlerts/mockdatafiles/partiallyUpdateAlertAttachmentVisualizationSettings-default.json +65 -0
  135. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentAggregation-default.json +3 -0
  136. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentFilters-default.json +102 -0
  137. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentResource-default.json +10 -0
  138. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentSettings-default.json +52 -0
  139. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentTimeSettings-default.json +8 -0
  140. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentVisualizationSettings-default.json +65 -0
  141. package/entities/ReportAttachmentsAlerts/schema.json +33 -0
  142. package/entities/ReportAttachmentsDeviceGroups/action.json +106 -0
  143. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/createDeviceGroupsAttachment-default.json +46 -0
  144. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachment-default.json +12 -0
  145. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachmentVisualization-default.json +28 -0
  146. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachment-default.json +9 -0
  147. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachmentVisualization-default.json +38 -0
  148. package/entities/ReportAttachmentsDeviceGroups/schema.json +23 -0
  149. package/entities/ReportAttachmentsDevices/action.json +209 -0
  150. package/entities/ReportAttachmentsDevices/mockdatafiles/createDeviceAttachment-default.json +81 -0
  151. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachment-default.json +12 -0
  152. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilterSchema-default.json +4 -0
  153. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilters-default.json +90 -0
  154. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentSettings-default.json +72 -0
  155. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentVisualization-default.json +36 -0
  156. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachment-default.json +6 -0
  157. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentFilters-default.json +36 -0
  158. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentSettings-default.json +56 -0
  159. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentVisualization-default.json +39 -0
  160. package/entities/ReportAttachmentsDevices/schema.json +28 -0
  161. package/entities/ReportAttachmentsFlowFalcon/action.json +290 -0
  162. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/createFlowFalconAttachment-default.json +243 -0
  163. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilterSchema-default.json +4 -0
  164. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilters-default.json +138 -0
  165. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentResources-default.json +64 -0
  166. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentSettings-default.json +80 -0
  167. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentTimeSettings-default.json +8 -0
  168. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentVisualizationSettings-default.json +71 -0
  169. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentSettings-default.json +48 -0
  170. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentVisualizationSettings-default.json +67 -0
  171. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentFilters-default.json +58 -0
  172. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentResources-default.json +52 -0
  173. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentSettings-default.json +71 -0
  174. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentTimeSettings-default.json +8 -0
  175. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentVisualizationSettings-default.json +56 -0
  176. package/entities/ReportAttachmentsFlowFalcon/schema.json +32 -0
  177. package/entities/ReportAttachmentsGroupMetrics/action.json +188 -0
  178. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/createGroupMetricsAttachment-default.json +208 -0
  179. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachment-default.json +172 -0
  180. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentSettings-default.json +47 -0
  181. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentTimeSettings-default.json +8 -0
  182. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentVisualization-default.json +34 -0
  183. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachment-default.json +207 -0
  184. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentSettings-default.json +62 -0
  185. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentTimeSettings-default.json +8 -0
  186. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentVisualization-default.json +30 -0
  187. package/entities/ReportAttachmentsGroupMetrics/schema.json +27 -0
  188. package/entities/ReportAttachmentsMetadata/action.json +126 -0
  189. package/entities/ReportAttachmentsMetadata/mockdatafiles/createMetadataAttachment-default.json +41 -0
  190. package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentResources-default.json +12 -0
  191. package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentVisualizationSettings-default.json +33 -0
  192. package/entities/ReportAttachmentsMetadata/mockdatafiles/partiallyUpdateMetadataAttachmentVisualizationSettings-default.json +27 -0
  193. package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentResources-default.json +9 -0
  194. package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentVisualizationSettings-default.json +33 -0
  195. package/entities/ReportAttachmentsMetadata/schema.json +24 -0
  196. package/entities/ReportAttachmentsObjectGroups/action.json +126 -0
  197. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/createObjectGroupAttachment-default.json +54 -0
  198. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentResources-default.json +11 -0
  199. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentVisualizationSettings-default.json +41 -0
  200. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/partiallyUpdateObjectGroupAttachmentVisualizationSettings-default.json +35 -0
  201. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentResources-default.json +16 -0
  202. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentVisualizationSettings-default.json +36 -0
  203. package/entities/ReportAttachmentsObjectGroups/schema.json +24 -0
  204. package/entities/ReportAttachmentsObjects/action.json +167 -0
  205. package/entities/ReportAttachmentsObjects/mockdatafiles/createObjectAttachment-default.json +51 -0
  206. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentResources-default.json +10 -0
  207. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentSettings-default.json +5 -0
  208. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentVisualizationSettings-default.json +32 -0
  209. package/entities/ReportAttachmentsObjects/mockdatafiles/partiallyUpdateObjectAttachmentVisualizationSettings-default.json +31 -0
  210. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentResources-default.json +10 -0
  211. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentSettings-default.json +5 -0
  212. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentVisualizationSettings-default.json +35 -0
  213. package/entities/ReportAttachmentsObjects/schema.json +26 -0
  214. package/entities/ReportAttachmentsPerformanceMetrics/action.json +228 -0
  215. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/createPerformanceMetricsAttachment-default.json +275 -0
  216. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentResources-default.json +53 -0
  217. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentSettings-default.json +92 -0
  218. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentTimeSettings-default.json +8 -0
  219. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentVisualizationSettings-default.json +124 -0
  220. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentSettings-default.json +81 -0
  221. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentVisualizationSettings-default.json +126 -0
  222. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentResources-default.json +46 -0
  223. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentSettings-default.json +139 -0
  224. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentTimeSettings-default.json +8 -0
  225. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentVisualizationSettings-default.json +122 -0
  226. package/entities/ReportAttachmentsPerformanceMetrics/schema.json +29 -0
  227. package/entities/ReportAttachmentsStatusMap/action.json +65 -0
  228. package/entities/ReportAttachmentsStatusMap/mockdatafiles/createStatusMapAttachment-default.json +9 -0
  229. package/entities/ReportAttachmentsStatusMap/mockdatafiles/getStatusMapAttachmentResources-default.json +3 -0
  230. package/entities/ReportAttachmentsStatusMap/mockdatafiles/updateStatusMapAttachmentResources-default.json +3 -0
  231. package/entities/ReportAttachmentsStatusMap/schema.json +21 -0
  232. package/entities/ReportAttachmentsTelephony/action.json +188 -0
  233. package/entities/ReportAttachmentsTelephony/mockdatafiles/createTelephonyAttachment-default.json +57 -0
  234. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentAggregation-default.json +3 -0
  235. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentSettings-default.json +9 -0
  236. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentTimeSettings-default.json +8 -0
  237. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentVisualizationSettings-default.json +35 -0
  238. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentAggregation-default.json +3 -0
  239. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentSettings-default.json +9 -0
  240. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentTimeSettings-default.json +8 -0
  241. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentVisualizationSettings-default.json +33 -0
  242. package/entities/ReportAttachmentsTelephony/schema.json +27 -0
  243. package/entities/ReportAttachmentsTopN/action.json +228 -0
  244. package/entities/ReportAttachmentsTopN/mockdatafiles/createTopNAttachment-default.json +111 -0
  245. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentResources-default.json +8 -0
  246. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentSettings-default.json +129 -0
  247. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentTimeSettings-default.json +8 -0
  248. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentVisualizationSettings-default.json +44 -0
  249. package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentSettings-default.json +140 -0
  250. package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentVisualizationSettings-default.json +47 -0
  251. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentResources-default.json +13 -0
  252. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentSettings-default.json +39 -0
  253. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentTimeSettings-default.json +8 -0
  254. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentVisualizationSettings-default.json +51 -0
  255. package/entities/ReportAttachmentsTopN/schema.json +29 -0
  256. package/entities/Reports/action.json +187 -0
  257. package/entities/Reports/mockdatafiles/createReport-default.json +24 -0
  258. package/entities/Reports/mockdatafiles/createReportFolder-default.json +5 -0
  259. package/entities/Reports/mockdatafiles/deleteReportById-default.json +5 -0
  260. package/entities/Reports/mockdatafiles/deleteReportFolderById-default.json +5 -0
  261. package/entities/Reports/mockdatafiles/getAllReportFolders-default.json +48 -0
  262. package/entities/Reports/mockdatafiles/getAllReports-default.json +32 -0
  263. package/entities/Reports/mockdatafiles/getReport-default.json +24 -0
  264. package/entities/Reports/mockdatafiles/updateReportById-default.json +24 -0
  265. package/entities/Reports/mockdatafiles/updateReportFolderById-default.json +5 -0
  266. package/entities/Reports/schema.json +27 -0
  267. package/entities/StatusMapImages/action.json +46 -0
  268. package/entities/StatusMapImages/mockdatafiles/getMapImages-default.json +14 -0
  269. package/entities/StatusMapImages/schema.json +20 -0
  270. package/entities/Users/action.json +25 -0
  271. package/entities/Users/mockdatafiles/getCurrentUser-default.json +26 -0
  272. package/entities/Users/schema.json +19 -0
  273. package/entities/alert/action.json +81 -0
  274. package/entities/alert/mockdatafiles/createAlertForced-default.json +27 -0
  275. package/entities/alert/mockdatafiles/getFlowFalconDeviceAlerts-default.json +48 -0
  276. package/entities/alert/mockdatafiles/getMaxSeverityAlertForObjects-default.json +14 -0
  277. package/entities/alert/mockdatafiles/patchAlert-default.json +36 -0
  278. package/entities/alert/schema.json +8 -2
  279. package/entities/device/action.json +20 -0
  280. package/entities/device/mockdatafiles/getdeviceerror.json +1 -58
  281. package/entities/device/mockdatafiles/partiallyUpdateDeviceById-default.json +103 -0
  282. package/entities/device/schema.json +2 -1
  283. package/entities/map/action.json +20 -0
  284. package/entities/map/mockdatafiles/partiallyUpdateStatusMapById-default.json +534 -0
  285. package/entities/map/schema.json +2 -1
  286. package/error.json +12 -0
  287. package/package.json +20 -13
  288. package/pronghorn.json +34868 -2005
  289. package/propertiesDecorators.json +14 -0
  290. package/propertiesSchema.json +436 -0
  291. package/refs?service=git-upload-pack +0 -0
  292. package/report/adapterInfo.json +10 -0
  293. package/report/updateReport1653680202971.json +120 -0
  294. package/sampleProperties.json +94 -2
  295. package/test/integration/adapterTestBasicGet.js +2 -2
  296. package/test/integration/adapterTestIntegration.js +8011 -105
  297. package/test/unit/adapterBaseTestUnit.js +35 -27
  298. package/test/unit/adapterTestUnit.js +7948 -145
  299. package/utils/adapterInfo.js +206 -0
  300. package/utils/addAuth.js +94 -0
  301. package/utils/basicGet.js +1 -14
  302. package/utils/entitiesToDB.js +179 -0
  303. package/utils/modify.js +1 -1
  304. package/utils/packModificationScript.js +1 -1
  305. package/utils/patches2bundledDeps.js +90 -0
  306. package/utils/pre-commit.sh +3 -0
  307. package/utils/removeHooks.js +20 -0
  308. package/utils/tbScript.js +43 -22
  309. package/utils/tbUtils.js +126 -29
  310. package/utils/testRunner.js +16 -16
  311. package/utils/troubleshootingAdapter.js +2 -26
@@ -0,0 +1,4274 @@
1
+ {
2
+ "content": [
3
+ {
4
+ "deviceType": {
5
+ "id": 10,
6
+ "name": "string",
7
+ "parentId": 1
8
+ },
9
+ "objectTypes": [
10
+ {
11
+ "extendedInfo": {},
12
+ "id": 9,
13
+ "indicatorTypes": [
14
+ {
15
+ "allowMaximumValue": {},
16
+ "dataUnits": {},
17
+ "description": {},
18
+ "displayUnits": {},
19
+ "extendedInfo": {},
20
+ "format": {},
21
+ "id": {},
22
+ "isDefault": {},
23
+ "isEnabled": {},
24
+ "name": {},
25
+ "pluginId": {},
26
+ "pluginObjectTypeId": {},
27
+ "syntheticExpression": {},
28
+ "syntheticMaximumExpression": {}
29
+ },
30
+ {
31
+ "allowMaximumValue": {},
32
+ "dataUnits": {},
33
+ "description": {},
34
+ "displayUnits": {},
35
+ "extendedInfo": {},
36
+ "format": {},
37
+ "id": {},
38
+ "isDefault": {},
39
+ "isEnabled": {},
40
+ "name": {},
41
+ "pluginId": {},
42
+ "pluginObjectTypeId": {},
43
+ "syntheticExpression": {},
44
+ "syntheticMaximumExpression": {}
45
+ },
46
+ {
47
+ "allowMaximumValue": {},
48
+ "dataUnits": {},
49
+ "description": {},
50
+ "displayUnits": {},
51
+ "extendedInfo": {},
52
+ "format": {},
53
+ "id": {},
54
+ "isDefault": {},
55
+ "isEnabled": {},
56
+ "name": {},
57
+ "pluginId": {},
58
+ "pluginObjectTypeId": {},
59
+ "syntheticExpression": {},
60
+ "syntheticMaximumExpression": {}
61
+ },
62
+ {
63
+ "allowMaximumValue": {},
64
+ "dataUnits": {},
65
+ "description": {},
66
+ "displayUnits": {},
67
+ "extendedInfo": {},
68
+ "format": {},
69
+ "id": {},
70
+ "isDefault": {},
71
+ "isEnabled": {},
72
+ "name": {},
73
+ "pluginId": {},
74
+ "pluginObjectTypeId": {},
75
+ "syntheticExpression": {},
76
+ "syntheticMaximumExpression": {}
77
+ },
78
+ {
79
+ "allowMaximumValue": {},
80
+ "dataUnits": {},
81
+ "description": {},
82
+ "displayUnits": {},
83
+ "extendedInfo": {},
84
+ "format": {},
85
+ "id": {},
86
+ "isDefault": {},
87
+ "isEnabled": {},
88
+ "name": {},
89
+ "pluginId": {},
90
+ "pluginObjectTypeId": {},
91
+ "syntheticExpression": {},
92
+ "syntheticMaximumExpression": {}
93
+ },
94
+ {
95
+ "allowMaximumValue": {},
96
+ "dataUnits": {},
97
+ "description": {},
98
+ "displayUnits": {},
99
+ "extendedInfo": {},
100
+ "format": {},
101
+ "id": {},
102
+ "isDefault": {},
103
+ "isEnabled": {},
104
+ "name": {},
105
+ "pluginId": {},
106
+ "pluginObjectTypeId": {},
107
+ "syntheticExpression": {},
108
+ "syntheticMaximumExpression": {}
109
+ },
110
+ {
111
+ "allowMaximumValue": {},
112
+ "dataUnits": {},
113
+ "description": {},
114
+ "displayUnits": {},
115
+ "extendedInfo": {},
116
+ "format": {},
117
+ "id": {},
118
+ "isDefault": {},
119
+ "isEnabled": {},
120
+ "name": {},
121
+ "pluginId": {},
122
+ "pluginObjectTypeId": {},
123
+ "syntheticExpression": {},
124
+ "syntheticMaximumExpression": {}
125
+ },
126
+ {
127
+ "allowMaximumValue": {},
128
+ "dataUnits": {},
129
+ "description": {},
130
+ "displayUnits": {},
131
+ "extendedInfo": {},
132
+ "format": {},
133
+ "id": {},
134
+ "isDefault": {},
135
+ "isEnabled": {},
136
+ "name": {},
137
+ "pluginId": {},
138
+ "pluginObjectTypeId": {},
139
+ "syntheticExpression": {},
140
+ "syntheticMaximumExpression": {}
141
+ },
142
+ {
143
+ "allowMaximumValue": {},
144
+ "dataUnits": {},
145
+ "description": {},
146
+ "displayUnits": {},
147
+ "extendedInfo": {},
148
+ "format": {},
149
+ "id": {},
150
+ "isDefault": {},
151
+ "isEnabled": {},
152
+ "name": {},
153
+ "pluginId": {},
154
+ "pluginObjectTypeId": {},
155
+ "syntheticExpression": {},
156
+ "syntheticMaximumExpression": {}
157
+ },
158
+ {
159
+ "allowMaximumValue": {},
160
+ "dataUnits": {},
161
+ "description": {},
162
+ "displayUnits": {},
163
+ "extendedInfo": {},
164
+ "format": {},
165
+ "id": {},
166
+ "isDefault": {},
167
+ "isEnabled": {},
168
+ "name": {},
169
+ "pluginId": {},
170
+ "pluginObjectTypeId": {},
171
+ "syntheticExpression": {},
172
+ "syntheticMaximumExpression": {}
173
+ }
174
+ ],
175
+ "isEditable": false,
176
+ "isEnabled": true,
177
+ "name": "string",
178
+ "objectTypes": [
179
+ {
180
+ "extendedInfo": {},
181
+ "id": {},
182
+ "indicatorTypes": {},
183
+ "isEditable": {},
184
+ "isEnabled": {},
185
+ "name": {},
186
+ "objectTypes": {},
187
+ "parentObjectTypeId": {},
188
+ "pluginId": {}
189
+ },
190
+ {
191
+ "extendedInfo": {},
192
+ "id": {},
193
+ "indicatorTypes": {},
194
+ "isEditable": {},
195
+ "isEnabled": {},
196
+ "name": {},
197
+ "objectTypes": {},
198
+ "parentObjectTypeId": {},
199
+ "pluginId": {}
200
+ },
201
+ {
202
+ "extendedInfo": {},
203
+ "id": {},
204
+ "indicatorTypes": {},
205
+ "isEditable": {},
206
+ "isEnabled": {},
207
+ "name": {},
208
+ "objectTypes": {},
209
+ "parentObjectTypeId": {},
210
+ "pluginId": {}
211
+ },
212
+ {
213
+ "extendedInfo": {},
214
+ "id": {},
215
+ "indicatorTypes": {},
216
+ "isEditable": {},
217
+ "isEnabled": {},
218
+ "name": {},
219
+ "objectTypes": {},
220
+ "parentObjectTypeId": {},
221
+ "pluginId": {}
222
+ },
223
+ {
224
+ "extendedInfo": {},
225
+ "id": {},
226
+ "indicatorTypes": {},
227
+ "isEditable": {},
228
+ "isEnabled": {},
229
+ "name": {},
230
+ "objectTypes": {},
231
+ "parentObjectTypeId": {},
232
+ "pluginId": {}
233
+ },
234
+ {
235
+ "extendedInfo": {},
236
+ "id": {},
237
+ "indicatorTypes": {},
238
+ "isEditable": {},
239
+ "isEnabled": {},
240
+ "name": {},
241
+ "objectTypes": {},
242
+ "parentObjectTypeId": {},
243
+ "pluginId": {}
244
+ }
245
+ ],
246
+ "parentObjectTypeId": 9,
247
+ "pluginId": 1
248
+ },
249
+ {
250
+ "extendedInfo": {},
251
+ "id": 2,
252
+ "indicatorTypes": [
253
+ {
254
+ "allowMaximumValue": {},
255
+ "dataUnits": {},
256
+ "description": {},
257
+ "displayUnits": {},
258
+ "extendedInfo": {},
259
+ "format": {},
260
+ "id": {},
261
+ "isDefault": {},
262
+ "isEnabled": {},
263
+ "name": {},
264
+ "pluginId": {},
265
+ "pluginObjectTypeId": {},
266
+ "syntheticExpression": {},
267
+ "syntheticMaximumExpression": {}
268
+ },
269
+ {
270
+ "allowMaximumValue": {},
271
+ "dataUnits": {},
272
+ "description": {},
273
+ "displayUnits": {},
274
+ "extendedInfo": {},
275
+ "format": {},
276
+ "id": {},
277
+ "isDefault": {},
278
+ "isEnabled": {},
279
+ "name": {},
280
+ "pluginId": {},
281
+ "pluginObjectTypeId": {},
282
+ "syntheticExpression": {},
283
+ "syntheticMaximumExpression": {}
284
+ },
285
+ {
286
+ "allowMaximumValue": {},
287
+ "dataUnits": {},
288
+ "description": {},
289
+ "displayUnits": {},
290
+ "extendedInfo": {},
291
+ "format": {},
292
+ "id": {},
293
+ "isDefault": {},
294
+ "isEnabled": {},
295
+ "name": {},
296
+ "pluginId": {},
297
+ "pluginObjectTypeId": {},
298
+ "syntheticExpression": {},
299
+ "syntheticMaximumExpression": {}
300
+ },
301
+ {
302
+ "allowMaximumValue": {},
303
+ "dataUnits": {},
304
+ "description": {},
305
+ "displayUnits": {},
306
+ "extendedInfo": {},
307
+ "format": {},
308
+ "id": {},
309
+ "isDefault": {},
310
+ "isEnabled": {},
311
+ "name": {},
312
+ "pluginId": {},
313
+ "pluginObjectTypeId": {},
314
+ "syntheticExpression": {},
315
+ "syntheticMaximumExpression": {}
316
+ },
317
+ {
318
+ "allowMaximumValue": {},
319
+ "dataUnits": {},
320
+ "description": {},
321
+ "displayUnits": {},
322
+ "extendedInfo": {},
323
+ "format": {},
324
+ "id": {},
325
+ "isDefault": {},
326
+ "isEnabled": {},
327
+ "name": {},
328
+ "pluginId": {},
329
+ "pluginObjectTypeId": {},
330
+ "syntheticExpression": {},
331
+ "syntheticMaximumExpression": {}
332
+ },
333
+ {
334
+ "allowMaximumValue": {},
335
+ "dataUnits": {},
336
+ "description": {},
337
+ "displayUnits": {},
338
+ "extendedInfo": {},
339
+ "format": {},
340
+ "id": {},
341
+ "isDefault": {},
342
+ "isEnabled": {},
343
+ "name": {},
344
+ "pluginId": {},
345
+ "pluginObjectTypeId": {},
346
+ "syntheticExpression": {},
347
+ "syntheticMaximumExpression": {}
348
+ },
349
+ {
350
+ "allowMaximumValue": {},
351
+ "dataUnits": {},
352
+ "description": {},
353
+ "displayUnits": {},
354
+ "extendedInfo": {},
355
+ "format": {},
356
+ "id": {},
357
+ "isDefault": {},
358
+ "isEnabled": {},
359
+ "name": {},
360
+ "pluginId": {},
361
+ "pluginObjectTypeId": {},
362
+ "syntheticExpression": {},
363
+ "syntheticMaximumExpression": {}
364
+ },
365
+ {
366
+ "allowMaximumValue": {},
367
+ "dataUnits": {},
368
+ "description": {},
369
+ "displayUnits": {},
370
+ "extendedInfo": {},
371
+ "format": {},
372
+ "id": {},
373
+ "isDefault": {},
374
+ "isEnabled": {},
375
+ "name": {},
376
+ "pluginId": {},
377
+ "pluginObjectTypeId": {},
378
+ "syntheticExpression": {},
379
+ "syntheticMaximumExpression": {}
380
+ },
381
+ {
382
+ "allowMaximumValue": {},
383
+ "dataUnits": {},
384
+ "description": {},
385
+ "displayUnits": {},
386
+ "extendedInfo": {},
387
+ "format": {},
388
+ "id": {},
389
+ "isDefault": {},
390
+ "isEnabled": {},
391
+ "name": {},
392
+ "pluginId": {},
393
+ "pluginObjectTypeId": {},
394
+ "syntheticExpression": {},
395
+ "syntheticMaximumExpression": {}
396
+ },
397
+ {
398
+ "allowMaximumValue": {},
399
+ "dataUnits": {},
400
+ "description": {},
401
+ "displayUnits": {},
402
+ "extendedInfo": {},
403
+ "format": {},
404
+ "id": {},
405
+ "isDefault": {},
406
+ "isEnabled": {},
407
+ "name": {},
408
+ "pluginId": {},
409
+ "pluginObjectTypeId": {},
410
+ "syntheticExpression": {},
411
+ "syntheticMaximumExpression": {}
412
+ }
413
+ ],
414
+ "isEditable": true,
415
+ "isEnabled": true,
416
+ "name": "string",
417
+ "objectTypes": [
418
+ {
419
+ "extendedInfo": {},
420
+ "id": {},
421
+ "indicatorTypes": {},
422
+ "isEditable": {},
423
+ "isEnabled": {},
424
+ "name": {},
425
+ "objectTypes": {},
426
+ "parentObjectTypeId": {},
427
+ "pluginId": {}
428
+ },
429
+ {
430
+ "extendedInfo": {},
431
+ "id": {},
432
+ "indicatorTypes": {},
433
+ "isEditable": {},
434
+ "isEnabled": {},
435
+ "name": {},
436
+ "objectTypes": {},
437
+ "parentObjectTypeId": {},
438
+ "pluginId": {}
439
+ },
440
+ {
441
+ "extendedInfo": {},
442
+ "id": {},
443
+ "indicatorTypes": {},
444
+ "isEditable": {},
445
+ "isEnabled": {},
446
+ "name": {},
447
+ "objectTypes": {},
448
+ "parentObjectTypeId": {},
449
+ "pluginId": {}
450
+ },
451
+ {
452
+ "extendedInfo": {},
453
+ "id": {},
454
+ "indicatorTypes": {},
455
+ "isEditable": {},
456
+ "isEnabled": {},
457
+ "name": {},
458
+ "objectTypes": {},
459
+ "parentObjectTypeId": {},
460
+ "pluginId": {}
461
+ },
462
+ {
463
+ "extendedInfo": {},
464
+ "id": {},
465
+ "indicatorTypes": {},
466
+ "isEditable": {},
467
+ "isEnabled": {},
468
+ "name": {},
469
+ "objectTypes": {},
470
+ "parentObjectTypeId": {},
471
+ "pluginId": {}
472
+ },
473
+ {
474
+ "extendedInfo": {},
475
+ "id": {},
476
+ "indicatorTypes": {},
477
+ "isEditable": {},
478
+ "isEnabled": {},
479
+ "name": {},
480
+ "objectTypes": {},
481
+ "parentObjectTypeId": {},
482
+ "pluginId": {}
483
+ },
484
+ {
485
+ "extendedInfo": {},
486
+ "id": {},
487
+ "indicatorTypes": {},
488
+ "isEditable": {},
489
+ "isEnabled": {},
490
+ "name": {},
491
+ "objectTypes": {},
492
+ "parentObjectTypeId": {},
493
+ "pluginId": {}
494
+ },
495
+ {
496
+ "extendedInfo": {},
497
+ "id": {},
498
+ "indicatorTypes": {},
499
+ "isEditable": {},
500
+ "isEnabled": {},
501
+ "name": {},
502
+ "objectTypes": {},
503
+ "parentObjectTypeId": {},
504
+ "pluginId": {}
505
+ }
506
+ ],
507
+ "parentObjectTypeId": 5,
508
+ "pluginId": 2
509
+ },
510
+ {
511
+ "extendedInfo": {},
512
+ "id": 8,
513
+ "indicatorTypes": [
514
+ {
515
+ "allowMaximumValue": {},
516
+ "dataUnits": {},
517
+ "description": {},
518
+ "displayUnits": {},
519
+ "extendedInfo": {},
520
+ "format": {},
521
+ "id": {},
522
+ "isDefault": {},
523
+ "isEnabled": {},
524
+ "name": {},
525
+ "pluginId": {},
526
+ "pluginObjectTypeId": {},
527
+ "syntheticExpression": {},
528
+ "syntheticMaximumExpression": {}
529
+ },
530
+ {
531
+ "allowMaximumValue": {},
532
+ "dataUnits": {},
533
+ "description": {},
534
+ "displayUnits": {},
535
+ "extendedInfo": {},
536
+ "format": {},
537
+ "id": {},
538
+ "isDefault": {},
539
+ "isEnabled": {},
540
+ "name": {},
541
+ "pluginId": {},
542
+ "pluginObjectTypeId": {},
543
+ "syntheticExpression": {},
544
+ "syntheticMaximumExpression": {}
545
+ },
546
+ {
547
+ "allowMaximumValue": {},
548
+ "dataUnits": {},
549
+ "description": {},
550
+ "displayUnits": {},
551
+ "extendedInfo": {},
552
+ "format": {},
553
+ "id": {},
554
+ "isDefault": {},
555
+ "isEnabled": {},
556
+ "name": {},
557
+ "pluginId": {},
558
+ "pluginObjectTypeId": {},
559
+ "syntheticExpression": {},
560
+ "syntheticMaximumExpression": {}
561
+ },
562
+ {
563
+ "allowMaximumValue": {},
564
+ "dataUnits": {},
565
+ "description": {},
566
+ "displayUnits": {},
567
+ "extendedInfo": {},
568
+ "format": {},
569
+ "id": {},
570
+ "isDefault": {},
571
+ "isEnabled": {},
572
+ "name": {},
573
+ "pluginId": {},
574
+ "pluginObjectTypeId": {},
575
+ "syntheticExpression": {},
576
+ "syntheticMaximumExpression": {}
577
+ },
578
+ {
579
+ "allowMaximumValue": {},
580
+ "dataUnits": {},
581
+ "description": {},
582
+ "displayUnits": {},
583
+ "extendedInfo": {},
584
+ "format": {},
585
+ "id": {},
586
+ "isDefault": {},
587
+ "isEnabled": {},
588
+ "name": {},
589
+ "pluginId": {},
590
+ "pluginObjectTypeId": {},
591
+ "syntheticExpression": {},
592
+ "syntheticMaximumExpression": {}
593
+ },
594
+ {
595
+ "allowMaximumValue": {},
596
+ "dataUnits": {},
597
+ "description": {},
598
+ "displayUnits": {},
599
+ "extendedInfo": {},
600
+ "format": {},
601
+ "id": {},
602
+ "isDefault": {},
603
+ "isEnabled": {},
604
+ "name": {},
605
+ "pluginId": {},
606
+ "pluginObjectTypeId": {},
607
+ "syntheticExpression": {},
608
+ "syntheticMaximumExpression": {}
609
+ },
610
+ {
611
+ "allowMaximumValue": {},
612
+ "dataUnits": {},
613
+ "description": {},
614
+ "displayUnits": {},
615
+ "extendedInfo": {},
616
+ "format": {},
617
+ "id": {},
618
+ "isDefault": {},
619
+ "isEnabled": {},
620
+ "name": {},
621
+ "pluginId": {},
622
+ "pluginObjectTypeId": {},
623
+ "syntheticExpression": {},
624
+ "syntheticMaximumExpression": {}
625
+ },
626
+ {
627
+ "allowMaximumValue": {},
628
+ "dataUnits": {},
629
+ "description": {},
630
+ "displayUnits": {},
631
+ "extendedInfo": {},
632
+ "format": {},
633
+ "id": {},
634
+ "isDefault": {},
635
+ "isEnabled": {},
636
+ "name": {},
637
+ "pluginId": {},
638
+ "pluginObjectTypeId": {},
639
+ "syntheticExpression": {},
640
+ "syntheticMaximumExpression": {}
641
+ }
642
+ ],
643
+ "isEditable": false,
644
+ "isEnabled": false,
645
+ "name": "string",
646
+ "objectTypes": [
647
+ {
648
+ "extendedInfo": {},
649
+ "id": {},
650
+ "indicatorTypes": {},
651
+ "isEditable": {},
652
+ "isEnabled": {},
653
+ "name": {},
654
+ "objectTypes": {},
655
+ "parentObjectTypeId": {},
656
+ "pluginId": {}
657
+ },
658
+ {
659
+ "extendedInfo": {},
660
+ "id": {},
661
+ "indicatorTypes": {},
662
+ "isEditable": {},
663
+ "isEnabled": {},
664
+ "name": {},
665
+ "objectTypes": {},
666
+ "parentObjectTypeId": {},
667
+ "pluginId": {}
668
+ },
669
+ {
670
+ "extendedInfo": {},
671
+ "id": {},
672
+ "indicatorTypes": {},
673
+ "isEditable": {},
674
+ "isEnabled": {},
675
+ "name": {},
676
+ "objectTypes": {},
677
+ "parentObjectTypeId": {},
678
+ "pluginId": {}
679
+ },
680
+ {
681
+ "extendedInfo": {},
682
+ "id": {},
683
+ "indicatorTypes": {},
684
+ "isEditable": {},
685
+ "isEnabled": {},
686
+ "name": {},
687
+ "objectTypes": {},
688
+ "parentObjectTypeId": {},
689
+ "pluginId": {}
690
+ },
691
+ {
692
+ "extendedInfo": {},
693
+ "id": {},
694
+ "indicatorTypes": {},
695
+ "isEditable": {},
696
+ "isEnabled": {},
697
+ "name": {},
698
+ "objectTypes": {},
699
+ "parentObjectTypeId": {},
700
+ "pluginId": {}
701
+ },
702
+ {
703
+ "extendedInfo": {},
704
+ "id": {},
705
+ "indicatorTypes": {},
706
+ "isEditable": {},
707
+ "isEnabled": {},
708
+ "name": {},
709
+ "objectTypes": {},
710
+ "parentObjectTypeId": {},
711
+ "pluginId": {}
712
+ },
713
+ {
714
+ "extendedInfo": {},
715
+ "id": {},
716
+ "indicatorTypes": {},
717
+ "isEditable": {},
718
+ "isEnabled": {},
719
+ "name": {},
720
+ "objectTypes": {},
721
+ "parentObjectTypeId": {},
722
+ "pluginId": {}
723
+ },
724
+ {
725
+ "extendedInfo": {},
726
+ "id": {},
727
+ "indicatorTypes": {},
728
+ "isEditable": {},
729
+ "isEnabled": {},
730
+ "name": {},
731
+ "objectTypes": {},
732
+ "parentObjectTypeId": {},
733
+ "pluginId": {}
734
+ },
735
+ {
736
+ "extendedInfo": {},
737
+ "id": {},
738
+ "indicatorTypes": {},
739
+ "isEditable": {},
740
+ "isEnabled": {},
741
+ "name": {},
742
+ "objectTypes": {},
743
+ "parentObjectTypeId": {},
744
+ "pluginId": {}
745
+ }
746
+ ],
747
+ "parentObjectTypeId": 8,
748
+ "pluginId": 3
749
+ },
750
+ {
751
+ "extendedInfo": {},
752
+ "id": 5,
753
+ "indicatorTypes": [
754
+ {
755
+ "allowMaximumValue": {},
756
+ "dataUnits": {},
757
+ "description": {},
758
+ "displayUnits": {},
759
+ "extendedInfo": {},
760
+ "format": {},
761
+ "id": {},
762
+ "isDefault": {},
763
+ "isEnabled": {},
764
+ "name": {},
765
+ "pluginId": {},
766
+ "pluginObjectTypeId": {},
767
+ "syntheticExpression": {},
768
+ "syntheticMaximumExpression": {}
769
+ },
770
+ {
771
+ "allowMaximumValue": {},
772
+ "dataUnits": {},
773
+ "description": {},
774
+ "displayUnits": {},
775
+ "extendedInfo": {},
776
+ "format": {},
777
+ "id": {},
778
+ "isDefault": {},
779
+ "isEnabled": {},
780
+ "name": {},
781
+ "pluginId": {},
782
+ "pluginObjectTypeId": {},
783
+ "syntheticExpression": {},
784
+ "syntheticMaximumExpression": {}
785
+ },
786
+ {
787
+ "allowMaximumValue": {},
788
+ "dataUnits": {},
789
+ "description": {},
790
+ "displayUnits": {},
791
+ "extendedInfo": {},
792
+ "format": {},
793
+ "id": {},
794
+ "isDefault": {},
795
+ "isEnabled": {},
796
+ "name": {},
797
+ "pluginId": {},
798
+ "pluginObjectTypeId": {},
799
+ "syntheticExpression": {},
800
+ "syntheticMaximumExpression": {}
801
+ },
802
+ {
803
+ "allowMaximumValue": {},
804
+ "dataUnits": {},
805
+ "description": {},
806
+ "displayUnits": {},
807
+ "extendedInfo": {},
808
+ "format": {},
809
+ "id": {},
810
+ "isDefault": {},
811
+ "isEnabled": {},
812
+ "name": {},
813
+ "pluginId": {},
814
+ "pluginObjectTypeId": {},
815
+ "syntheticExpression": {},
816
+ "syntheticMaximumExpression": {}
817
+ },
818
+ {
819
+ "allowMaximumValue": {},
820
+ "dataUnits": {},
821
+ "description": {},
822
+ "displayUnits": {},
823
+ "extendedInfo": {},
824
+ "format": {},
825
+ "id": {},
826
+ "isDefault": {},
827
+ "isEnabled": {},
828
+ "name": {},
829
+ "pluginId": {},
830
+ "pluginObjectTypeId": {},
831
+ "syntheticExpression": {},
832
+ "syntheticMaximumExpression": {}
833
+ },
834
+ {
835
+ "allowMaximumValue": {},
836
+ "dataUnits": {},
837
+ "description": {},
838
+ "displayUnits": {},
839
+ "extendedInfo": {},
840
+ "format": {},
841
+ "id": {},
842
+ "isDefault": {},
843
+ "isEnabled": {},
844
+ "name": {},
845
+ "pluginId": {},
846
+ "pluginObjectTypeId": {},
847
+ "syntheticExpression": {},
848
+ "syntheticMaximumExpression": {}
849
+ },
850
+ {
851
+ "allowMaximumValue": {},
852
+ "dataUnits": {},
853
+ "description": {},
854
+ "displayUnits": {},
855
+ "extendedInfo": {},
856
+ "format": {},
857
+ "id": {},
858
+ "isDefault": {},
859
+ "isEnabled": {},
860
+ "name": {},
861
+ "pluginId": {},
862
+ "pluginObjectTypeId": {},
863
+ "syntheticExpression": {},
864
+ "syntheticMaximumExpression": {}
865
+ },
866
+ {
867
+ "allowMaximumValue": {},
868
+ "dataUnits": {},
869
+ "description": {},
870
+ "displayUnits": {},
871
+ "extendedInfo": {},
872
+ "format": {},
873
+ "id": {},
874
+ "isDefault": {},
875
+ "isEnabled": {},
876
+ "name": {},
877
+ "pluginId": {},
878
+ "pluginObjectTypeId": {},
879
+ "syntheticExpression": {},
880
+ "syntheticMaximumExpression": {}
881
+ },
882
+ {
883
+ "allowMaximumValue": {},
884
+ "dataUnits": {},
885
+ "description": {},
886
+ "displayUnits": {},
887
+ "extendedInfo": {},
888
+ "format": {},
889
+ "id": {},
890
+ "isDefault": {},
891
+ "isEnabled": {},
892
+ "name": {},
893
+ "pluginId": {},
894
+ "pluginObjectTypeId": {},
895
+ "syntheticExpression": {},
896
+ "syntheticMaximumExpression": {}
897
+ }
898
+ ],
899
+ "isEditable": false,
900
+ "isEnabled": true,
901
+ "name": "string",
902
+ "objectTypes": [
903
+ {
904
+ "extendedInfo": {},
905
+ "id": {},
906
+ "indicatorTypes": {},
907
+ "isEditable": {},
908
+ "isEnabled": {},
909
+ "name": {},
910
+ "objectTypes": {},
911
+ "parentObjectTypeId": {},
912
+ "pluginId": {}
913
+ },
914
+ {
915
+ "extendedInfo": {},
916
+ "id": {},
917
+ "indicatorTypes": {},
918
+ "isEditable": {},
919
+ "isEnabled": {},
920
+ "name": {},
921
+ "objectTypes": {},
922
+ "parentObjectTypeId": {},
923
+ "pluginId": {}
924
+ },
925
+ {
926
+ "extendedInfo": {},
927
+ "id": {},
928
+ "indicatorTypes": {},
929
+ "isEditable": {},
930
+ "isEnabled": {},
931
+ "name": {},
932
+ "objectTypes": {},
933
+ "parentObjectTypeId": {},
934
+ "pluginId": {}
935
+ },
936
+ {
937
+ "extendedInfo": {},
938
+ "id": {},
939
+ "indicatorTypes": {},
940
+ "isEditable": {},
941
+ "isEnabled": {},
942
+ "name": {},
943
+ "objectTypes": {},
944
+ "parentObjectTypeId": {},
945
+ "pluginId": {}
946
+ },
947
+ {
948
+ "extendedInfo": {},
949
+ "id": {},
950
+ "indicatorTypes": {},
951
+ "isEditable": {},
952
+ "isEnabled": {},
953
+ "name": {},
954
+ "objectTypes": {},
955
+ "parentObjectTypeId": {},
956
+ "pluginId": {}
957
+ },
958
+ {
959
+ "extendedInfo": {},
960
+ "id": {},
961
+ "indicatorTypes": {},
962
+ "isEditable": {},
963
+ "isEnabled": {},
964
+ "name": {},
965
+ "objectTypes": {},
966
+ "parentObjectTypeId": {},
967
+ "pluginId": {}
968
+ },
969
+ {
970
+ "extendedInfo": {},
971
+ "id": {},
972
+ "indicatorTypes": {},
973
+ "isEditable": {},
974
+ "isEnabled": {},
975
+ "name": {},
976
+ "objectTypes": {},
977
+ "parentObjectTypeId": {},
978
+ "pluginId": {}
979
+ },
980
+ {
981
+ "extendedInfo": {},
982
+ "id": {},
983
+ "indicatorTypes": {},
984
+ "isEditable": {},
985
+ "isEnabled": {},
986
+ "name": {},
987
+ "objectTypes": {},
988
+ "parentObjectTypeId": {},
989
+ "pluginId": {}
990
+ }
991
+ ],
992
+ "parentObjectTypeId": 6,
993
+ "pluginId": 5
994
+ },
995
+ {
996
+ "extendedInfo": {},
997
+ "id": 9,
998
+ "indicatorTypes": [
999
+ {
1000
+ "allowMaximumValue": {},
1001
+ "dataUnits": {},
1002
+ "description": {},
1003
+ "displayUnits": {},
1004
+ "extendedInfo": {},
1005
+ "format": {},
1006
+ "id": {},
1007
+ "isDefault": {},
1008
+ "isEnabled": {},
1009
+ "name": {},
1010
+ "pluginId": {},
1011
+ "pluginObjectTypeId": {},
1012
+ "syntheticExpression": {},
1013
+ "syntheticMaximumExpression": {}
1014
+ },
1015
+ {
1016
+ "allowMaximumValue": {},
1017
+ "dataUnits": {},
1018
+ "description": {},
1019
+ "displayUnits": {},
1020
+ "extendedInfo": {},
1021
+ "format": {},
1022
+ "id": {},
1023
+ "isDefault": {},
1024
+ "isEnabled": {},
1025
+ "name": {},
1026
+ "pluginId": {},
1027
+ "pluginObjectTypeId": {},
1028
+ "syntheticExpression": {},
1029
+ "syntheticMaximumExpression": {}
1030
+ },
1031
+ {
1032
+ "allowMaximumValue": {},
1033
+ "dataUnits": {},
1034
+ "description": {},
1035
+ "displayUnits": {},
1036
+ "extendedInfo": {},
1037
+ "format": {},
1038
+ "id": {},
1039
+ "isDefault": {},
1040
+ "isEnabled": {},
1041
+ "name": {},
1042
+ "pluginId": {},
1043
+ "pluginObjectTypeId": {},
1044
+ "syntheticExpression": {},
1045
+ "syntheticMaximumExpression": {}
1046
+ },
1047
+ {
1048
+ "allowMaximumValue": {},
1049
+ "dataUnits": {},
1050
+ "description": {},
1051
+ "displayUnits": {},
1052
+ "extendedInfo": {},
1053
+ "format": {},
1054
+ "id": {},
1055
+ "isDefault": {},
1056
+ "isEnabled": {},
1057
+ "name": {},
1058
+ "pluginId": {},
1059
+ "pluginObjectTypeId": {},
1060
+ "syntheticExpression": {},
1061
+ "syntheticMaximumExpression": {}
1062
+ },
1063
+ {
1064
+ "allowMaximumValue": {},
1065
+ "dataUnits": {},
1066
+ "description": {},
1067
+ "displayUnits": {},
1068
+ "extendedInfo": {},
1069
+ "format": {},
1070
+ "id": {},
1071
+ "isDefault": {},
1072
+ "isEnabled": {},
1073
+ "name": {},
1074
+ "pluginId": {},
1075
+ "pluginObjectTypeId": {},
1076
+ "syntheticExpression": {},
1077
+ "syntheticMaximumExpression": {}
1078
+ },
1079
+ {
1080
+ "allowMaximumValue": {},
1081
+ "dataUnits": {},
1082
+ "description": {},
1083
+ "displayUnits": {},
1084
+ "extendedInfo": {},
1085
+ "format": {},
1086
+ "id": {},
1087
+ "isDefault": {},
1088
+ "isEnabled": {},
1089
+ "name": {},
1090
+ "pluginId": {},
1091
+ "pluginObjectTypeId": {},
1092
+ "syntheticExpression": {},
1093
+ "syntheticMaximumExpression": {}
1094
+ }
1095
+ ],
1096
+ "isEditable": false,
1097
+ "isEnabled": true,
1098
+ "name": "string",
1099
+ "objectTypes": [
1100
+ {
1101
+ "extendedInfo": {},
1102
+ "id": {},
1103
+ "indicatorTypes": {},
1104
+ "isEditable": {},
1105
+ "isEnabled": {},
1106
+ "name": {},
1107
+ "objectTypes": {},
1108
+ "parentObjectTypeId": {},
1109
+ "pluginId": {}
1110
+ },
1111
+ {
1112
+ "extendedInfo": {},
1113
+ "id": {},
1114
+ "indicatorTypes": {},
1115
+ "isEditable": {},
1116
+ "isEnabled": {},
1117
+ "name": {},
1118
+ "objectTypes": {},
1119
+ "parentObjectTypeId": {},
1120
+ "pluginId": {}
1121
+ }
1122
+ ],
1123
+ "parentObjectTypeId": 6,
1124
+ "pluginId": 5
1125
+ },
1126
+ {
1127
+ "extendedInfo": {},
1128
+ "id": 5,
1129
+ "indicatorTypes": [
1130
+ {
1131
+ "allowMaximumValue": {},
1132
+ "dataUnits": {},
1133
+ "description": {},
1134
+ "displayUnits": {},
1135
+ "extendedInfo": {},
1136
+ "format": {},
1137
+ "id": {},
1138
+ "isDefault": {},
1139
+ "isEnabled": {},
1140
+ "name": {},
1141
+ "pluginId": {},
1142
+ "pluginObjectTypeId": {},
1143
+ "syntheticExpression": {},
1144
+ "syntheticMaximumExpression": {}
1145
+ }
1146
+ ],
1147
+ "isEditable": true,
1148
+ "isEnabled": true,
1149
+ "name": "string",
1150
+ "objectTypes": [
1151
+ {
1152
+ "extendedInfo": {},
1153
+ "id": {},
1154
+ "indicatorTypes": {},
1155
+ "isEditable": {},
1156
+ "isEnabled": {},
1157
+ "name": {},
1158
+ "objectTypes": {},
1159
+ "parentObjectTypeId": {},
1160
+ "pluginId": {}
1161
+ }
1162
+ ],
1163
+ "parentObjectTypeId": 9,
1164
+ "pluginId": 10
1165
+ },
1166
+ {
1167
+ "extendedInfo": {},
1168
+ "id": 2,
1169
+ "indicatorTypes": [
1170
+ {
1171
+ "allowMaximumValue": {},
1172
+ "dataUnits": {},
1173
+ "description": {},
1174
+ "displayUnits": {},
1175
+ "extendedInfo": {},
1176
+ "format": {},
1177
+ "id": {},
1178
+ "isDefault": {},
1179
+ "isEnabled": {},
1180
+ "name": {},
1181
+ "pluginId": {},
1182
+ "pluginObjectTypeId": {},
1183
+ "syntheticExpression": {},
1184
+ "syntheticMaximumExpression": {}
1185
+ },
1186
+ {
1187
+ "allowMaximumValue": {},
1188
+ "dataUnits": {},
1189
+ "description": {},
1190
+ "displayUnits": {},
1191
+ "extendedInfo": {},
1192
+ "format": {},
1193
+ "id": {},
1194
+ "isDefault": {},
1195
+ "isEnabled": {},
1196
+ "name": {},
1197
+ "pluginId": {},
1198
+ "pluginObjectTypeId": {},
1199
+ "syntheticExpression": {},
1200
+ "syntheticMaximumExpression": {}
1201
+ },
1202
+ {
1203
+ "allowMaximumValue": {},
1204
+ "dataUnits": {},
1205
+ "description": {},
1206
+ "displayUnits": {},
1207
+ "extendedInfo": {},
1208
+ "format": {},
1209
+ "id": {},
1210
+ "isDefault": {},
1211
+ "isEnabled": {},
1212
+ "name": {},
1213
+ "pluginId": {},
1214
+ "pluginObjectTypeId": {},
1215
+ "syntheticExpression": {},
1216
+ "syntheticMaximumExpression": {}
1217
+ },
1218
+ {
1219
+ "allowMaximumValue": {},
1220
+ "dataUnits": {},
1221
+ "description": {},
1222
+ "displayUnits": {},
1223
+ "extendedInfo": {},
1224
+ "format": {},
1225
+ "id": {},
1226
+ "isDefault": {},
1227
+ "isEnabled": {},
1228
+ "name": {},
1229
+ "pluginId": {},
1230
+ "pluginObjectTypeId": {},
1231
+ "syntheticExpression": {},
1232
+ "syntheticMaximumExpression": {}
1233
+ },
1234
+ {
1235
+ "allowMaximumValue": {},
1236
+ "dataUnits": {},
1237
+ "description": {},
1238
+ "displayUnits": {},
1239
+ "extendedInfo": {},
1240
+ "format": {},
1241
+ "id": {},
1242
+ "isDefault": {},
1243
+ "isEnabled": {},
1244
+ "name": {},
1245
+ "pluginId": {},
1246
+ "pluginObjectTypeId": {},
1247
+ "syntheticExpression": {},
1248
+ "syntheticMaximumExpression": {}
1249
+ },
1250
+ {
1251
+ "allowMaximumValue": {},
1252
+ "dataUnits": {},
1253
+ "description": {},
1254
+ "displayUnits": {},
1255
+ "extendedInfo": {},
1256
+ "format": {},
1257
+ "id": {},
1258
+ "isDefault": {},
1259
+ "isEnabled": {},
1260
+ "name": {},
1261
+ "pluginId": {},
1262
+ "pluginObjectTypeId": {},
1263
+ "syntheticExpression": {},
1264
+ "syntheticMaximumExpression": {}
1265
+ }
1266
+ ],
1267
+ "isEditable": true,
1268
+ "isEnabled": true,
1269
+ "name": "string",
1270
+ "objectTypes": [
1271
+ {
1272
+ "extendedInfo": {},
1273
+ "id": {},
1274
+ "indicatorTypes": {},
1275
+ "isEditable": {},
1276
+ "isEnabled": {},
1277
+ "name": {},
1278
+ "objectTypes": {},
1279
+ "parentObjectTypeId": {},
1280
+ "pluginId": {}
1281
+ },
1282
+ {
1283
+ "extendedInfo": {},
1284
+ "id": {},
1285
+ "indicatorTypes": {},
1286
+ "isEditable": {},
1287
+ "isEnabled": {},
1288
+ "name": {},
1289
+ "objectTypes": {},
1290
+ "parentObjectTypeId": {},
1291
+ "pluginId": {}
1292
+ },
1293
+ {
1294
+ "extendedInfo": {},
1295
+ "id": {},
1296
+ "indicatorTypes": {},
1297
+ "isEditable": {},
1298
+ "isEnabled": {},
1299
+ "name": {},
1300
+ "objectTypes": {},
1301
+ "parentObjectTypeId": {},
1302
+ "pluginId": {}
1303
+ },
1304
+ {
1305
+ "extendedInfo": {},
1306
+ "id": {},
1307
+ "indicatorTypes": {},
1308
+ "isEditable": {},
1309
+ "isEnabled": {},
1310
+ "name": {},
1311
+ "objectTypes": {},
1312
+ "parentObjectTypeId": {},
1313
+ "pluginId": {}
1314
+ },
1315
+ {
1316
+ "extendedInfo": {},
1317
+ "id": {},
1318
+ "indicatorTypes": {},
1319
+ "isEditable": {},
1320
+ "isEnabled": {},
1321
+ "name": {},
1322
+ "objectTypes": {},
1323
+ "parentObjectTypeId": {},
1324
+ "pluginId": {}
1325
+ },
1326
+ {
1327
+ "extendedInfo": {},
1328
+ "id": {},
1329
+ "indicatorTypes": {},
1330
+ "isEditable": {},
1331
+ "isEnabled": {},
1332
+ "name": {},
1333
+ "objectTypes": {},
1334
+ "parentObjectTypeId": {},
1335
+ "pluginId": {}
1336
+ }
1337
+ ],
1338
+ "parentObjectTypeId": 4,
1339
+ "pluginId": 4
1340
+ },
1341
+ {
1342
+ "extendedInfo": {},
1343
+ "id": 2,
1344
+ "indicatorTypes": [
1345
+ {
1346
+ "allowMaximumValue": {},
1347
+ "dataUnits": {},
1348
+ "description": {},
1349
+ "displayUnits": {},
1350
+ "extendedInfo": {},
1351
+ "format": {},
1352
+ "id": {},
1353
+ "isDefault": {},
1354
+ "isEnabled": {},
1355
+ "name": {},
1356
+ "pluginId": {},
1357
+ "pluginObjectTypeId": {},
1358
+ "syntheticExpression": {},
1359
+ "syntheticMaximumExpression": {}
1360
+ },
1361
+ {
1362
+ "allowMaximumValue": {},
1363
+ "dataUnits": {},
1364
+ "description": {},
1365
+ "displayUnits": {},
1366
+ "extendedInfo": {},
1367
+ "format": {},
1368
+ "id": {},
1369
+ "isDefault": {},
1370
+ "isEnabled": {},
1371
+ "name": {},
1372
+ "pluginId": {},
1373
+ "pluginObjectTypeId": {},
1374
+ "syntheticExpression": {},
1375
+ "syntheticMaximumExpression": {}
1376
+ },
1377
+ {
1378
+ "allowMaximumValue": {},
1379
+ "dataUnits": {},
1380
+ "description": {},
1381
+ "displayUnits": {},
1382
+ "extendedInfo": {},
1383
+ "format": {},
1384
+ "id": {},
1385
+ "isDefault": {},
1386
+ "isEnabled": {},
1387
+ "name": {},
1388
+ "pluginId": {},
1389
+ "pluginObjectTypeId": {},
1390
+ "syntheticExpression": {},
1391
+ "syntheticMaximumExpression": {}
1392
+ },
1393
+ {
1394
+ "allowMaximumValue": {},
1395
+ "dataUnits": {},
1396
+ "description": {},
1397
+ "displayUnits": {},
1398
+ "extendedInfo": {},
1399
+ "format": {},
1400
+ "id": {},
1401
+ "isDefault": {},
1402
+ "isEnabled": {},
1403
+ "name": {},
1404
+ "pluginId": {},
1405
+ "pluginObjectTypeId": {},
1406
+ "syntheticExpression": {},
1407
+ "syntheticMaximumExpression": {}
1408
+ },
1409
+ {
1410
+ "allowMaximumValue": {},
1411
+ "dataUnits": {},
1412
+ "description": {},
1413
+ "displayUnits": {},
1414
+ "extendedInfo": {},
1415
+ "format": {},
1416
+ "id": {},
1417
+ "isDefault": {},
1418
+ "isEnabled": {},
1419
+ "name": {},
1420
+ "pluginId": {},
1421
+ "pluginObjectTypeId": {},
1422
+ "syntheticExpression": {},
1423
+ "syntheticMaximumExpression": {}
1424
+ }
1425
+ ],
1426
+ "isEditable": false,
1427
+ "isEnabled": true,
1428
+ "name": "string",
1429
+ "objectTypes": [
1430
+ {
1431
+ "extendedInfo": {},
1432
+ "id": {},
1433
+ "indicatorTypes": {},
1434
+ "isEditable": {},
1435
+ "isEnabled": {},
1436
+ "name": {},
1437
+ "objectTypes": {},
1438
+ "parentObjectTypeId": {},
1439
+ "pluginId": {}
1440
+ },
1441
+ {
1442
+ "extendedInfo": {},
1443
+ "id": {},
1444
+ "indicatorTypes": {},
1445
+ "isEditable": {},
1446
+ "isEnabled": {},
1447
+ "name": {},
1448
+ "objectTypes": {},
1449
+ "parentObjectTypeId": {},
1450
+ "pluginId": {}
1451
+ },
1452
+ {
1453
+ "extendedInfo": {},
1454
+ "id": {},
1455
+ "indicatorTypes": {},
1456
+ "isEditable": {},
1457
+ "isEnabled": {},
1458
+ "name": {},
1459
+ "objectTypes": {},
1460
+ "parentObjectTypeId": {},
1461
+ "pluginId": {}
1462
+ },
1463
+ {
1464
+ "extendedInfo": {},
1465
+ "id": {},
1466
+ "indicatorTypes": {},
1467
+ "isEditable": {},
1468
+ "isEnabled": {},
1469
+ "name": {},
1470
+ "objectTypes": {},
1471
+ "parentObjectTypeId": {},
1472
+ "pluginId": {}
1473
+ },
1474
+ {
1475
+ "extendedInfo": {},
1476
+ "id": {},
1477
+ "indicatorTypes": {},
1478
+ "isEditable": {},
1479
+ "isEnabled": {},
1480
+ "name": {},
1481
+ "objectTypes": {},
1482
+ "parentObjectTypeId": {},
1483
+ "pluginId": {}
1484
+ },
1485
+ {
1486
+ "extendedInfo": {},
1487
+ "id": {},
1488
+ "indicatorTypes": {},
1489
+ "isEditable": {},
1490
+ "isEnabled": {},
1491
+ "name": {},
1492
+ "objectTypes": {},
1493
+ "parentObjectTypeId": {},
1494
+ "pluginId": {}
1495
+ }
1496
+ ],
1497
+ "parentObjectTypeId": 8,
1498
+ "pluginId": 5
1499
+ },
1500
+ {
1501
+ "extendedInfo": {},
1502
+ "id": 7,
1503
+ "indicatorTypes": [
1504
+ {
1505
+ "allowMaximumValue": {},
1506
+ "dataUnits": {},
1507
+ "description": {},
1508
+ "displayUnits": {},
1509
+ "extendedInfo": {},
1510
+ "format": {},
1511
+ "id": {},
1512
+ "isDefault": {},
1513
+ "isEnabled": {},
1514
+ "name": {},
1515
+ "pluginId": {},
1516
+ "pluginObjectTypeId": {},
1517
+ "syntheticExpression": {},
1518
+ "syntheticMaximumExpression": {}
1519
+ },
1520
+ {
1521
+ "allowMaximumValue": {},
1522
+ "dataUnits": {},
1523
+ "description": {},
1524
+ "displayUnits": {},
1525
+ "extendedInfo": {},
1526
+ "format": {},
1527
+ "id": {},
1528
+ "isDefault": {},
1529
+ "isEnabled": {},
1530
+ "name": {},
1531
+ "pluginId": {},
1532
+ "pluginObjectTypeId": {},
1533
+ "syntheticExpression": {},
1534
+ "syntheticMaximumExpression": {}
1535
+ },
1536
+ {
1537
+ "allowMaximumValue": {},
1538
+ "dataUnits": {},
1539
+ "description": {},
1540
+ "displayUnits": {},
1541
+ "extendedInfo": {},
1542
+ "format": {},
1543
+ "id": {},
1544
+ "isDefault": {},
1545
+ "isEnabled": {},
1546
+ "name": {},
1547
+ "pluginId": {},
1548
+ "pluginObjectTypeId": {},
1549
+ "syntheticExpression": {},
1550
+ "syntheticMaximumExpression": {}
1551
+ },
1552
+ {
1553
+ "allowMaximumValue": {},
1554
+ "dataUnits": {},
1555
+ "description": {},
1556
+ "displayUnits": {},
1557
+ "extendedInfo": {},
1558
+ "format": {},
1559
+ "id": {},
1560
+ "isDefault": {},
1561
+ "isEnabled": {},
1562
+ "name": {},
1563
+ "pluginId": {},
1564
+ "pluginObjectTypeId": {},
1565
+ "syntheticExpression": {},
1566
+ "syntheticMaximumExpression": {}
1567
+ }
1568
+ ],
1569
+ "isEditable": true,
1570
+ "isEnabled": true,
1571
+ "name": "string",
1572
+ "objectTypes": [
1573
+ {
1574
+ "extendedInfo": {},
1575
+ "id": {},
1576
+ "indicatorTypes": {},
1577
+ "isEditable": {},
1578
+ "isEnabled": {},
1579
+ "name": {},
1580
+ "objectTypes": {},
1581
+ "parentObjectTypeId": {},
1582
+ "pluginId": {}
1583
+ },
1584
+ {
1585
+ "extendedInfo": {},
1586
+ "id": {},
1587
+ "indicatorTypes": {},
1588
+ "isEditable": {},
1589
+ "isEnabled": {},
1590
+ "name": {},
1591
+ "objectTypes": {},
1592
+ "parentObjectTypeId": {},
1593
+ "pluginId": {}
1594
+ },
1595
+ {
1596
+ "extendedInfo": {},
1597
+ "id": {},
1598
+ "indicatorTypes": {},
1599
+ "isEditable": {},
1600
+ "isEnabled": {},
1601
+ "name": {},
1602
+ "objectTypes": {},
1603
+ "parentObjectTypeId": {},
1604
+ "pluginId": {}
1605
+ },
1606
+ {
1607
+ "extendedInfo": {},
1608
+ "id": {},
1609
+ "indicatorTypes": {},
1610
+ "isEditable": {},
1611
+ "isEnabled": {},
1612
+ "name": {},
1613
+ "objectTypes": {},
1614
+ "parentObjectTypeId": {},
1615
+ "pluginId": {}
1616
+ }
1617
+ ],
1618
+ "parentObjectTypeId": 10,
1619
+ "pluginId": 7
1620
+ }
1621
+ ]
1622
+ },
1623
+ {
1624
+ "deviceType": {
1625
+ "id": 10,
1626
+ "name": "string",
1627
+ "parentId": 9
1628
+ },
1629
+ "objectTypes": [
1630
+ {
1631
+ "extendedInfo": {},
1632
+ "id": 10,
1633
+ "indicatorTypes": [
1634
+ {
1635
+ "allowMaximumValue": {},
1636
+ "dataUnits": {},
1637
+ "description": {},
1638
+ "displayUnits": {},
1639
+ "extendedInfo": {},
1640
+ "format": {},
1641
+ "id": {},
1642
+ "isDefault": {},
1643
+ "isEnabled": {},
1644
+ "name": {},
1645
+ "pluginId": {},
1646
+ "pluginObjectTypeId": {},
1647
+ "syntheticExpression": {},
1648
+ "syntheticMaximumExpression": {}
1649
+ },
1650
+ {
1651
+ "allowMaximumValue": {},
1652
+ "dataUnits": {},
1653
+ "description": {},
1654
+ "displayUnits": {},
1655
+ "extendedInfo": {},
1656
+ "format": {},
1657
+ "id": {},
1658
+ "isDefault": {},
1659
+ "isEnabled": {},
1660
+ "name": {},
1661
+ "pluginId": {},
1662
+ "pluginObjectTypeId": {},
1663
+ "syntheticExpression": {},
1664
+ "syntheticMaximumExpression": {}
1665
+ },
1666
+ {
1667
+ "allowMaximumValue": {},
1668
+ "dataUnits": {},
1669
+ "description": {},
1670
+ "displayUnits": {},
1671
+ "extendedInfo": {},
1672
+ "format": {},
1673
+ "id": {},
1674
+ "isDefault": {},
1675
+ "isEnabled": {},
1676
+ "name": {},
1677
+ "pluginId": {},
1678
+ "pluginObjectTypeId": {},
1679
+ "syntheticExpression": {},
1680
+ "syntheticMaximumExpression": {}
1681
+ },
1682
+ {
1683
+ "allowMaximumValue": {},
1684
+ "dataUnits": {},
1685
+ "description": {},
1686
+ "displayUnits": {},
1687
+ "extendedInfo": {},
1688
+ "format": {},
1689
+ "id": {},
1690
+ "isDefault": {},
1691
+ "isEnabled": {},
1692
+ "name": {},
1693
+ "pluginId": {},
1694
+ "pluginObjectTypeId": {},
1695
+ "syntheticExpression": {},
1696
+ "syntheticMaximumExpression": {}
1697
+ },
1698
+ {
1699
+ "allowMaximumValue": {},
1700
+ "dataUnits": {},
1701
+ "description": {},
1702
+ "displayUnits": {},
1703
+ "extendedInfo": {},
1704
+ "format": {},
1705
+ "id": {},
1706
+ "isDefault": {},
1707
+ "isEnabled": {},
1708
+ "name": {},
1709
+ "pluginId": {},
1710
+ "pluginObjectTypeId": {},
1711
+ "syntheticExpression": {},
1712
+ "syntheticMaximumExpression": {}
1713
+ },
1714
+ {
1715
+ "allowMaximumValue": {},
1716
+ "dataUnits": {},
1717
+ "description": {},
1718
+ "displayUnits": {},
1719
+ "extendedInfo": {},
1720
+ "format": {},
1721
+ "id": {},
1722
+ "isDefault": {},
1723
+ "isEnabled": {},
1724
+ "name": {},
1725
+ "pluginId": {},
1726
+ "pluginObjectTypeId": {},
1727
+ "syntheticExpression": {},
1728
+ "syntheticMaximumExpression": {}
1729
+ },
1730
+ {
1731
+ "allowMaximumValue": {},
1732
+ "dataUnits": {},
1733
+ "description": {},
1734
+ "displayUnits": {},
1735
+ "extendedInfo": {},
1736
+ "format": {},
1737
+ "id": {},
1738
+ "isDefault": {},
1739
+ "isEnabled": {},
1740
+ "name": {},
1741
+ "pluginId": {},
1742
+ "pluginObjectTypeId": {},
1743
+ "syntheticExpression": {},
1744
+ "syntheticMaximumExpression": {}
1745
+ },
1746
+ {
1747
+ "allowMaximumValue": {},
1748
+ "dataUnits": {},
1749
+ "description": {},
1750
+ "displayUnits": {},
1751
+ "extendedInfo": {},
1752
+ "format": {},
1753
+ "id": {},
1754
+ "isDefault": {},
1755
+ "isEnabled": {},
1756
+ "name": {},
1757
+ "pluginId": {},
1758
+ "pluginObjectTypeId": {},
1759
+ "syntheticExpression": {},
1760
+ "syntheticMaximumExpression": {}
1761
+ },
1762
+ {
1763
+ "allowMaximumValue": {},
1764
+ "dataUnits": {},
1765
+ "description": {},
1766
+ "displayUnits": {},
1767
+ "extendedInfo": {},
1768
+ "format": {},
1769
+ "id": {},
1770
+ "isDefault": {},
1771
+ "isEnabled": {},
1772
+ "name": {},
1773
+ "pluginId": {},
1774
+ "pluginObjectTypeId": {},
1775
+ "syntheticExpression": {},
1776
+ "syntheticMaximumExpression": {}
1777
+ }
1778
+ ],
1779
+ "isEditable": true,
1780
+ "isEnabled": true,
1781
+ "name": "string",
1782
+ "objectTypes": [
1783
+ {
1784
+ "extendedInfo": {},
1785
+ "id": {},
1786
+ "indicatorTypes": {},
1787
+ "isEditable": {},
1788
+ "isEnabled": {},
1789
+ "name": {},
1790
+ "objectTypes": {},
1791
+ "parentObjectTypeId": {},
1792
+ "pluginId": {}
1793
+ },
1794
+ {
1795
+ "extendedInfo": {},
1796
+ "id": {},
1797
+ "indicatorTypes": {},
1798
+ "isEditable": {},
1799
+ "isEnabled": {},
1800
+ "name": {},
1801
+ "objectTypes": {},
1802
+ "parentObjectTypeId": {},
1803
+ "pluginId": {}
1804
+ }
1805
+ ],
1806
+ "parentObjectTypeId": 7,
1807
+ "pluginId": 7
1808
+ }
1809
+ ]
1810
+ },
1811
+ {
1812
+ "deviceType": {
1813
+ "id": 9,
1814
+ "name": "string",
1815
+ "parentId": 4
1816
+ },
1817
+ "objectTypes": [
1818
+ {
1819
+ "extendedInfo": {},
1820
+ "id": 1,
1821
+ "indicatorTypes": [
1822
+ {
1823
+ "allowMaximumValue": {},
1824
+ "dataUnits": {},
1825
+ "description": {},
1826
+ "displayUnits": {},
1827
+ "extendedInfo": {},
1828
+ "format": {},
1829
+ "id": {},
1830
+ "isDefault": {},
1831
+ "isEnabled": {},
1832
+ "name": {},
1833
+ "pluginId": {},
1834
+ "pluginObjectTypeId": {},
1835
+ "syntheticExpression": {},
1836
+ "syntheticMaximumExpression": {}
1837
+ },
1838
+ {
1839
+ "allowMaximumValue": {},
1840
+ "dataUnits": {},
1841
+ "description": {},
1842
+ "displayUnits": {},
1843
+ "extendedInfo": {},
1844
+ "format": {},
1845
+ "id": {},
1846
+ "isDefault": {},
1847
+ "isEnabled": {},
1848
+ "name": {},
1849
+ "pluginId": {},
1850
+ "pluginObjectTypeId": {},
1851
+ "syntheticExpression": {},
1852
+ "syntheticMaximumExpression": {}
1853
+ },
1854
+ {
1855
+ "allowMaximumValue": {},
1856
+ "dataUnits": {},
1857
+ "description": {},
1858
+ "displayUnits": {},
1859
+ "extendedInfo": {},
1860
+ "format": {},
1861
+ "id": {},
1862
+ "isDefault": {},
1863
+ "isEnabled": {},
1864
+ "name": {},
1865
+ "pluginId": {},
1866
+ "pluginObjectTypeId": {},
1867
+ "syntheticExpression": {},
1868
+ "syntheticMaximumExpression": {}
1869
+ },
1870
+ {
1871
+ "allowMaximumValue": {},
1872
+ "dataUnits": {},
1873
+ "description": {},
1874
+ "displayUnits": {},
1875
+ "extendedInfo": {},
1876
+ "format": {},
1877
+ "id": {},
1878
+ "isDefault": {},
1879
+ "isEnabled": {},
1880
+ "name": {},
1881
+ "pluginId": {},
1882
+ "pluginObjectTypeId": {},
1883
+ "syntheticExpression": {},
1884
+ "syntheticMaximumExpression": {}
1885
+ },
1886
+ {
1887
+ "allowMaximumValue": {},
1888
+ "dataUnits": {},
1889
+ "description": {},
1890
+ "displayUnits": {},
1891
+ "extendedInfo": {},
1892
+ "format": {},
1893
+ "id": {},
1894
+ "isDefault": {},
1895
+ "isEnabled": {},
1896
+ "name": {},
1897
+ "pluginId": {},
1898
+ "pluginObjectTypeId": {},
1899
+ "syntheticExpression": {},
1900
+ "syntheticMaximumExpression": {}
1901
+ },
1902
+ {
1903
+ "allowMaximumValue": {},
1904
+ "dataUnits": {},
1905
+ "description": {},
1906
+ "displayUnits": {},
1907
+ "extendedInfo": {},
1908
+ "format": {},
1909
+ "id": {},
1910
+ "isDefault": {},
1911
+ "isEnabled": {},
1912
+ "name": {},
1913
+ "pluginId": {},
1914
+ "pluginObjectTypeId": {},
1915
+ "syntheticExpression": {},
1916
+ "syntheticMaximumExpression": {}
1917
+ }
1918
+ ],
1919
+ "isEditable": false,
1920
+ "isEnabled": true,
1921
+ "name": "string",
1922
+ "objectTypes": [
1923
+ {
1924
+ "extendedInfo": {},
1925
+ "id": {},
1926
+ "indicatorTypes": {},
1927
+ "isEditable": {},
1928
+ "isEnabled": {},
1929
+ "name": {},
1930
+ "objectTypes": {},
1931
+ "parentObjectTypeId": {},
1932
+ "pluginId": {}
1933
+ }
1934
+ ],
1935
+ "parentObjectTypeId": 9,
1936
+ "pluginId": 2
1937
+ },
1938
+ {
1939
+ "extendedInfo": {},
1940
+ "id": 1,
1941
+ "indicatorTypes": [
1942
+ {
1943
+ "allowMaximumValue": {},
1944
+ "dataUnits": {},
1945
+ "description": {},
1946
+ "displayUnits": {},
1947
+ "extendedInfo": {},
1948
+ "format": {},
1949
+ "id": {},
1950
+ "isDefault": {},
1951
+ "isEnabled": {},
1952
+ "name": {},
1953
+ "pluginId": {},
1954
+ "pluginObjectTypeId": {},
1955
+ "syntheticExpression": {},
1956
+ "syntheticMaximumExpression": {}
1957
+ },
1958
+ {
1959
+ "allowMaximumValue": {},
1960
+ "dataUnits": {},
1961
+ "description": {},
1962
+ "displayUnits": {},
1963
+ "extendedInfo": {},
1964
+ "format": {},
1965
+ "id": {},
1966
+ "isDefault": {},
1967
+ "isEnabled": {},
1968
+ "name": {},
1969
+ "pluginId": {},
1970
+ "pluginObjectTypeId": {},
1971
+ "syntheticExpression": {},
1972
+ "syntheticMaximumExpression": {}
1973
+ },
1974
+ {
1975
+ "allowMaximumValue": {},
1976
+ "dataUnits": {},
1977
+ "description": {},
1978
+ "displayUnits": {},
1979
+ "extendedInfo": {},
1980
+ "format": {},
1981
+ "id": {},
1982
+ "isDefault": {},
1983
+ "isEnabled": {},
1984
+ "name": {},
1985
+ "pluginId": {},
1986
+ "pluginObjectTypeId": {},
1987
+ "syntheticExpression": {},
1988
+ "syntheticMaximumExpression": {}
1989
+ },
1990
+ {
1991
+ "allowMaximumValue": {},
1992
+ "dataUnits": {},
1993
+ "description": {},
1994
+ "displayUnits": {},
1995
+ "extendedInfo": {},
1996
+ "format": {},
1997
+ "id": {},
1998
+ "isDefault": {},
1999
+ "isEnabled": {},
2000
+ "name": {},
2001
+ "pluginId": {},
2002
+ "pluginObjectTypeId": {},
2003
+ "syntheticExpression": {},
2004
+ "syntheticMaximumExpression": {}
2005
+ }
2006
+ ],
2007
+ "isEditable": true,
2008
+ "isEnabled": true,
2009
+ "name": "string",
2010
+ "objectTypes": [
2011
+ {
2012
+ "extendedInfo": {},
2013
+ "id": {},
2014
+ "indicatorTypes": {},
2015
+ "isEditable": {},
2016
+ "isEnabled": {},
2017
+ "name": {},
2018
+ "objectTypes": {},
2019
+ "parentObjectTypeId": {},
2020
+ "pluginId": {}
2021
+ },
2022
+ {
2023
+ "extendedInfo": {},
2024
+ "id": {},
2025
+ "indicatorTypes": {},
2026
+ "isEditable": {},
2027
+ "isEnabled": {},
2028
+ "name": {},
2029
+ "objectTypes": {},
2030
+ "parentObjectTypeId": {},
2031
+ "pluginId": {}
2032
+ }
2033
+ ],
2034
+ "parentObjectTypeId": 3,
2035
+ "pluginId": 10
2036
+ }
2037
+ ]
2038
+ },
2039
+ {
2040
+ "deviceType": {
2041
+ "id": 7,
2042
+ "name": "string",
2043
+ "parentId": 7
2044
+ },
2045
+ "objectTypes": [
2046
+ {
2047
+ "extendedInfo": {},
2048
+ "id": 7,
2049
+ "indicatorTypes": [
2050
+ {
2051
+ "allowMaximumValue": {},
2052
+ "dataUnits": {},
2053
+ "description": {},
2054
+ "displayUnits": {},
2055
+ "extendedInfo": {},
2056
+ "format": {},
2057
+ "id": {},
2058
+ "isDefault": {},
2059
+ "isEnabled": {},
2060
+ "name": {},
2061
+ "pluginId": {},
2062
+ "pluginObjectTypeId": {},
2063
+ "syntheticExpression": {},
2064
+ "syntheticMaximumExpression": {}
2065
+ },
2066
+ {
2067
+ "allowMaximumValue": {},
2068
+ "dataUnits": {},
2069
+ "description": {},
2070
+ "displayUnits": {},
2071
+ "extendedInfo": {},
2072
+ "format": {},
2073
+ "id": {},
2074
+ "isDefault": {},
2075
+ "isEnabled": {},
2076
+ "name": {},
2077
+ "pluginId": {},
2078
+ "pluginObjectTypeId": {},
2079
+ "syntheticExpression": {},
2080
+ "syntheticMaximumExpression": {}
2081
+ },
2082
+ {
2083
+ "allowMaximumValue": {},
2084
+ "dataUnits": {},
2085
+ "description": {},
2086
+ "displayUnits": {},
2087
+ "extendedInfo": {},
2088
+ "format": {},
2089
+ "id": {},
2090
+ "isDefault": {},
2091
+ "isEnabled": {},
2092
+ "name": {},
2093
+ "pluginId": {},
2094
+ "pluginObjectTypeId": {},
2095
+ "syntheticExpression": {},
2096
+ "syntheticMaximumExpression": {}
2097
+ },
2098
+ {
2099
+ "allowMaximumValue": {},
2100
+ "dataUnits": {},
2101
+ "description": {},
2102
+ "displayUnits": {},
2103
+ "extendedInfo": {},
2104
+ "format": {},
2105
+ "id": {},
2106
+ "isDefault": {},
2107
+ "isEnabled": {},
2108
+ "name": {},
2109
+ "pluginId": {},
2110
+ "pluginObjectTypeId": {},
2111
+ "syntheticExpression": {},
2112
+ "syntheticMaximumExpression": {}
2113
+ }
2114
+ ],
2115
+ "isEditable": false,
2116
+ "isEnabled": false,
2117
+ "name": "string",
2118
+ "objectTypes": [
2119
+ {
2120
+ "extendedInfo": {},
2121
+ "id": {},
2122
+ "indicatorTypes": {},
2123
+ "isEditable": {},
2124
+ "isEnabled": {},
2125
+ "name": {},
2126
+ "objectTypes": {},
2127
+ "parentObjectTypeId": {},
2128
+ "pluginId": {}
2129
+ }
2130
+ ],
2131
+ "parentObjectTypeId": 3,
2132
+ "pluginId": 7
2133
+ },
2134
+ {
2135
+ "extendedInfo": {},
2136
+ "id": 2,
2137
+ "indicatorTypes": [
2138
+ {
2139
+ "allowMaximumValue": {},
2140
+ "dataUnits": {},
2141
+ "description": {},
2142
+ "displayUnits": {},
2143
+ "extendedInfo": {},
2144
+ "format": {},
2145
+ "id": {},
2146
+ "isDefault": {},
2147
+ "isEnabled": {},
2148
+ "name": {},
2149
+ "pluginId": {},
2150
+ "pluginObjectTypeId": {},
2151
+ "syntheticExpression": {},
2152
+ "syntheticMaximumExpression": {}
2153
+ },
2154
+ {
2155
+ "allowMaximumValue": {},
2156
+ "dataUnits": {},
2157
+ "description": {},
2158
+ "displayUnits": {},
2159
+ "extendedInfo": {},
2160
+ "format": {},
2161
+ "id": {},
2162
+ "isDefault": {},
2163
+ "isEnabled": {},
2164
+ "name": {},
2165
+ "pluginId": {},
2166
+ "pluginObjectTypeId": {},
2167
+ "syntheticExpression": {},
2168
+ "syntheticMaximumExpression": {}
2169
+ },
2170
+ {
2171
+ "allowMaximumValue": {},
2172
+ "dataUnits": {},
2173
+ "description": {},
2174
+ "displayUnits": {},
2175
+ "extendedInfo": {},
2176
+ "format": {},
2177
+ "id": {},
2178
+ "isDefault": {},
2179
+ "isEnabled": {},
2180
+ "name": {},
2181
+ "pluginId": {},
2182
+ "pluginObjectTypeId": {},
2183
+ "syntheticExpression": {},
2184
+ "syntheticMaximumExpression": {}
2185
+ },
2186
+ {
2187
+ "allowMaximumValue": {},
2188
+ "dataUnits": {},
2189
+ "description": {},
2190
+ "displayUnits": {},
2191
+ "extendedInfo": {},
2192
+ "format": {},
2193
+ "id": {},
2194
+ "isDefault": {},
2195
+ "isEnabled": {},
2196
+ "name": {},
2197
+ "pluginId": {},
2198
+ "pluginObjectTypeId": {},
2199
+ "syntheticExpression": {},
2200
+ "syntheticMaximumExpression": {}
2201
+ }
2202
+ ],
2203
+ "isEditable": true,
2204
+ "isEnabled": true,
2205
+ "name": "string",
2206
+ "objectTypes": [
2207
+ {
2208
+ "extendedInfo": {},
2209
+ "id": {},
2210
+ "indicatorTypes": {},
2211
+ "isEditable": {},
2212
+ "isEnabled": {},
2213
+ "name": {},
2214
+ "objectTypes": {},
2215
+ "parentObjectTypeId": {},
2216
+ "pluginId": {}
2217
+ },
2218
+ {
2219
+ "extendedInfo": {},
2220
+ "id": {},
2221
+ "indicatorTypes": {},
2222
+ "isEditable": {},
2223
+ "isEnabled": {},
2224
+ "name": {},
2225
+ "objectTypes": {},
2226
+ "parentObjectTypeId": {},
2227
+ "pluginId": {}
2228
+ },
2229
+ {
2230
+ "extendedInfo": {},
2231
+ "id": {},
2232
+ "indicatorTypes": {},
2233
+ "isEditable": {},
2234
+ "isEnabled": {},
2235
+ "name": {},
2236
+ "objectTypes": {},
2237
+ "parentObjectTypeId": {},
2238
+ "pluginId": {}
2239
+ },
2240
+ {
2241
+ "extendedInfo": {},
2242
+ "id": {},
2243
+ "indicatorTypes": {},
2244
+ "isEditable": {},
2245
+ "isEnabled": {},
2246
+ "name": {},
2247
+ "objectTypes": {},
2248
+ "parentObjectTypeId": {},
2249
+ "pluginId": {}
2250
+ },
2251
+ {
2252
+ "extendedInfo": {},
2253
+ "id": {},
2254
+ "indicatorTypes": {},
2255
+ "isEditable": {},
2256
+ "isEnabled": {},
2257
+ "name": {},
2258
+ "objectTypes": {},
2259
+ "parentObjectTypeId": {},
2260
+ "pluginId": {}
2261
+ },
2262
+ {
2263
+ "extendedInfo": {},
2264
+ "id": {},
2265
+ "indicatorTypes": {},
2266
+ "isEditable": {},
2267
+ "isEnabled": {},
2268
+ "name": {},
2269
+ "objectTypes": {},
2270
+ "parentObjectTypeId": {},
2271
+ "pluginId": {}
2272
+ },
2273
+ {
2274
+ "extendedInfo": {},
2275
+ "id": {},
2276
+ "indicatorTypes": {},
2277
+ "isEditable": {},
2278
+ "isEnabled": {},
2279
+ "name": {},
2280
+ "objectTypes": {},
2281
+ "parentObjectTypeId": {},
2282
+ "pluginId": {}
2283
+ },
2284
+ {
2285
+ "extendedInfo": {},
2286
+ "id": {},
2287
+ "indicatorTypes": {},
2288
+ "isEditable": {},
2289
+ "isEnabled": {},
2290
+ "name": {},
2291
+ "objectTypes": {},
2292
+ "parentObjectTypeId": {},
2293
+ "pluginId": {}
2294
+ },
2295
+ {
2296
+ "extendedInfo": {},
2297
+ "id": {},
2298
+ "indicatorTypes": {},
2299
+ "isEditable": {},
2300
+ "isEnabled": {},
2301
+ "name": {},
2302
+ "objectTypes": {},
2303
+ "parentObjectTypeId": {},
2304
+ "pluginId": {}
2305
+ },
2306
+ {
2307
+ "extendedInfo": {},
2308
+ "id": {},
2309
+ "indicatorTypes": {},
2310
+ "isEditable": {},
2311
+ "isEnabled": {},
2312
+ "name": {},
2313
+ "objectTypes": {},
2314
+ "parentObjectTypeId": {},
2315
+ "pluginId": {}
2316
+ }
2317
+ ],
2318
+ "parentObjectTypeId": 6,
2319
+ "pluginId": 5
2320
+ },
2321
+ {
2322
+ "extendedInfo": {},
2323
+ "id": 10,
2324
+ "indicatorTypes": [
2325
+ {
2326
+ "allowMaximumValue": {},
2327
+ "dataUnits": {},
2328
+ "description": {},
2329
+ "displayUnits": {},
2330
+ "extendedInfo": {},
2331
+ "format": {},
2332
+ "id": {},
2333
+ "isDefault": {},
2334
+ "isEnabled": {},
2335
+ "name": {},
2336
+ "pluginId": {},
2337
+ "pluginObjectTypeId": {},
2338
+ "syntheticExpression": {},
2339
+ "syntheticMaximumExpression": {}
2340
+ },
2341
+ {
2342
+ "allowMaximumValue": {},
2343
+ "dataUnits": {},
2344
+ "description": {},
2345
+ "displayUnits": {},
2346
+ "extendedInfo": {},
2347
+ "format": {},
2348
+ "id": {},
2349
+ "isDefault": {},
2350
+ "isEnabled": {},
2351
+ "name": {},
2352
+ "pluginId": {},
2353
+ "pluginObjectTypeId": {},
2354
+ "syntheticExpression": {},
2355
+ "syntheticMaximumExpression": {}
2356
+ },
2357
+ {
2358
+ "allowMaximumValue": {},
2359
+ "dataUnits": {},
2360
+ "description": {},
2361
+ "displayUnits": {},
2362
+ "extendedInfo": {},
2363
+ "format": {},
2364
+ "id": {},
2365
+ "isDefault": {},
2366
+ "isEnabled": {},
2367
+ "name": {},
2368
+ "pluginId": {},
2369
+ "pluginObjectTypeId": {},
2370
+ "syntheticExpression": {},
2371
+ "syntheticMaximumExpression": {}
2372
+ },
2373
+ {
2374
+ "allowMaximumValue": {},
2375
+ "dataUnits": {},
2376
+ "description": {},
2377
+ "displayUnits": {},
2378
+ "extendedInfo": {},
2379
+ "format": {},
2380
+ "id": {},
2381
+ "isDefault": {},
2382
+ "isEnabled": {},
2383
+ "name": {},
2384
+ "pluginId": {},
2385
+ "pluginObjectTypeId": {},
2386
+ "syntheticExpression": {},
2387
+ "syntheticMaximumExpression": {}
2388
+ },
2389
+ {
2390
+ "allowMaximumValue": {},
2391
+ "dataUnits": {},
2392
+ "description": {},
2393
+ "displayUnits": {},
2394
+ "extendedInfo": {},
2395
+ "format": {},
2396
+ "id": {},
2397
+ "isDefault": {},
2398
+ "isEnabled": {},
2399
+ "name": {},
2400
+ "pluginId": {},
2401
+ "pluginObjectTypeId": {},
2402
+ "syntheticExpression": {},
2403
+ "syntheticMaximumExpression": {}
2404
+ },
2405
+ {
2406
+ "allowMaximumValue": {},
2407
+ "dataUnits": {},
2408
+ "description": {},
2409
+ "displayUnits": {},
2410
+ "extendedInfo": {},
2411
+ "format": {},
2412
+ "id": {},
2413
+ "isDefault": {},
2414
+ "isEnabled": {},
2415
+ "name": {},
2416
+ "pluginId": {},
2417
+ "pluginObjectTypeId": {},
2418
+ "syntheticExpression": {},
2419
+ "syntheticMaximumExpression": {}
2420
+ }
2421
+ ],
2422
+ "isEditable": true,
2423
+ "isEnabled": false,
2424
+ "name": "string",
2425
+ "objectTypes": [
2426
+ {
2427
+ "extendedInfo": {},
2428
+ "id": {},
2429
+ "indicatorTypes": {},
2430
+ "isEditable": {},
2431
+ "isEnabled": {},
2432
+ "name": {},
2433
+ "objectTypes": {},
2434
+ "parentObjectTypeId": {},
2435
+ "pluginId": {}
2436
+ },
2437
+ {
2438
+ "extendedInfo": {},
2439
+ "id": {},
2440
+ "indicatorTypes": {},
2441
+ "isEditable": {},
2442
+ "isEnabled": {},
2443
+ "name": {},
2444
+ "objectTypes": {},
2445
+ "parentObjectTypeId": {},
2446
+ "pluginId": {}
2447
+ },
2448
+ {
2449
+ "extendedInfo": {},
2450
+ "id": {},
2451
+ "indicatorTypes": {},
2452
+ "isEditable": {},
2453
+ "isEnabled": {},
2454
+ "name": {},
2455
+ "objectTypes": {},
2456
+ "parentObjectTypeId": {},
2457
+ "pluginId": {}
2458
+ }
2459
+ ],
2460
+ "parentObjectTypeId": 9,
2461
+ "pluginId": 9
2462
+ },
2463
+ {
2464
+ "extendedInfo": {},
2465
+ "id": 7,
2466
+ "indicatorTypes": [
2467
+ {
2468
+ "allowMaximumValue": {},
2469
+ "dataUnits": {},
2470
+ "description": {},
2471
+ "displayUnits": {},
2472
+ "extendedInfo": {},
2473
+ "format": {},
2474
+ "id": {},
2475
+ "isDefault": {},
2476
+ "isEnabled": {},
2477
+ "name": {},
2478
+ "pluginId": {},
2479
+ "pluginObjectTypeId": {},
2480
+ "syntheticExpression": {},
2481
+ "syntheticMaximumExpression": {}
2482
+ },
2483
+ {
2484
+ "allowMaximumValue": {},
2485
+ "dataUnits": {},
2486
+ "description": {},
2487
+ "displayUnits": {},
2488
+ "extendedInfo": {},
2489
+ "format": {},
2490
+ "id": {},
2491
+ "isDefault": {},
2492
+ "isEnabled": {},
2493
+ "name": {},
2494
+ "pluginId": {},
2495
+ "pluginObjectTypeId": {},
2496
+ "syntheticExpression": {},
2497
+ "syntheticMaximumExpression": {}
2498
+ },
2499
+ {
2500
+ "allowMaximumValue": {},
2501
+ "dataUnits": {},
2502
+ "description": {},
2503
+ "displayUnits": {},
2504
+ "extendedInfo": {},
2505
+ "format": {},
2506
+ "id": {},
2507
+ "isDefault": {},
2508
+ "isEnabled": {},
2509
+ "name": {},
2510
+ "pluginId": {},
2511
+ "pluginObjectTypeId": {},
2512
+ "syntheticExpression": {},
2513
+ "syntheticMaximumExpression": {}
2514
+ },
2515
+ {
2516
+ "allowMaximumValue": {},
2517
+ "dataUnits": {},
2518
+ "description": {},
2519
+ "displayUnits": {},
2520
+ "extendedInfo": {},
2521
+ "format": {},
2522
+ "id": {},
2523
+ "isDefault": {},
2524
+ "isEnabled": {},
2525
+ "name": {},
2526
+ "pluginId": {},
2527
+ "pluginObjectTypeId": {},
2528
+ "syntheticExpression": {},
2529
+ "syntheticMaximumExpression": {}
2530
+ },
2531
+ {
2532
+ "allowMaximumValue": {},
2533
+ "dataUnits": {},
2534
+ "description": {},
2535
+ "displayUnits": {},
2536
+ "extendedInfo": {},
2537
+ "format": {},
2538
+ "id": {},
2539
+ "isDefault": {},
2540
+ "isEnabled": {},
2541
+ "name": {},
2542
+ "pluginId": {},
2543
+ "pluginObjectTypeId": {},
2544
+ "syntheticExpression": {},
2545
+ "syntheticMaximumExpression": {}
2546
+ },
2547
+ {
2548
+ "allowMaximumValue": {},
2549
+ "dataUnits": {},
2550
+ "description": {},
2551
+ "displayUnits": {},
2552
+ "extendedInfo": {},
2553
+ "format": {},
2554
+ "id": {},
2555
+ "isDefault": {},
2556
+ "isEnabled": {},
2557
+ "name": {},
2558
+ "pluginId": {},
2559
+ "pluginObjectTypeId": {},
2560
+ "syntheticExpression": {},
2561
+ "syntheticMaximumExpression": {}
2562
+ },
2563
+ {
2564
+ "allowMaximumValue": {},
2565
+ "dataUnits": {},
2566
+ "description": {},
2567
+ "displayUnits": {},
2568
+ "extendedInfo": {},
2569
+ "format": {},
2570
+ "id": {},
2571
+ "isDefault": {},
2572
+ "isEnabled": {},
2573
+ "name": {},
2574
+ "pluginId": {},
2575
+ "pluginObjectTypeId": {},
2576
+ "syntheticExpression": {},
2577
+ "syntheticMaximumExpression": {}
2578
+ }
2579
+ ],
2580
+ "isEditable": false,
2581
+ "isEnabled": false,
2582
+ "name": "string",
2583
+ "objectTypes": [
2584
+ {
2585
+ "extendedInfo": {},
2586
+ "id": {},
2587
+ "indicatorTypes": {},
2588
+ "isEditable": {},
2589
+ "isEnabled": {},
2590
+ "name": {},
2591
+ "objectTypes": {},
2592
+ "parentObjectTypeId": {},
2593
+ "pluginId": {}
2594
+ },
2595
+ {
2596
+ "extendedInfo": {},
2597
+ "id": {},
2598
+ "indicatorTypes": {},
2599
+ "isEditable": {},
2600
+ "isEnabled": {},
2601
+ "name": {},
2602
+ "objectTypes": {},
2603
+ "parentObjectTypeId": {},
2604
+ "pluginId": {}
2605
+ },
2606
+ {
2607
+ "extendedInfo": {},
2608
+ "id": {},
2609
+ "indicatorTypes": {},
2610
+ "isEditable": {},
2611
+ "isEnabled": {},
2612
+ "name": {},
2613
+ "objectTypes": {},
2614
+ "parentObjectTypeId": {},
2615
+ "pluginId": {}
2616
+ },
2617
+ {
2618
+ "extendedInfo": {},
2619
+ "id": {},
2620
+ "indicatorTypes": {},
2621
+ "isEditable": {},
2622
+ "isEnabled": {},
2623
+ "name": {},
2624
+ "objectTypes": {},
2625
+ "parentObjectTypeId": {},
2626
+ "pluginId": {}
2627
+ },
2628
+ {
2629
+ "extendedInfo": {},
2630
+ "id": {},
2631
+ "indicatorTypes": {},
2632
+ "isEditable": {},
2633
+ "isEnabled": {},
2634
+ "name": {},
2635
+ "objectTypes": {},
2636
+ "parentObjectTypeId": {},
2637
+ "pluginId": {}
2638
+ },
2639
+ {
2640
+ "extendedInfo": {},
2641
+ "id": {},
2642
+ "indicatorTypes": {},
2643
+ "isEditable": {},
2644
+ "isEnabled": {},
2645
+ "name": {},
2646
+ "objectTypes": {},
2647
+ "parentObjectTypeId": {},
2648
+ "pluginId": {}
2649
+ },
2650
+ {
2651
+ "extendedInfo": {},
2652
+ "id": {},
2653
+ "indicatorTypes": {},
2654
+ "isEditable": {},
2655
+ "isEnabled": {},
2656
+ "name": {},
2657
+ "objectTypes": {},
2658
+ "parentObjectTypeId": {},
2659
+ "pluginId": {}
2660
+ },
2661
+ {
2662
+ "extendedInfo": {},
2663
+ "id": {},
2664
+ "indicatorTypes": {},
2665
+ "isEditable": {},
2666
+ "isEnabled": {},
2667
+ "name": {},
2668
+ "objectTypes": {},
2669
+ "parentObjectTypeId": {},
2670
+ "pluginId": {}
2671
+ },
2672
+ {
2673
+ "extendedInfo": {},
2674
+ "id": {},
2675
+ "indicatorTypes": {},
2676
+ "isEditable": {},
2677
+ "isEnabled": {},
2678
+ "name": {},
2679
+ "objectTypes": {},
2680
+ "parentObjectTypeId": {},
2681
+ "pluginId": {}
2682
+ }
2683
+ ],
2684
+ "parentObjectTypeId": 10,
2685
+ "pluginId": 6
2686
+ },
2687
+ {
2688
+ "extendedInfo": {},
2689
+ "id": 3,
2690
+ "indicatorTypes": [
2691
+ {
2692
+ "allowMaximumValue": {},
2693
+ "dataUnits": {},
2694
+ "description": {},
2695
+ "displayUnits": {},
2696
+ "extendedInfo": {},
2697
+ "format": {},
2698
+ "id": {},
2699
+ "isDefault": {},
2700
+ "isEnabled": {},
2701
+ "name": {},
2702
+ "pluginId": {},
2703
+ "pluginObjectTypeId": {},
2704
+ "syntheticExpression": {},
2705
+ "syntheticMaximumExpression": {}
2706
+ },
2707
+ {
2708
+ "allowMaximumValue": {},
2709
+ "dataUnits": {},
2710
+ "description": {},
2711
+ "displayUnits": {},
2712
+ "extendedInfo": {},
2713
+ "format": {},
2714
+ "id": {},
2715
+ "isDefault": {},
2716
+ "isEnabled": {},
2717
+ "name": {},
2718
+ "pluginId": {},
2719
+ "pluginObjectTypeId": {},
2720
+ "syntheticExpression": {},
2721
+ "syntheticMaximumExpression": {}
2722
+ },
2723
+ {
2724
+ "allowMaximumValue": {},
2725
+ "dataUnits": {},
2726
+ "description": {},
2727
+ "displayUnits": {},
2728
+ "extendedInfo": {},
2729
+ "format": {},
2730
+ "id": {},
2731
+ "isDefault": {},
2732
+ "isEnabled": {},
2733
+ "name": {},
2734
+ "pluginId": {},
2735
+ "pluginObjectTypeId": {},
2736
+ "syntheticExpression": {},
2737
+ "syntheticMaximumExpression": {}
2738
+ },
2739
+ {
2740
+ "allowMaximumValue": {},
2741
+ "dataUnits": {},
2742
+ "description": {},
2743
+ "displayUnits": {},
2744
+ "extendedInfo": {},
2745
+ "format": {},
2746
+ "id": {},
2747
+ "isDefault": {},
2748
+ "isEnabled": {},
2749
+ "name": {},
2750
+ "pluginId": {},
2751
+ "pluginObjectTypeId": {},
2752
+ "syntheticExpression": {},
2753
+ "syntheticMaximumExpression": {}
2754
+ },
2755
+ {
2756
+ "allowMaximumValue": {},
2757
+ "dataUnits": {},
2758
+ "description": {},
2759
+ "displayUnits": {},
2760
+ "extendedInfo": {},
2761
+ "format": {},
2762
+ "id": {},
2763
+ "isDefault": {},
2764
+ "isEnabled": {},
2765
+ "name": {},
2766
+ "pluginId": {},
2767
+ "pluginObjectTypeId": {},
2768
+ "syntheticExpression": {},
2769
+ "syntheticMaximumExpression": {}
2770
+ },
2771
+ {
2772
+ "allowMaximumValue": {},
2773
+ "dataUnits": {},
2774
+ "description": {},
2775
+ "displayUnits": {},
2776
+ "extendedInfo": {},
2777
+ "format": {},
2778
+ "id": {},
2779
+ "isDefault": {},
2780
+ "isEnabled": {},
2781
+ "name": {},
2782
+ "pluginId": {},
2783
+ "pluginObjectTypeId": {},
2784
+ "syntheticExpression": {},
2785
+ "syntheticMaximumExpression": {}
2786
+ }
2787
+ ],
2788
+ "isEditable": false,
2789
+ "isEnabled": false,
2790
+ "name": "string",
2791
+ "objectTypes": [
2792
+ {
2793
+ "extendedInfo": {},
2794
+ "id": {},
2795
+ "indicatorTypes": {},
2796
+ "isEditable": {},
2797
+ "isEnabled": {},
2798
+ "name": {},
2799
+ "objectTypes": {},
2800
+ "parentObjectTypeId": {},
2801
+ "pluginId": {}
2802
+ },
2803
+ {
2804
+ "extendedInfo": {},
2805
+ "id": {},
2806
+ "indicatorTypes": {},
2807
+ "isEditable": {},
2808
+ "isEnabled": {},
2809
+ "name": {},
2810
+ "objectTypes": {},
2811
+ "parentObjectTypeId": {},
2812
+ "pluginId": {}
2813
+ },
2814
+ {
2815
+ "extendedInfo": {},
2816
+ "id": {},
2817
+ "indicatorTypes": {},
2818
+ "isEditable": {},
2819
+ "isEnabled": {},
2820
+ "name": {},
2821
+ "objectTypes": {},
2822
+ "parentObjectTypeId": {},
2823
+ "pluginId": {}
2824
+ },
2825
+ {
2826
+ "extendedInfo": {},
2827
+ "id": {},
2828
+ "indicatorTypes": {},
2829
+ "isEditable": {},
2830
+ "isEnabled": {},
2831
+ "name": {},
2832
+ "objectTypes": {},
2833
+ "parentObjectTypeId": {},
2834
+ "pluginId": {}
2835
+ },
2836
+ {
2837
+ "extendedInfo": {},
2838
+ "id": {},
2839
+ "indicatorTypes": {},
2840
+ "isEditable": {},
2841
+ "isEnabled": {},
2842
+ "name": {},
2843
+ "objectTypes": {},
2844
+ "parentObjectTypeId": {},
2845
+ "pluginId": {}
2846
+ },
2847
+ {
2848
+ "extendedInfo": {},
2849
+ "id": {},
2850
+ "indicatorTypes": {},
2851
+ "isEditable": {},
2852
+ "isEnabled": {},
2853
+ "name": {},
2854
+ "objectTypes": {},
2855
+ "parentObjectTypeId": {},
2856
+ "pluginId": {}
2857
+ }
2858
+ ],
2859
+ "parentObjectTypeId": 9,
2860
+ "pluginId": 4
2861
+ },
2862
+ {
2863
+ "extendedInfo": {},
2864
+ "id": 7,
2865
+ "indicatorTypes": [
2866
+ {
2867
+ "allowMaximumValue": {},
2868
+ "dataUnits": {},
2869
+ "description": {},
2870
+ "displayUnits": {},
2871
+ "extendedInfo": {},
2872
+ "format": {},
2873
+ "id": {},
2874
+ "isDefault": {},
2875
+ "isEnabled": {},
2876
+ "name": {},
2877
+ "pluginId": {},
2878
+ "pluginObjectTypeId": {},
2879
+ "syntheticExpression": {},
2880
+ "syntheticMaximumExpression": {}
2881
+ },
2882
+ {
2883
+ "allowMaximumValue": {},
2884
+ "dataUnits": {},
2885
+ "description": {},
2886
+ "displayUnits": {},
2887
+ "extendedInfo": {},
2888
+ "format": {},
2889
+ "id": {},
2890
+ "isDefault": {},
2891
+ "isEnabled": {},
2892
+ "name": {},
2893
+ "pluginId": {},
2894
+ "pluginObjectTypeId": {},
2895
+ "syntheticExpression": {},
2896
+ "syntheticMaximumExpression": {}
2897
+ },
2898
+ {
2899
+ "allowMaximumValue": {},
2900
+ "dataUnits": {},
2901
+ "description": {},
2902
+ "displayUnits": {},
2903
+ "extendedInfo": {},
2904
+ "format": {},
2905
+ "id": {},
2906
+ "isDefault": {},
2907
+ "isEnabled": {},
2908
+ "name": {},
2909
+ "pluginId": {},
2910
+ "pluginObjectTypeId": {},
2911
+ "syntheticExpression": {},
2912
+ "syntheticMaximumExpression": {}
2913
+ },
2914
+ {
2915
+ "allowMaximumValue": {},
2916
+ "dataUnits": {},
2917
+ "description": {},
2918
+ "displayUnits": {},
2919
+ "extendedInfo": {},
2920
+ "format": {},
2921
+ "id": {},
2922
+ "isDefault": {},
2923
+ "isEnabled": {},
2924
+ "name": {},
2925
+ "pluginId": {},
2926
+ "pluginObjectTypeId": {},
2927
+ "syntheticExpression": {},
2928
+ "syntheticMaximumExpression": {}
2929
+ },
2930
+ {
2931
+ "allowMaximumValue": {},
2932
+ "dataUnits": {},
2933
+ "description": {},
2934
+ "displayUnits": {},
2935
+ "extendedInfo": {},
2936
+ "format": {},
2937
+ "id": {},
2938
+ "isDefault": {},
2939
+ "isEnabled": {},
2940
+ "name": {},
2941
+ "pluginId": {},
2942
+ "pluginObjectTypeId": {},
2943
+ "syntheticExpression": {},
2944
+ "syntheticMaximumExpression": {}
2945
+ },
2946
+ {
2947
+ "allowMaximumValue": {},
2948
+ "dataUnits": {},
2949
+ "description": {},
2950
+ "displayUnits": {},
2951
+ "extendedInfo": {},
2952
+ "format": {},
2953
+ "id": {},
2954
+ "isDefault": {},
2955
+ "isEnabled": {},
2956
+ "name": {},
2957
+ "pluginId": {},
2958
+ "pluginObjectTypeId": {},
2959
+ "syntheticExpression": {},
2960
+ "syntheticMaximumExpression": {}
2961
+ },
2962
+ {
2963
+ "allowMaximumValue": {},
2964
+ "dataUnits": {},
2965
+ "description": {},
2966
+ "displayUnits": {},
2967
+ "extendedInfo": {},
2968
+ "format": {},
2969
+ "id": {},
2970
+ "isDefault": {},
2971
+ "isEnabled": {},
2972
+ "name": {},
2973
+ "pluginId": {},
2974
+ "pluginObjectTypeId": {},
2975
+ "syntheticExpression": {},
2976
+ "syntheticMaximumExpression": {}
2977
+ }
2978
+ ],
2979
+ "isEditable": false,
2980
+ "isEnabled": true,
2981
+ "name": "string",
2982
+ "objectTypes": [
2983
+ {
2984
+ "extendedInfo": {},
2985
+ "id": {},
2986
+ "indicatorTypes": {},
2987
+ "isEditable": {},
2988
+ "isEnabled": {},
2989
+ "name": {},
2990
+ "objectTypes": {},
2991
+ "parentObjectTypeId": {},
2992
+ "pluginId": {}
2993
+ },
2994
+ {
2995
+ "extendedInfo": {},
2996
+ "id": {},
2997
+ "indicatorTypes": {},
2998
+ "isEditable": {},
2999
+ "isEnabled": {},
3000
+ "name": {},
3001
+ "objectTypes": {},
3002
+ "parentObjectTypeId": {},
3003
+ "pluginId": {}
3004
+ },
3005
+ {
3006
+ "extendedInfo": {},
3007
+ "id": {},
3008
+ "indicatorTypes": {},
3009
+ "isEditable": {},
3010
+ "isEnabled": {},
3011
+ "name": {},
3012
+ "objectTypes": {},
3013
+ "parentObjectTypeId": {},
3014
+ "pluginId": {}
3015
+ },
3016
+ {
3017
+ "extendedInfo": {},
3018
+ "id": {},
3019
+ "indicatorTypes": {},
3020
+ "isEditable": {},
3021
+ "isEnabled": {},
3022
+ "name": {},
3023
+ "objectTypes": {},
3024
+ "parentObjectTypeId": {},
3025
+ "pluginId": {}
3026
+ },
3027
+ {
3028
+ "extendedInfo": {},
3029
+ "id": {},
3030
+ "indicatorTypes": {},
3031
+ "isEditable": {},
3032
+ "isEnabled": {},
3033
+ "name": {},
3034
+ "objectTypes": {},
3035
+ "parentObjectTypeId": {},
3036
+ "pluginId": {}
3037
+ },
3038
+ {
3039
+ "extendedInfo": {},
3040
+ "id": {},
3041
+ "indicatorTypes": {},
3042
+ "isEditable": {},
3043
+ "isEnabled": {},
3044
+ "name": {},
3045
+ "objectTypes": {},
3046
+ "parentObjectTypeId": {},
3047
+ "pluginId": {}
3048
+ },
3049
+ {
3050
+ "extendedInfo": {},
3051
+ "id": {},
3052
+ "indicatorTypes": {},
3053
+ "isEditable": {},
3054
+ "isEnabled": {},
3055
+ "name": {},
3056
+ "objectTypes": {},
3057
+ "parentObjectTypeId": {},
3058
+ "pluginId": {}
3059
+ },
3060
+ {
3061
+ "extendedInfo": {},
3062
+ "id": {},
3063
+ "indicatorTypes": {},
3064
+ "isEditable": {},
3065
+ "isEnabled": {},
3066
+ "name": {},
3067
+ "objectTypes": {},
3068
+ "parentObjectTypeId": {},
3069
+ "pluginId": {}
3070
+ },
3071
+ {
3072
+ "extendedInfo": {},
3073
+ "id": {},
3074
+ "indicatorTypes": {},
3075
+ "isEditable": {},
3076
+ "isEnabled": {},
3077
+ "name": {},
3078
+ "objectTypes": {},
3079
+ "parentObjectTypeId": {},
3080
+ "pluginId": {}
3081
+ }
3082
+ ],
3083
+ "parentObjectTypeId": 7,
3084
+ "pluginId": 5
3085
+ }
3086
+ ]
3087
+ },
3088
+ {
3089
+ "deviceType": {
3090
+ "id": 10,
3091
+ "name": "string",
3092
+ "parentId": 2
3093
+ },
3094
+ "objectTypes": [
3095
+ {
3096
+ "extendedInfo": {},
3097
+ "id": 4,
3098
+ "indicatorTypes": [
3099
+ {
3100
+ "allowMaximumValue": {},
3101
+ "dataUnits": {},
3102
+ "description": {},
3103
+ "displayUnits": {},
3104
+ "extendedInfo": {},
3105
+ "format": {},
3106
+ "id": {},
3107
+ "isDefault": {},
3108
+ "isEnabled": {},
3109
+ "name": {},
3110
+ "pluginId": {},
3111
+ "pluginObjectTypeId": {},
3112
+ "syntheticExpression": {},
3113
+ "syntheticMaximumExpression": {}
3114
+ },
3115
+ {
3116
+ "allowMaximumValue": {},
3117
+ "dataUnits": {},
3118
+ "description": {},
3119
+ "displayUnits": {},
3120
+ "extendedInfo": {},
3121
+ "format": {},
3122
+ "id": {},
3123
+ "isDefault": {},
3124
+ "isEnabled": {},
3125
+ "name": {},
3126
+ "pluginId": {},
3127
+ "pluginObjectTypeId": {},
3128
+ "syntheticExpression": {},
3129
+ "syntheticMaximumExpression": {}
3130
+ },
3131
+ {
3132
+ "allowMaximumValue": {},
3133
+ "dataUnits": {},
3134
+ "description": {},
3135
+ "displayUnits": {},
3136
+ "extendedInfo": {},
3137
+ "format": {},
3138
+ "id": {},
3139
+ "isDefault": {},
3140
+ "isEnabled": {},
3141
+ "name": {},
3142
+ "pluginId": {},
3143
+ "pluginObjectTypeId": {},
3144
+ "syntheticExpression": {},
3145
+ "syntheticMaximumExpression": {}
3146
+ },
3147
+ {
3148
+ "allowMaximumValue": {},
3149
+ "dataUnits": {},
3150
+ "description": {},
3151
+ "displayUnits": {},
3152
+ "extendedInfo": {},
3153
+ "format": {},
3154
+ "id": {},
3155
+ "isDefault": {},
3156
+ "isEnabled": {},
3157
+ "name": {},
3158
+ "pluginId": {},
3159
+ "pluginObjectTypeId": {},
3160
+ "syntheticExpression": {},
3161
+ "syntheticMaximumExpression": {}
3162
+ }
3163
+ ],
3164
+ "isEditable": false,
3165
+ "isEnabled": true,
3166
+ "name": "string",
3167
+ "objectTypes": [
3168
+ {
3169
+ "extendedInfo": {},
3170
+ "id": {},
3171
+ "indicatorTypes": {},
3172
+ "isEditable": {},
3173
+ "isEnabled": {},
3174
+ "name": {},
3175
+ "objectTypes": {},
3176
+ "parentObjectTypeId": {},
3177
+ "pluginId": {}
3178
+ },
3179
+ {
3180
+ "extendedInfo": {},
3181
+ "id": {},
3182
+ "indicatorTypes": {},
3183
+ "isEditable": {},
3184
+ "isEnabled": {},
3185
+ "name": {},
3186
+ "objectTypes": {},
3187
+ "parentObjectTypeId": {},
3188
+ "pluginId": {}
3189
+ },
3190
+ {
3191
+ "extendedInfo": {},
3192
+ "id": {},
3193
+ "indicatorTypes": {},
3194
+ "isEditable": {},
3195
+ "isEnabled": {},
3196
+ "name": {},
3197
+ "objectTypes": {},
3198
+ "parentObjectTypeId": {},
3199
+ "pluginId": {}
3200
+ }
3201
+ ],
3202
+ "parentObjectTypeId": 3,
3203
+ "pluginId": 2
3204
+ }
3205
+ ]
3206
+ },
3207
+ {
3208
+ "deviceType": {
3209
+ "id": 9,
3210
+ "name": "string",
3211
+ "parentId": 9
3212
+ },
3213
+ "objectTypes": [
3214
+ {
3215
+ "extendedInfo": {},
3216
+ "id": 2,
3217
+ "indicatorTypes": [
3218
+ {
3219
+ "allowMaximumValue": {},
3220
+ "dataUnits": {},
3221
+ "description": {},
3222
+ "displayUnits": {},
3223
+ "extendedInfo": {},
3224
+ "format": {},
3225
+ "id": {},
3226
+ "isDefault": {},
3227
+ "isEnabled": {},
3228
+ "name": {},
3229
+ "pluginId": {},
3230
+ "pluginObjectTypeId": {},
3231
+ "syntheticExpression": {},
3232
+ "syntheticMaximumExpression": {}
3233
+ }
3234
+ ],
3235
+ "isEditable": true,
3236
+ "isEnabled": false,
3237
+ "name": "string",
3238
+ "objectTypes": [
3239
+ {
3240
+ "extendedInfo": {},
3241
+ "id": {},
3242
+ "indicatorTypes": {},
3243
+ "isEditable": {},
3244
+ "isEnabled": {},
3245
+ "name": {},
3246
+ "objectTypes": {},
3247
+ "parentObjectTypeId": {},
3248
+ "pluginId": {}
3249
+ },
3250
+ {
3251
+ "extendedInfo": {},
3252
+ "id": {},
3253
+ "indicatorTypes": {},
3254
+ "isEditable": {},
3255
+ "isEnabled": {},
3256
+ "name": {},
3257
+ "objectTypes": {},
3258
+ "parentObjectTypeId": {},
3259
+ "pluginId": {}
3260
+ }
3261
+ ],
3262
+ "parentObjectTypeId": 6,
3263
+ "pluginId": 6
3264
+ },
3265
+ {
3266
+ "extendedInfo": {},
3267
+ "id": 4,
3268
+ "indicatorTypes": [
3269
+ {
3270
+ "allowMaximumValue": {},
3271
+ "dataUnits": {},
3272
+ "description": {},
3273
+ "displayUnits": {},
3274
+ "extendedInfo": {},
3275
+ "format": {},
3276
+ "id": {},
3277
+ "isDefault": {},
3278
+ "isEnabled": {},
3279
+ "name": {},
3280
+ "pluginId": {},
3281
+ "pluginObjectTypeId": {},
3282
+ "syntheticExpression": {},
3283
+ "syntheticMaximumExpression": {}
3284
+ },
3285
+ {
3286
+ "allowMaximumValue": {},
3287
+ "dataUnits": {},
3288
+ "description": {},
3289
+ "displayUnits": {},
3290
+ "extendedInfo": {},
3291
+ "format": {},
3292
+ "id": {},
3293
+ "isDefault": {},
3294
+ "isEnabled": {},
3295
+ "name": {},
3296
+ "pluginId": {},
3297
+ "pluginObjectTypeId": {},
3298
+ "syntheticExpression": {},
3299
+ "syntheticMaximumExpression": {}
3300
+ }
3301
+ ],
3302
+ "isEditable": true,
3303
+ "isEnabled": true,
3304
+ "name": "string",
3305
+ "objectTypes": [
3306
+ {
3307
+ "extendedInfo": {},
3308
+ "id": {},
3309
+ "indicatorTypes": {},
3310
+ "isEditable": {},
3311
+ "isEnabled": {},
3312
+ "name": {},
3313
+ "objectTypes": {},
3314
+ "parentObjectTypeId": {},
3315
+ "pluginId": {}
3316
+ },
3317
+ {
3318
+ "extendedInfo": {},
3319
+ "id": {},
3320
+ "indicatorTypes": {},
3321
+ "isEditable": {},
3322
+ "isEnabled": {},
3323
+ "name": {},
3324
+ "objectTypes": {},
3325
+ "parentObjectTypeId": {},
3326
+ "pluginId": {}
3327
+ },
3328
+ {
3329
+ "extendedInfo": {},
3330
+ "id": {},
3331
+ "indicatorTypes": {},
3332
+ "isEditable": {},
3333
+ "isEnabled": {},
3334
+ "name": {},
3335
+ "objectTypes": {},
3336
+ "parentObjectTypeId": {},
3337
+ "pluginId": {}
3338
+ }
3339
+ ],
3340
+ "parentObjectTypeId": 3,
3341
+ "pluginId": 3
3342
+ }
3343
+ ]
3344
+ },
3345
+ {
3346
+ "deviceType": {
3347
+ "id": 4,
3348
+ "name": "string",
3349
+ "parentId": 6
3350
+ },
3351
+ "objectTypes": [
3352
+ {
3353
+ "extendedInfo": {},
3354
+ "id": 2,
3355
+ "indicatorTypes": [
3356
+ {
3357
+ "allowMaximumValue": {},
3358
+ "dataUnits": {},
3359
+ "description": {},
3360
+ "displayUnits": {},
3361
+ "extendedInfo": {},
3362
+ "format": {},
3363
+ "id": {},
3364
+ "isDefault": {},
3365
+ "isEnabled": {},
3366
+ "name": {},
3367
+ "pluginId": {},
3368
+ "pluginObjectTypeId": {},
3369
+ "syntheticExpression": {},
3370
+ "syntheticMaximumExpression": {}
3371
+ },
3372
+ {
3373
+ "allowMaximumValue": {},
3374
+ "dataUnits": {},
3375
+ "description": {},
3376
+ "displayUnits": {},
3377
+ "extendedInfo": {},
3378
+ "format": {},
3379
+ "id": {},
3380
+ "isDefault": {},
3381
+ "isEnabled": {},
3382
+ "name": {},
3383
+ "pluginId": {},
3384
+ "pluginObjectTypeId": {},
3385
+ "syntheticExpression": {},
3386
+ "syntheticMaximumExpression": {}
3387
+ },
3388
+ {
3389
+ "allowMaximumValue": {},
3390
+ "dataUnits": {},
3391
+ "description": {},
3392
+ "displayUnits": {},
3393
+ "extendedInfo": {},
3394
+ "format": {},
3395
+ "id": {},
3396
+ "isDefault": {},
3397
+ "isEnabled": {},
3398
+ "name": {},
3399
+ "pluginId": {},
3400
+ "pluginObjectTypeId": {},
3401
+ "syntheticExpression": {},
3402
+ "syntheticMaximumExpression": {}
3403
+ },
3404
+ {
3405
+ "allowMaximumValue": {},
3406
+ "dataUnits": {},
3407
+ "description": {},
3408
+ "displayUnits": {},
3409
+ "extendedInfo": {},
3410
+ "format": {},
3411
+ "id": {},
3412
+ "isDefault": {},
3413
+ "isEnabled": {},
3414
+ "name": {},
3415
+ "pluginId": {},
3416
+ "pluginObjectTypeId": {},
3417
+ "syntheticExpression": {},
3418
+ "syntheticMaximumExpression": {}
3419
+ },
3420
+ {
3421
+ "allowMaximumValue": {},
3422
+ "dataUnits": {},
3423
+ "description": {},
3424
+ "displayUnits": {},
3425
+ "extendedInfo": {},
3426
+ "format": {},
3427
+ "id": {},
3428
+ "isDefault": {},
3429
+ "isEnabled": {},
3430
+ "name": {},
3431
+ "pluginId": {},
3432
+ "pluginObjectTypeId": {},
3433
+ "syntheticExpression": {},
3434
+ "syntheticMaximumExpression": {}
3435
+ },
3436
+ {
3437
+ "allowMaximumValue": {},
3438
+ "dataUnits": {},
3439
+ "description": {},
3440
+ "displayUnits": {},
3441
+ "extendedInfo": {},
3442
+ "format": {},
3443
+ "id": {},
3444
+ "isDefault": {},
3445
+ "isEnabled": {},
3446
+ "name": {},
3447
+ "pluginId": {},
3448
+ "pluginObjectTypeId": {},
3449
+ "syntheticExpression": {},
3450
+ "syntheticMaximumExpression": {}
3451
+ },
3452
+ {
3453
+ "allowMaximumValue": {},
3454
+ "dataUnits": {},
3455
+ "description": {},
3456
+ "displayUnits": {},
3457
+ "extendedInfo": {},
3458
+ "format": {},
3459
+ "id": {},
3460
+ "isDefault": {},
3461
+ "isEnabled": {},
3462
+ "name": {},
3463
+ "pluginId": {},
3464
+ "pluginObjectTypeId": {},
3465
+ "syntheticExpression": {},
3466
+ "syntheticMaximumExpression": {}
3467
+ },
3468
+ {
3469
+ "allowMaximumValue": {},
3470
+ "dataUnits": {},
3471
+ "description": {},
3472
+ "displayUnits": {},
3473
+ "extendedInfo": {},
3474
+ "format": {},
3475
+ "id": {},
3476
+ "isDefault": {},
3477
+ "isEnabled": {},
3478
+ "name": {},
3479
+ "pluginId": {},
3480
+ "pluginObjectTypeId": {},
3481
+ "syntheticExpression": {},
3482
+ "syntheticMaximumExpression": {}
3483
+ },
3484
+ {
3485
+ "allowMaximumValue": {},
3486
+ "dataUnits": {},
3487
+ "description": {},
3488
+ "displayUnits": {},
3489
+ "extendedInfo": {},
3490
+ "format": {},
3491
+ "id": {},
3492
+ "isDefault": {},
3493
+ "isEnabled": {},
3494
+ "name": {},
3495
+ "pluginId": {},
3496
+ "pluginObjectTypeId": {},
3497
+ "syntheticExpression": {},
3498
+ "syntheticMaximumExpression": {}
3499
+ },
3500
+ {
3501
+ "allowMaximumValue": {},
3502
+ "dataUnits": {},
3503
+ "description": {},
3504
+ "displayUnits": {},
3505
+ "extendedInfo": {},
3506
+ "format": {},
3507
+ "id": {},
3508
+ "isDefault": {},
3509
+ "isEnabled": {},
3510
+ "name": {},
3511
+ "pluginId": {},
3512
+ "pluginObjectTypeId": {},
3513
+ "syntheticExpression": {},
3514
+ "syntheticMaximumExpression": {}
3515
+ }
3516
+ ],
3517
+ "isEditable": true,
3518
+ "isEnabled": true,
3519
+ "name": "string",
3520
+ "objectTypes": [
3521
+ {
3522
+ "extendedInfo": {},
3523
+ "id": {},
3524
+ "indicatorTypes": {},
3525
+ "isEditable": {},
3526
+ "isEnabled": {},
3527
+ "name": {},
3528
+ "objectTypes": {},
3529
+ "parentObjectTypeId": {},
3530
+ "pluginId": {}
3531
+ },
3532
+ {
3533
+ "extendedInfo": {},
3534
+ "id": {},
3535
+ "indicatorTypes": {},
3536
+ "isEditable": {},
3537
+ "isEnabled": {},
3538
+ "name": {},
3539
+ "objectTypes": {},
3540
+ "parentObjectTypeId": {},
3541
+ "pluginId": {}
3542
+ },
3543
+ {
3544
+ "extendedInfo": {},
3545
+ "id": {},
3546
+ "indicatorTypes": {},
3547
+ "isEditable": {},
3548
+ "isEnabled": {},
3549
+ "name": {},
3550
+ "objectTypes": {},
3551
+ "parentObjectTypeId": {},
3552
+ "pluginId": {}
3553
+ },
3554
+ {
3555
+ "extendedInfo": {},
3556
+ "id": {},
3557
+ "indicatorTypes": {},
3558
+ "isEditable": {},
3559
+ "isEnabled": {},
3560
+ "name": {},
3561
+ "objectTypes": {},
3562
+ "parentObjectTypeId": {},
3563
+ "pluginId": {}
3564
+ },
3565
+ {
3566
+ "extendedInfo": {},
3567
+ "id": {},
3568
+ "indicatorTypes": {},
3569
+ "isEditable": {},
3570
+ "isEnabled": {},
3571
+ "name": {},
3572
+ "objectTypes": {},
3573
+ "parentObjectTypeId": {},
3574
+ "pluginId": {}
3575
+ },
3576
+ {
3577
+ "extendedInfo": {},
3578
+ "id": {},
3579
+ "indicatorTypes": {},
3580
+ "isEditable": {},
3581
+ "isEnabled": {},
3582
+ "name": {},
3583
+ "objectTypes": {},
3584
+ "parentObjectTypeId": {},
3585
+ "pluginId": {}
3586
+ },
3587
+ {
3588
+ "extendedInfo": {},
3589
+ "id": {},
3590
+ "indicatorTypes": {},
3591
+ "isEditable": {},
3592
+ "isEnabled": {},
3593
+ "name": {},
3594
+ "objectTypes": {},
3595
+ "parentObjectTypeId": {},
3596
+ "pluginId": {}
3597
+ },
3598
+ {
3599
+ "extendedInfo": {},
3600
+ "id": {},
3601
+ "indicatorTypes": {},
3602
+ "isEditable": {},
3603
+ "isEnabled": {},
3604
+ "name": {},
3605
+ "objectTypes": {},
3606
+ "parentObjectTypeId": {},
3607
+ "pluginId": {}
3608
+ },
3609
+ {
3610
+ "extendedInfo": {},
3611
+ "id": {},
3612
+ "indicatorTypes": {},
3613
+ "isEditable": {},
3614
+ "isEnabled": {},
3615
+ "name": {},
3616
+ "objectTypes": {},
3617
+ "parentObjectTypeId": {},
3618
+ "pluginId": {}
3619
+ }
3620
+ ],
3621
+ "parentObjectTypeId": 1,
3622
+ "pluginId": 10
3623
+ },
3624
+ {
3625
+ "extendedInfo": {},
3626
+ "id": 9,
3627
+ "indicatorTypes": [
3628
+ {
3629
+ "allowMaximumValue": {},
3630
+ "dataUnits": {},
3631
+ "description": {},
3632
+ "displayUnits": {},
3633
+ "extendedInfo": {},
3634
+ "format": {},
3635
+ "id": {},
3636
+ "isDefault": {},
3637
+ "isEnabled": {},
3638
+ "name": {},
3639
+ "pluginId": {},
3640
+ "pluginObjectTypeId": {},
3641
+ "syntheticExpression": {},
3642
+ "syntheticMaximumExpression": {}
3643
+ },
3644
+ {
3645
+ "allowMaximumValue": {},
3646
+ "dataUnits": {},
3647
+ "description": {},
3648
+ "displayUnits": {},
3649
+ "extendedInfo": {},
3650
+ "format": {},
3651
+ "id": {},
3652
+ "isDefault": {},
3653
+ "isEnabled": {},
3654
+ "name": {},
3655
+ "pluginId": {},
3656
+ "pluginObjectTypeId": {},
3657
+ "syntheticExpression": {},
3658
+ "syntheticMaximumExpression": {}
3659
+ },
3660
+ {
3661
+ "allowMaximumValue": {},
3662
+ "dataUnits": {},
3663
+ "description": {},
3664
+ "displayUnits": {},
3665
+ "extendedInfo": {},
3666
+ "format": {},
3667
+ "id": {},
3668
+ "isDefault": {},
3669
+ "isEnabled": {},
3670
+ "name": {},
3671
+ "pluginId": {},
3672
+ "pluginObjectTypeId": {},
3673
+ "syntheticExpression": {},
3674
+ "syntheticMaximumExpression": {}
3675
+ },
3676
+ {
3677
+ "allowMaximumValue": {},
3678
+ "dataUnits": {},
3679
+ "description": {},
3680
+ "displayUnits": {},
3681
+ "extendedInfo": {},
3682
+ "format": {},
3683
+ "id": {},
3684
+ "isDefault": {},
3685
+ "isEnabled": {},
3686
+ "name": {},
3687
+ "pluginId": {},
3688
+ "pluginObjectTypeId": {},
3689
+ "syntheticExpression": {},
3690
+ "syntheticMaximumExpression": {}
3691
+ },
3692
+ {
3693
+ "allowMaximumValue": {},
3694
+ "dataUnits": {},
3695
+ "description": {},
3696
+ "displayUnits": {},
3697
+ "extendedInfo": {},
3698
+ "format": {},
3699
+ "id": {},
3700
+ "isDefault": {},
3701
+ "isEnabled": {},
3702
+ "name": {},
3703
+ "pluginId": {},
3704
+ "pluginObjectTypeId": {},
3705
+ "syntheticExpression": {},
3706
+ "syntheticMaximumExpression": {}
3707
+ },
3708
+ {
3709
+ "allowMaximumValue": {},
3710
+ "dataUnits": {},
3711
+ "description": {},
3712
+ "displayUnits": {},
3713
+ "extendedInfo": {},
3714
+ "format": {},
3715
+ "id": {},
3716
+ "isDefault": {},
3717
+ "isEnabled": {},
3718
+ "name": {},
3719
+ "pluginId": {},
3720
+ "pluginObjectTypeId": {},
3721
+ "syntheticExpression": {},
3722
+ "syntheticMaximumExpression": {}
3723
+ }
3724
+ ],
3725
+ "isEditable": false,
3726
+ "isEnabled": false,
3727
+ "name": "string",
3728
+ "objectTypes": [
3729
+ {
3730
+ "extendedInfo": {},
3731
+ "id": {},
3732
+ "indicatorTypes": {},
3733
+ "isEditable": {},
3734
+ "isEnabled": {},
3735
+ "name": {},
3736
+ "objectTypes": {},
3737
+ "parentObjectTypeId": {},
3738
+ "pluginId": {}
3739
+ }
3740
+ ],
3741
+ "parentObjectTypeId": 10,
3742
+ "pluginId": 4
3743
+ },
3744
+ {
3745
+ "extendedInfo": {},
3746
+ "id": 4,
3747
+ "indicatorTypes": [
3748
+ {
3749
+ "allowMaximumValue": {},
3750
+ "dataUnits": {},
3751
+ "description": {},
3752
+ "displayUnits": {},
3753
+ "extendedInfo": {},
3754
+ "format": {},
3755
+ "id": {},
3756
+ "isDefault": {},
3757
+ "isEnabled": {},
3758
+ "name": {},
3759
+ "pluginId": {},
3760
+ "pluginObjectTypeId": {},
3761
+ "syntheticExpression": {},
3762
+ "syntheticMaximumExpression": {}
3763
+ },
3764
+ {
3765
+ "allowMaximumValue": {},
3766
+ "dataUnits": {},
3767
+ "description": {},
3768
+ "displayUnits": {},
3769
+ "extendedInfo": {},
3770
+ "format": {},
3771
+ "id": {},
3772
+ "isDefault": {},
3773
+ "isEnabled": {},
3774
+ "name": {},
3775
+ "pluginId": {},
3776
+ "pluginObjectTypeId": {},
3777
+ "syntheticExpression": {},
3778
+ "syntheticMaximumExpression": {}
3779
+ },
3780
+ {
3781
+ "allowMaximumValue": {},
3782
+ "dataUnits": {},
3783
+ "description": {},
3784
+ "displayUnits": {},
3785
+ "extendedInfo": {},
3786
+ "format": {},
3787
+ "id": {},
3788
+ "isDefault": {},
3789
+ "isEnabled": {},
3790
+ "name": {},
3791
+ "pluginId": {},
3792
+ "pluginObjectTypeId": {},
3793
+ "syntheticExpression": {},
3794
+ "syntheticMaximumExpression": {}
3795
+ },
3796
+ {
3797
+ "allowMaximumValue": {},
3798
+ "dataUnits": {},
3799
+ "description": {},
3800
+ "displayUnits": {},
3801
+ "extendedInfo": {},
3802
+ "format": {},
3803
+ "id": {},
3804
+ "isDefault": {},
3805
+ "isEnabled": {},
3806
+ "name": {},
3807
+ "pluginId": {},
3808
+ "pluginObjectTypeId": {},
3809
+ "syntheticExpression": {},
3810
+ "syntheticMaximumExpression": {}
3811
+ },
3812
+ {
3813
+ "allowMaximumValue": {},
3814
+ "dataUnits": {},
3815
+ "description": {},
3816
+ "displayUnits": {},
3817
+ "extendedInfo": {},
3818
+ "format": {},
3819
+ "id": {},
3820
+ "isDefault": {},
3821
+ "isEnabled": {},
3822
+ "name": {},
3823
+ "pluginId": {},
3824
+ "pluginObjectTypeId": {},
3825
+ "syntheticExpression": {},
3826
+ "syntheticMaximumExpression": {}
3827
+ },
3828
+ {
3829
+ "allowMaximumValue": {},
3830
+ "dataUnits": {},
3831
+ "description": {},
3832
+ "displayUnits": {},
3833
+ "extendedInfo": {},
3834
+ "format": {},
3835
+ "id": {},
3836
+ "isDefault": {},
3837
+ "isEnabled": {},
3838
+ "name": {},
3839
+ "pluginId": {},
3840
+ "pluginObjectTypeId": {},
3841
+ "syntheticExpression": {},
3842
+ "syntheticMaximumExpression": {}
3843
+ }
3844
+ ],
3845
+ "isEditable": true,
3846
+ "isEnabled": false,
3847
+ "name": "string",
3848
+ "objectTypes": [
3849
+ {
3850
+ "extendedInfo": {},
3851
+ "id": {},
3852
+ "indicatorTypes": {},
3853
+ "isEditable": {},
3854
+ "isEnabled": {},
3855
+ "name": {},
3856
+ "objectTypes": {},
3857
+ "parentObjectTypeId": {},
3858
+ "pluginId": {}
3859
+ },
3860
+ {
3861
+ "extendedInfo": {},
3862
+ "id": {},
3863
+ "indicatorTypes": {},
3864
+ "isEditable": {},
3865
+ "isEnabled": {},
3866
+ "name": {},
3867
+ "objectTypes": {},
3868
+ "parentObjectTypeId": {},
3869
+ "pluginId": {}
3870
+ },
3871
+ {
3872
+ "extendedInfo": {},
3873
+ "id": {},
3874
+ "indicatorTypes": {},
3875
+ "isEditable": {},
3876
+ "isEnabled": {},
3877
+ "name": {},
3878
+ "objectTypes": {},
3879
+ "parentObjectTypeId": {},
3880
+ "pluginId": {}
3881
+ },
3882
+ {
3883
+ "extendedInfo": {},
3884
+ "id": {},
3885
+ "indicatorTypes": {},
3886
+ "isEditable": {},
3887
+ "isEnabled": {},
3888
+ "name": {},
3889
+ "objectTypes": {},
3890
+ "parentObjectTypeId": {},
3891
+ "pluginId": {}
3892
+ },
3893
+ {
3894
+ "extendedInfo": {},
3895
+ "id": {},
3896
+ "indicatorTypes": {},
3897
+ "isEditable": {},
3898
+ "isEnabled": {},
3899
+ "name": {},
3900
+ "objectTypes": {},
3901
+ "parentObjectTypeId": {},
3902
+ "pluginId": {}
3903
+ },
3904
+ {
3905
+ "extendedInfo": {},
3906
+ "id": {},
3907
+ "indicatorTypes": {},
3908
+ "isEditable": {},
3909
+ "isEnabled": {},
3910
+ "name": {},
3911
+ "objectTypes": {},
3912
+ "parentObjectTypeId": {},
3913
+ "pluginId": {}
3914
+ },
3915
+ {
3916
+ "extendedInfo": {},
3917
+ "id": {},
3918
+ "indicatorTypes": {},
3919
+ "isEditable": {},
3920
+ "isEnabled": {},
3921
+ "name": {},
3922
+ "objectTypes": {},
3923
+ "parentObjectTypeId": {},
3924
+ "pluginId": {}
3925
+ },
3926
+ {
3927
+ "extendedInfo": {},
3928
+ "id": {},
3929
+ "indicatorTypes": {},
3930
+ "isEditable": {},
3931
+ "isEnabled": {},
3932
+ "name": {},
3933
+ "objectTypes": {},
3934
+ "parentObjectTypeId": {},
3935
+ "pluginId": {}
3936
+ },
3937
+ {
3938
+ "extendedInfo": {},
3939
+ "id": {},
3940
+ "indicatorTypes": {},
3941
+ "isEditable": {},
3942
+ "isEnabled": {},
3943
+ "name": {},
3944
+ "objectTypes": {},
3945
+ "parentObjectTypeId": {},
3946
+ "pluginId": {}
3947
+ },
3948
+ {
3949
+ "extendedInfo": {},
3950
+ "id": {},
3951
+ "indicatorTypes": {},
3952
+ "isEditable": {},
3953
+ "isEnabled": {},
3954
+ "name": {},
3955
+ "objectTypes": {},
3956
+ "parentObjectTypeId": {},
3957
+ "pluginId": {}
3958
+ }
3959
+ ],
3960
+ "parentObjectTypeId": 3,
3961
+ "pluginId": 1
3962
+ }
3963
+ ]
3964
+ },
3965
+ {
3966
+ "deviceType": {
3967
+ "id": 3,
3968
+ "name": "string",
3969
+ "parentId": 3
3970
+ },
3971
+ "objectTypes": [
3972
+ {
3973
+ "extendedInfo": {},
3974
+ "id": 4,
3975
+ "indicatorTypes": [
3976
+ {
3977
+ "allowMaximumValue": {},
3978
+ "dataUnits": {},
3979
+ "description": {},
3980
+ "displayUnits": {},
3981
+ "extendedInfo": {},
3982
+ "format": {},
3983
+ "id": {},
3984
+ "isDefault": {},
3985
+ "isEnabled": {},
3986
+ "name": {},
3987
+ "pluginId": {},
3988
+ "pluginObjectTypeId": {},
3989
+ "syntheticExpression": {},
3990
+ "syntheticMaximumExpression": {}
3991
+ },
3992
+ {
3993
+ "allowMaximumValue": {},
3994
+ "dataUnits": {},
3995
+ "description": {},
3996
+ "displayUnits": {},
3997
+ "extendedInfo": {},
3998
+ "format": {},
3999
+ "id": {},
4000
+ "isDefault": {},
4001
+ "isEnabled": {},
4002
+ "name": {},
4003
+ "pluginId": {},
4004
+ "pluginObjectTypeId": {},
4005
+ "syntheticExpression": {},
4006
+ "syntheticMaximumExpression": {}
4007
+ }
4008
+ ],
4009
+ "isEditable": false,
4010
+ "isEnabled": false,
4011
+ "name": "string",
4012
+ "objectTypes": [
4013
+ {
4014
+ "extendedInfo": {},
4015
+ "id": {},
4016
+ "indicatorTypes": {},
4017
+ "isEditable": {},
4018
+ "isEnabled": {},
4019
+ "name": {},
4020
+ "objectTypes": {},
4021
+ "parentObjectTypeId": {},
4022
+ "pluginId": {}
4023
+ },
4024
+ {
4025
+ "extendedInfo": {},
4026
+ "id": {},
4027
+ "indicatorTypes": {},
4028
+ "isEditable": {},
4029
+ "isEnabled": {},
4030
+ "name": {},
4031
+ "objectTypes": {},
4032
+ "parentObjectTypeId": {},
4033
+ "pluginId": {}
4034
+ }
4035
+ ],
4036
+ "parentObjectTypeId": 3,
4037
+ "pluginId": 9
4038
+ }
4039
+ ]
4040
+ },
4041
+ {
4042
+ "deviceType": {
4043
+ "id": 1,
4044
+ "name": "string",
4045
+ "parentId": 3
4046
+ },
4047
+ "objectTypes": [
4048
+ {
4049
+ "extendedInfo": {},
4050
+ "id": 8,
4051
+ "indicatorTypes": [
4052
+ {
4053
+ "allowMaximumValue": {},
4054
+ "dataUnits": {},
4055
+ "description": {},
4056
+ "displayUnits": {},
4057
+ "extendedInfo": {},
4058
+ "format": {},
4059
+ "id": {},
4060
+ "isDefault": {},
4061
+ "isEnabled": {},
4062
+ "name": {},
4063
+ "pluginId": {},
4064
+ "pluginObjectTypeId": {},
4065
+ "syntheticExpression": {},
4066
+ "syntheticMaximumExpression": {}
4067
+ },
4068
+ {
4069
+ "allowMaximumValue": {},
4070
+ "dataUnits": {},
4071
+ "description": {},
4072
+ "displayUnits": {},
4073
+ "extendedInfo": {},
4074
+ "format": {},
4075
+ "id": {},
4076
+ "isDefault": {},
4077
+ "isEnabled": {},
4078
+ "name": {},
4079
+ "pluginId": {},
4080
+ "pluginObjectTypeId": {},
4081
+ "syntheticExpression": {},
4082
+ "syntheticMaximumExpression": {}
4083
+ },
4084
+ {
4085
+ "allowMaximumValue": {},
4086
+ "dataUnits": {},
4087
+ "description": {},
4088
+ "displayUnits": {},
4089
+ "extendedInfo": {},
4090
+ "format": {},
4091
+ "id": {},
4092
+ "isDefault": {},
4093
+ "isEnabled": {},
4094
+ "name": {},
4095
+ "pluginId": {},
4096
+ "pluginObjectTypeId": {},
4097
+ "syntheticExpression": {},
4098
+ "syntheticMaximumExpression": {}
4099
+ },
4100
+ {
4101
+ "allowMaximumValue": {},
4102
+ "dataUnits": {},
4103
+ "description": {},
4104
+ "displayUnits": {},
4105
+ "extendedInfo": {},
4106
+ "format": {},
4107
+ "id": {},
4108
+ "isDefault": {},
4109
+ "isEnabled": {},
4110
+ "name": {},
4111
+ "pluginId": {},
4112
+ "pluginObjectTypeId": {},
4113
+ "syntheticExpression": {},
4114
+ "syntheticMaximumExpression": {}
4115
+ },
4116
+ {
4117
+ "allowMaximumValue": {},
4118
+ "dataUnits": {},
4119
+ "description": {},
4120
+ "displayUnits": {},
4121
+ "extendedInfo": {},
4122
+ "format": {},
4123
+ "id": {},
4124
+ "isDefault": {},
4125
+ "isEnabled": {},
4126
+ "name": {},
4127
+ "pluginId": {},
4128
+ "pluginObjectTypeId": {},
4129
+ "syntheticExpression": {},
4130
+ "syntheticMaximumExpression": {}
4131
+ },
4132
+ {
4133
+ "allowMaximumValue": {},
4134
+ "dataUnits": {},
4135
+ "description": {},
4136
+ "displayUnits": {},
4137
+ "extendedInfo": {},
4138
+ "format": {},
4139
+ "id": {},
4140
+ "isDefault": {},
4141
+ "isEnabled": {},
4142
+ "name": {},
4143
+ "pluginId": {},
4144
+ "pluginObjectTypeId": {},
4145
+ "syntheticExpression": {},
4146
+ "syntheticMaximumExpression": {}
4147
+ },
4148
+ {
4149
+ "allowMaximumValue": {},
4150
+ "dataUnits": {},
4151
+ "description": {},
4152
+ "displayUnits": {},
4153
+ "extendedInfo": {},
4154
+ "format": {},
4155
+ "id": {},
4156
+ "isDefault": {},
4157
+ "isEnabled": {},
4158
+ "name": {},
4159
+ "pluginId": {},
4160
+ "pluginObjectTypeId": {},
4161
+ "syntheticExpression": {},
4162
+ "syntheticMaximumExpression": {}
4163
+ }
4164
+ ],
4165
+ "isEditable": true,
4166
+ "isEnabled": false,
4167
+ "name": "string",
4168
+ "objectTypes": [
4169
+ {
4170
+ "extendedInfo": {},
4171
+ "id": {},
4172
+ "indicatorTypes": {},
4173
+ "isEditable": {},
4174
+ "isEnabled": {},
4175
+ "name": {},
4176
+ "objectTypes": {},
4177
+ "parentObjectTypeId": {},
4178
+ "pluginId": {}
4179
+ },
4180
+ {
4181
+ "extendedInfo": {},
4182
+ "id": {},
4183
+ "indicatorTypes": {},
4184
+ "isEditable": {},
4185
+ "isEnabled": {},
4186
+ "name": {},
4187
+ "objectTypes": {},
4188
+ "parentObjectTypeId": {},
4189
+ "pluginId": {}
4190
+ }
4191
+ ],
4192
+ "parentObjectTypeId": 7,
4193
+ "pluginId": 10
4194
+ },
4195
+ {
4196
+ "extendedInfo": {},
4197
+ "id": 5,
4198
+ "indicatorTypes": [
4199
+ {
4200
+ "allowMaximumValue": {},
4201
+ "dataUnits": {},
4202
+ "description": {},
4203
+ "displayUnits": {},
4204
+ "extendedInfo": {},
4205
+ "format": {},
4206
+ "id": {},
4207
+ "isDefault": {},
4208
+ "isEnabled": {},
4209
+ "name": {},
4210
+ "pluginId": {},
4211
+ "pluginObjectTypeId": {},
4212
+ "syntheticExpression": {},
4213
+ "syntheticMaximumExpression": {}
4214
+ },
4215
+ {
4216
+ "allowMaximumValue": {},
4217
+ "dataUnits": {},
4218
+ "description": {},
4219
+ "displayUnits": {},
4220
+ "extendedInfo": {},
4221
+ "format": {},
4222
+ "id": {},
4223
+ "isDefault": {},
4224
+ "isEnabled": {},
4225
+ "name": {},
4226
+ "pluginId": {},
4227
+ "pluginObjectTypeId": {},
4228
+ "syntheticExpression": {},
4229
+ "syntheticMaximumExpression": {}
4230
+ },
4231
+ {
4232
+ "allowMaximumValue": {},
4233
+ "dataUnits": {},
4234
+ "description": {},
4235
+ "displayUnits": {},
4236
+ "extendedInfo": {},
4237
+ "format": {},
4238
+ "id": {},
4239
+ "isDefault": {},
4240
+ "isEnabled": {},
4241
+ "name": {},
4242
+ "pluginId": {},
4243
+ "pluginObjectTypeId": {},
4244
+ "syntheticExpression": {},
4245
+ "syntheticMaximumExpression": {}
4246
+ }
4247
+ ],
4248
+ "isEditable": false,
4249
+ "isEnabled": false,
4250
+ "name": "string",
4251
+ "objectTypes": [
4252
+ {
4253
+ "extendedInfo": {},
4254
+ "id": {},
4255
+ "indicatorTypes": {},
4256
+ "isEditable": {},
4257
+ "isEnabled": {},
4258
+ "name": {},
4259
+ "objectTypes": {},
4260
+ "parentObjectTypeId": {},
4261
+ "pluginId": {}
4262
+ }
4263
+ ],
4264
+ "parentObjectTypeId": 2,
4265
+ "pluginId": 9
4266
+ }
4267
+ ]
4268
+ }
4269
+ ],
4270
+ "pageNumber": 6,
4271
+ "pageSize": 5,
4272
+ "totalElements": 6,
4273
+ "totalPages": 5
4274
+ }