@itentialopensource/adapter-nokia_nsp_network_management 0.1.1

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 (179) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +38 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +206 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +13 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +646 -0
  13. package/README.md +343 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +22 -0
  16. package/TAB1.md +14 -0
  17. package/TAB2.md +321 -0
  18. package/TROUBLESHOOT.md +47 -0
  19. package/adapter.js +11110 -0
  20. package/adapterBase.js +1452 -0
  21. package/entities/.generic/action.json +214 -0
  22. package/entities/.generic/schema.json +28 -0
  23. package/entities/.system/action.json +52 -0
  24. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  25. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  26. package/entities/.system/schema.json +19 -0
  27. package/entities/.system/schemaTokenReq.json +53 -0
  28. package/entities/.system/schemaTokenResp.json +31 -0
  29. package/entities/AddressPool/action.json +65 -0
  30. package/entities/AddressPool/mockdatafiles/getIPv4AddressPool-default.json +47 -0
  31. package/entities/AddressPool/mockdatafiles/obtainValueFromPool-default.json +23 -0
  32. package/entities/AddressPool/schema.json +32 -0
  33. package/entities/AuditAndAlignment/action.json +165 -0
  34. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationDeployment-default.json +6 -0
  35. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationTemplateAllDeployments-default.json +7 -0
  36. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationTemplateMisalignedDeployments-default.json +7 -0
  37. package/entities/AuditAndAlignment/mockdatafiles/auditDeployment-default.json +7 -0
  38. package/entities/AuditAndAlignment/mockdatafiles/auditNodeDeployments-default.json +6 -0
  39. package/entities/AuditAndAlignment/mockdatafiles/auditTemplate-default.json +7 -0
  40. package/entities/AuditAndAlignment/mockdatafiles/checkAuditStatusCount-default.json +15 -0
  41. package/entities/AuditAndAlignment/mockdatafiles/getAuditDetails-default.json +9 -0
  42. package/entities/AuditAndAlignment/schema.json +26 -0
  43. package/entities/BaselineOperationsRestconfAPI/action.json +207 -0
  44. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/createBaselineDetector-default.json +35 -0
  45. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getAllBaselines-default.json +44 -0
  46. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getBaseline-default.json +24 -0
  47. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getBaselineDetector-default.json +15 -0
  48. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/patchBaselineDetector-default.json +13 -0
  49. package/entities/BaselineOperationsRestconfAPI/schema.json +39 -0
  50. package/entities/Brownfield/action.json +24 -0
  51. package/entities/Brownfield/mockdatafiles/discoverDeployments-default.json +7 -0
  52. package/entities/Brownfield/schema.json +19 -0
  53. package/entities/ConfigurationDeployments/action.json +207 -0
  54. package/entities/ConfigurationDeployments/mockdatafiles/createDeployment-default.json +7 -0
  55. package/entities/ConfigurationDeployments/mockdatafiles/createPortGroup-default.json +18 -0
  56. package/entities/ConfigurationDeployments/mockdatafiles/createPortGroupDirectory-default.json +16 -0
  57. package/entities/ConfigurationDeployments/mockdatafiles/deleteDeployments-default.json +7 -0
  58. package/entities/ConfigurationDeployments/mockdatafiles/getDeployments-default.json +322 -0
  59. package/entities/ConfigurationDeployments/mockdatafiles/getPortGroupFDN-default.json +18 -0
  60. package/entities/ConfigurationDeployments/mockdatafiles/getSpecificDeployment-default.json +43 -0
  61. package/entities/ConfigurationDeployments/mockdatafiles/replaceDeployment-default.json +7 -0
  62. package/entities/ConfigurationDeployments/mockdatafiles/updateDeploymentConfiguration-default.json +7 -0
  63. package/entities/ConfigurationDeployments/schema.json +28 -0
  64. package/entities/ConfigurationTemplates/action.json +85 -0
  65. package/entities/ConfigurationTemplates/mockdatafiles/createTemplate-default.json +4 -0
  66. package/entities/ConfigurationTemplates/mockdatafiles/getTemplates-default.json +195 -0
  67. package/entities/ConfigurationTemplates/schema.json +22 -0
  68. package/entities/DataTablesRetention/action.json +86 -0
  69. package/entities/DataTablesRetention/mockdatafiles/getBaselineAgeoutPolicySettings-default.json +22 -0
  70. package/entities/DataTablesRetention/mockdatafiles/getIndicatorAgeoutPolicySettings-default.json +16 -0
  71. package/entities/DataTablesRetention/schema.json +22 -0
  72. package/entities/IETFL2Model/action.json +67 -0
  73. package/entities/IETFL2Model/mockdatafiles/getL2TopologyAttributes-default.json +5 -0
  74. package/entities/IETFL2Model/mockdatafiles/getL2TopologyNodeTerminationPoints-default.json +69 -0
  75. package/entities/IETFL2Model/schema.json +21 -0
  76. package/entities/IETFL3Model/action.json +277 -0
  77. package/entities/IETFL3Model/mockdatafiles/getAllNodesInANetwork-default.json +207 -0
  78. package/entities/IETFL3Model/mockdatafiles/getL3TopologyAttribute-default.json +8 -0
  79. package/entities/IETFL3Model/mockdatafiles/getNetworkType-default.json +7 -0
  80. package/entities/IETFL3Model/mockdatafiles/getSpecificLinkInANetwork-default.json +67 -0
  81. package/entities/IETFL3Model/mockdatafiles/getSpecificNetwork-default.json +498 -0
  82. package/entities/IETFL3Model/mockdatafiles/getSpecificNodeInANetwork-default.json +56 -0
  83. package/entities/IETFL3Model/mockdatafiles/getSpecificTerminationPointsOfANode-default.json +17 -0
  84. package/entities/IETFL3Model/mockdatafiles/getSupportingLink-default.json +8 -0
  85. package/entities/IETFL3Model/mockdatafiles/getSupportingNetwork-default.json +7 -0
  86. package/entities/IETFL3Model/mockdatafiles/getSupportingTerminationPoint-default.json +9 -0
  87. package/entities/IETFL3Model/mockdatafiles/l3GETSRTopologyLinkAttributes-default.json +41 -0
  88. package/entities/IETFL3Model/mockdatafiles/l3GETSRTopologyNodeAttributes-default.json +16 -0
  89. package/entities/IETFL3Model/schema.json +42 -0
  90. package/entities/IETFLogicalInventoryRestconfAPI/action.json +235 -0
  91. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesConfig-default.json +14 -0
  92. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesUnnumbered-default.json +28 -0
  93. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesUnnumberedIntf-default.json +21 -0
  94. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesConfig-default.json +16 -0
  95. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesIPv4Addresses-default.json +39 -0
  96. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesIPv6Addresses-default.json +38 -0
  97. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesState-default.json +15 -0
  98. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicyNodeVersionEntity-default.json +797 -0
  99. package/entities/IETFLogicalInventoryRestconfAPI/schema.json +51 -0
  100. package/entities/IETFSAPTopology/action.json +67 -0
  101. package/entities/IETFSAPTopology/mockdatafiles/getIETFNetworkFromSpecificNode-default.json +483 -0
  102. package/entities/IETFSAPTopology/mockdatafiles/getSAPNetwork-default.json +9 -0
  103. package/entities/IETFSAPTopology/mockdatafiles/getSAPsOnASpecificNodeOfSpecificServiceType-default.json +153 -0
  104. package/entities/IETFSAPTopology/schema.json +21 -0
  105. package/entities/IndicatorRules/action.json +106 -0
  106. package/entities/IndicatorRules/mockdatafiles/getAllIndicatorRules-default.json +818 -0
  107. package/entities/IndicatorRules/mockdatafiles/getSpecificIndicatorRule-default.json +119 -0
  108. package/entities/IndicatorRules/schema.json +23 -0
  109. package/entities/IndicatorTemplates/action.json +106 -0
  110. package/entities/IndicatorTemplates/mockdatafiles/avgCPUAllNodesAllActions-default.json +105 -0
  111. package/entities/IndicatorTemplates/mockdatafiles/getAllIndicatorTemplates-default.json +512 -0
  112. package/entities/IndicatorTemplates/mockdatafiles/getSpecificIndicatorTemplate-default.json +88 -0
  113. package/entities/IndicatorTemplates/mockdatafiles/uPDATEIndicatorTemplate-default.json +48 -0
  114. package/entities/IndicatorTemplates/schema.json +23 -0
  115. package/entities/Intent/action.json +105 -0
  116. package/entities/Intent/mockdatafiles/getIntent-default.json +161 -0
  117. package/entities/Intent/mockdatafiles/synchronizeIntent-default.json +6 -0
  118. package/entities/Intent/schema.json +23 -0
  119. package/entities/IntentTypeManagement/action.json +65 -0
  120. package/entities/IntentTypeManagement/mockdatafiles/getIntentTypes-default.json +482 -0
  121. package/entities/IntentTypeManagement/mockdatafiles/importIntentTypeFromIntentManager-default.json +6 -0
  122. package/entities/IntentTypeManagement/mockdatafiles/removeIntentType-default.json +7 -0
  123. package/entities/IntentTypeManagement/schema.json +21 -0
  124. package/entities/LogicalInventoryRestconfAPI/action.json +107 -0
  125. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/nspInventoryFindWithFilter-default.json +528 -0
  126. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicy-default.json +4189 -0
  127. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicyNEAndVersionSpecific-default.json +1083 -0
  128. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPollingPolicyNESpecific-default.json +1113 -0
  129. package/entities/LogicalInventoryRestconfAPI/schema.json +34 -0
  130. package/entities/ManageZTPListFromDeviceAdministrator/action.json +85 -0
  131. package/entities/ManageZTPListFromDeviceAdministrator/mockdatafiles/getZTPListFromDeviceAdministrator-default.json +114 -0
  132. package/entities/ManageZTPListFromDeviceAdministrator/schema.json +33 -0
  133. package/entities/RouterNECorrelationMappingService/action.json +147 -0
  134. package/entities/RouterNECorrelationMappingService/mockdatafiles/getCorrelationPolicy-default.json +38 -0
  135. package/entities/RouterNECorrelationMappingService/mockdatafiles/getRouterNeMapping-default.json +32 -0
  136. package/entities/RouterNECorrelationMappingService/mockdatafiles/getSpecificMappingPolicy-default.json +32 -0
  137. package/entities/RouterNECorrelationMappingService/schema.json +47 -0
  138. package/entities/TemplateMigration/action.json +44 -0
  139. package/entities/TemplateMigration/mockdatafiles/cloneTemplate-default.json +7 -0
  140. package/entities/TemplateMigration/mockdatafiles/migrateDeployments-default.json +7 -0
  141. package/entities/TemplateMigration/schema.json +20 -0
  142. package/entities/UploadMappingFiles/action.json +45 -0
  143. package/entities/UploadMappingFiles/mockdatafiles/getIETFMappingFiles-default.json +953 -0
  144. package/entities/UploadMappingFiles/schema.json +31 -0
  145. package/error.json +190 -0
  146. package/metadata.json +61 -0
  147. package/package.json +81 -0
  148. package/pronghorn.json +5141 -0
  149. package/propertiesDecorators.json +14 -0
  150. package/propertiesSchema.json +1666 -0
  151. package/refs?service=git-upload-pack +0 -0
  152. package/report/creationReport.json +657 -0
  153. package/report/update-postman.json-OpenApi3Json.json +112049 -0
  154. package/report/updateReport1718639512342.json +120 -0
  155. package/sampleProperties.json +268 -0
  156. package/test/integration/adapterTestBasicGet.js +83 -0
  157. package/test/integration/adapterTestConnectivity.js +142 -0
  158. package/test/integration/adapterTestIntegration.js +3836 -0
  159. package/test/unit/adapterBaseTestUnit.js +1024 -0
  160. package/test/unit/adapterTestUnit.js +5403 -0
  161. package/utils/adapterInfo.js +206 -0
  162. package/utils/addAuth.js +94 -0
  163. package/utils/artifactize.js +146 -0
  164. package/utils/basicGet.js +50 -0
  165. package/utils/checkMigrate.js +63 -0
  166. package/utils/entitiesToDB.js +179 -0
  167. package/utils/findPath.js +74 -0
  168. package/utils/methodDocumentor.js +273 -0
  169. package/utils/modify.js +152 -0
  170. package/utils/packModificationScript.js +35 -0
  171. package/utils/patches2bundledDeps.js +90 -0
  172. package/utils/pre-commit.sh +32 -0
  173. package/utils/removeHooks.js +20 -0
  174. package/utils/setup.js +33 -0
  175. package/utils/taskMover.js +309 -0
  176. package/utils/tbScript.js +239 -0
  177. package/utils/tbUtils.js +489 -0
  178. package/utils/testRunner.js +298 -0
  179. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,482 @@
1
+ {
2
+ "nsp-icm:imported-intent-types": {
3
+ "@": {
4
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types",
5
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types"
6
+ },
7
+ "imported-intent-type": [
8
+ {
9
+ "@": {
10
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type",
11
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-e_m'][version='2']",
12
+ "nsp-model:creation-time": "2024-04-23T16:55:31.570Z",
13
+ "nsp-model:last-modified-time": "2024-04-23T16:56:47.855Z"
14
+ },
15
+ "name": "icm-equipment-port-e_m",
16
+ "version": 2,
17
+ "status": "successful",
18
+ "message": "Successfully imported/re-imported the intent-type",
19
+ "icm-descriptor": "{\n \"category\": \"port\",\n \"description\": \"Intent-Type to configure icm-equipment-port-e_m\",\n \"role\": \"physical\",\n \"device-scope\": \"classic\",\n \"target-xpath\":\"/nsp-equipment:network/network-element/hardware-component/port[boolean(port-details[port-type='voice-port'])]\"\n}\n",
20
+ "targets": "[{\"name\":\"templatename\",\"i18n-text\":\"TemplateName\",\"value-type\":\"STRING\",\"order\":1}, {\"name\":\"objectidentifier\",\"i18n-text\":\"ObjectIdentifier\",\"value-type\":\"STRING\",\"order\":2}, {\"name\":\"port ID\",\"i18n-text\":\"Port-ID\",\"value-type\":\"STRING\",\"order\":3}]",
21
+ "description": "Intent-Type to configure icm-equipment-port-e_m",
22
+ "role": "physical",
23
+ "category": "port",
24
+ "device-scope": "classic",
25
+ "creation-time": "2024-04-23T16:55:32.443110Z",
26
+ "created-by": "admin",
27
+ "last-modified-time": "2024-04-23T16:56:47.849085Z",
28
+ "target-identifiers": [
29
+ {
30
+ "@": {
31
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
32
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-e_m'][version='2']/target-identifiers[name='port ID']",
33
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
34
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.449Z"
35
+ },
36
+ "name": "port ID",
37
+ "display-name": "Port-ID",
38
+ "order": 3
39
+ }
40
+ ],
41
+ "schema-form": [
42
+ {
43
+ "@": {
44
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
45
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-e_m'][version='2']/schema-form[name='default.schemaForm']",
46
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
47
+ "nsp-model:last-modified-time": "2024-04-23T16:56:47.857Z"
48
+ },
49
+ "name": "default.schemaForm",
50
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-e_m:icm-equipment-port-e_m\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-e_m\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-e_m.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-e_m.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-e_m.port.admin-state\",\"hide\":true,\"default\":\"Up\",\"componentId\":\"icm-equipment-port-e_m.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"Up\",\"value\":\"Up\"},{\"name\":\"Down\",\"value\":\"Down\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-e_m.port.description\",\"hide\":true,\"componentId\":\"icm-equipment-port-e_m.port.description\",\"name\":\"port.description\",\"description\":\"Description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":160,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannelEnabled\",\"hide\":true,\"default\":\"false\",\"componentId\":\"icm-equipment-port-e_m.port.voiceChannelEnabled\",\"name\":\"port.voiceChannelEnabled\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Voice Channel Enabled\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voicePort\",\"hide\":true,\"componentId\":\"icm-equipment-port-e_m.port.voicePort\",\"name\":\"port.voicePort\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Voice Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port.voicePort\",\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voicePort.tlp-rx\",\"hide\":true,\"componentId\":\"icm-equipment-port-e_m.port.voicePort.tlp-rx\",\"name\":\"port.voicePort.tlp-rx\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":70,\"min\":-160}]},\"type\":\"number\",\"title\":\"TLP-Rx\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.voicePort\",\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voicePort.tlp-tx\",\"hide\":true,\"componentId\":\"icm-equipment-port-e_m.port.voicePort.tlp-tx\",\"name\":\"port.voicePort.tlp-tx\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":70,\"min\":-160}]},\"type\":\"number\",\"title\":\"TLP-Tx\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannel\",\"hide\":true,\"componentId\":\"icm-equipment-port-e_m.port.voiceChannel\",\"name\":\"port.voiceChannel\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Voice Channel\",\"when\":{\"field\":\"port.voiceChannelEnabled\",\"value\":\"true\",\"operator\":\"equals\"}},{\"columnSpan\":2,\"propertyGroup\":\"port.voiceChannel\",\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannel.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-e_m.port.voiceChannel.admin-state\",\"name\":\"port.voiceChannel.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"Up\",\"value\":\"Up\"},{\"name\":\"Down\",\"value\":\"Down\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.voiceChannel\",\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannel.signal-mode\",\"hide\":true,\"default\":\"EM\",\"componentId\":\"icm-equipment-port-e_m.port.voiceChannel.signal-mode\",\"name\":\"port.voiceChannel.signal-mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Signal Mode\",\"required\":false,\"enum\":[{\"name\":\"EM\",\"value\":\"EM\"},{\"name\":\"Transmission-only\",\"value\":\"Transmission-only\"}]},{\"columnSpan\":6,\"propertyGroup\":\"port.voiceChannel\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group\",\"componentId\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group\",\"readOnly\":false,\"title\":\"DS0 Channel Group\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"port.voiceChannel.ds0Channel-group\",\"key\":[\"channel-group-id\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group.channel-group-id\",\"componentId\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group.channel-group-id\",\"floatingFilter\":true,\"name\":\"channel-group-id\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Channel Group ID\",\"required\":true,\"enum\":[{\"name\":\"1\",\"value\":\"1\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group.admin-state\",\"default\":\"Up\",\"componentId\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group.admin-state\",\"floatingFilter\":true,\"name\":\"admin-state\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"Up\",\"value\":\"Up\"},{\"name\":\"Down\",\"value\":\"Down\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group.encapType\",\"default\":\"CEM\",\"componentId\":\"icm-equipment-port-e_m.port.voiceChannel.ds0Channel-group.encapType\",\"floatingFilter\":true,\"name\":\"encapType\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"CEM\",\"value\":\"CEM\"}]}]}]}",
51
+ "default-target-data": " {\"port\":{\"admin-state\":\"Up\",\"voiceChannelEnabled\":\"false\"}}",
52
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"voiceChannelEnabled\":null,\"voicePort\":{\"tlp-rx\":null,\"tlp-tx\":null},\"voiceChannel\":{\"admin-state\":null,\"signal-mode\":null,\"ds0Channel-group\":[{\"channel-group-id\":null,\"admin-state\":null,\"encapType\":null}]}}}",
53
+ "flexible": true,
54
+ "keys": "[\"channel-group-id\"]",
55
+ "props": "{\"required-object\":\"{}\"}"
56
+ }
57
+ ]
58
+ },
59
+ {
60
+ "@": {
61
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type",
62
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapingress-srqos'][version='2']",
63
+ "nsp-model:creation-time": "2024-04-23T16:55:31.468Z",
64
+ "nsp-model:last-modified-time": "2024-04-23T16:55:52.463Z"
65
+ },
66
+ "name": "icm-qos-sapingress-srqos",
67
+ "version": 2,
68
+ "status": "successful",
69
+ "message": "Successfully imported/re-imported the intent-type",
70
+ "icm-descriptor": "{\n \"category\": \"QoS\",\n \"description\": \"Intent-type to configure qos sap-ingress\",\n \"role\": \"logical\",\n \"device-scope\": \"mdm-and-classic\"\n}\n",
71
+ "targets": "[{\"name\":\"templatename\",\"i18n-text\":\"TemplateName\",\"value-type\":\"STRING\",\"order\":1}, {\"name\":\"objectidentifier\",\"i18n-text\":\"ObjectIdentifier\",\"value-type\":\"STRING\",\"order\":2}, {\"name\":\"sap-ingress-policy-name\",\"length\":\"1..64\",\"i18n-text\":\"SAP Ingress Policy Name\",\"function-name\":\"suggestPolicyName\",\"value-type\":\"STRING\",\"order\":3}, {\"name\":\"policy-id\",\"i18n-text\":\"SAP Ingress Policy ID\",\"range\":\"1..65535\",\"function-name\":\"suggestPolicyId\",\"value-type\":\"NUMBER\",\"order\":4}]",
72
+ "description": "Intent-type to configure qos sap-ingress",
73
+ "role": "logical",
74
+ "category": "QoS",
75
+ "device-scope": "mdm-and-classic",
76
+ "creation-time": "2024-04-23T16:55:32.234656Z",
77
+ "created-by": "admin",
78
+ "last-modified-time": "2024-04-23T16:55:52.456302Z",
79
+ "target-identifiers": [
80
+ {
81
+ "@": {
82
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
83
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapingress-srqos'][version='2']/target-identifiers[name='sap-ingress-policy-name']",
84
+ "nsp-model:creation-time": "2024-04-23T16:55:32.247Z",
85
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.247Z"
86
+ },
87
+ "name": "sap-ingress-policy-name",
88
+ "display-name": "SAP Ingress Policy Name",
89
+ "order": 3,
90
+ "function-name": "suggestPolicyName"
91
+ },
92
+ {
93
+ "@": {
94
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
95
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapingress-srqos'][version='2']/target-identifiers[name='policy-id']",
96
+ "nsp-model:creation-time": "2024-04-23T16:55:32.247Z",
97
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.247Z"
98
+ },
99
+ "name": "policy-id",
100
+ "display-name": "SAP Ingress Policy ID",
101
+ "order": 4,
102
+ "function-name": "suggestPolicyId"
103
+ }
104
+ ],
105
+ "schema-form": [
106
+ {
107
+ "@": {
108
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
109
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapingress-srqos'][version='2']/schema-form[name='default.schemaForm']",
110
+ "nsp-model:creation-time": "2024-04-23T16:55:32.247Z",
111
+ "nsp-model:last-modified-time": "2024-04-23T16:55:52.464Z"
112
+ },
113
+ "name": "default.schemaForm",
114
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-qos-sapingress-srqos:icm-qos-sapingress-srqos\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-qos-sapingress-srqos\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress\",\"name\":\"sap-ingress\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SAP Ingress\"},{\"columnSpan\":2,\"propertyGroup\":\"sap-ingress\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.description\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.description\",\"name\":\"sap-ingress.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":80,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"sap-ingress\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.default-fc\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.default-fc\",\"name\":\"sap-ingress.default-fc\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Default FC\",\"required\":false,\"enum\":[{\"name\":\"af\",\"value\":\"af\"},{\"name\":\"be\",\"value\":\"be\"},{\"name\":\"l1\",\"value\":\"l1\"},{\"name\":\"l2\",\"value\":\"l2\"},{\"name\":\"nc\",\"value\":\"nc\"},{\"name\":\"ef\",\"value\":\"ef\"},{\"name\":\"h1\",\"value\":\"h1\"},{\"name\":\"h2\",\"value\":\"h2\"}]},{\"columnSpan\":2,\"propertyGroup\":\"sap-ingress\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.default-priority\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.default-priority\",\"name\":\"sap-ingress.default-priority\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Default Priority\",\"required\":false,\"enum\":[{\"name\":\"low\",\"value\":\"low\"},{\"name\":\"high\",\"value\":\"high\"}]},{\"columnSpan\":6,\"propertyGroup\":\"sap-ingress\",\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue\",\"readOnly\":false,\"title\":\"Queue\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"sap-ingress.queue\",\"key\":[\"queue-id\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.queue-id\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.queue-id\",\"floatingFilter\":true,\"name\":\"queue-id\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":32,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Queue ID\",\"required\":true},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.queue-type\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.queue-type\",\"floatingFilter\":true,\"name\":\"queue-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Queue Type\",\"required\":false,\"enum\":[{\"name\":\"expedited\",\"value\":\"expedited\"},{\"name\":\"auto-expedited\",\"value\":\"auto-expedited\"},{\"name\":\"best-effort\",\"value\":\"best-effort\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.queue-mode\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.queue-mode\",\"floatingFilter\":true,\"name\":\"queue-mode\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Queue Mode\",\"required\":false,\"enum\":[{\"name\":\"priority\",\"value\":\"priority\"},{\"name\":\"profile\",\"value\":\"profile\"}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent\",\"floatingFilter\":true,\"name\":\"scheduler-parent\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Scheduler Parent\"},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.scheduler-name\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.scheduler-name\",\"floatingFilter\":true,\"name\":\"scheduler-parent.scheduler-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"string\",\"title\":\"Scheduler Name\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.level\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.level\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Level\",\"when\":{\"field\":\"scheduler-parent.scheduler-name\",\"operator\":\"exists\"},\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.level\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":1}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.weight\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.weight\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Weight\",\"when\":{\"field\":\"scheduler-parent.scheduler-name\",\"operator\":\"exists\"},\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.weight\",\"validations\":{\"ranges\":[{\"max\":100,\"min\":0}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.cir-level\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.cir-level\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR Level\",\"when\":{\"field\":\"scheduler-parent.scheduler-name\",\"operator\":\"exists\"},\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.cir-level\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":0}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.cir-weight\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.scheduler-parent.cir-weight\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR Weight\",\"when\":{\"field\":\"scheduler-parent.scheduler-name\",\"operator\":\"exists\"},\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.cir-weight\",\"validations\":{\"ranges\":[{\"max\":100,\"min\":0}]}},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate\",\"floatingFilter\":true,\"name\":\"rate\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Rate\"},{\"columnSpan\":2,\"propertyGroup\":\"rate\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate.pir\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate.pir\",\"floatingFilter\":true,\"description\":\"-1:max, <1..6400000000>\",\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"PIR\",\"required\":false,\"hide\":true,\"name\":\"rate.pir\",\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":6400000000,\"min\":1}]}},{\"columnSpan\":2,\"propertyGroup\":\"rate\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate.cir\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate.cir\",\"floatingFilter\":true,\"description\":\"-1:max, <0..6400000000>\",\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR\",\"required\":false,\"hide\":true,\"name\":\"rate.cir\",\"validations\":{\"ranges\":[{\"max\":6400000000,\"min\":-1}]}},{\"columnSpan\":2,\"propertyGroup\":\"rate\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate.fir\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.rate.fir\",\"floatingFilter\":true,\"description\":\"-1:max, <0..6400000000>\",\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"FIR\",\"required\":false,\"hide\":true,\"name\":\"rate.fir\",\"validations\":{\"ranges\":[{\"max\":6400000000,\"min\":-1}]}},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule\",\"hide\":true,\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule\",\"floatingFilter\":true,\"name\":\"adaptation-rule\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Adaptation Rule\"},{\"columnSpan\":2,\"propertyGroup\":\"adaptation-rule\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule.pir\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule.pir\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"PIR\",\"required\":false,\"enum\":[{\"name\":\"max\",\"value\":\"max\"},{\"name\":\"min\",\"value\":\"min\"},{\"name\":\"closest\",\"value\":\"closest\"}],\"hide\":true,\"name\":\"adaptation-rule.pir\"},{\"columnSpan\":2,\"propertyGroup\":\"adaptation-rule\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule.cir\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule.cir\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"CIR\",\"required\":false,\"enum\":[{\"name\":\"max\",\"value\":\"max\"},{\"name\":\"min\",\"value\":\"min\"},{\"name\":\"closest\",\"value\":\"closest\"}],\"hide\":true,\"name\":\"adaptation-rule.cir\"},{\"columnSpan\":2,\"propertyGroup\":\"adaptation-rule\",\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule.fir\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.queue.adaptation-rule.fir\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"FIR\",\"required\":false,\"enum\":[{\"name\":\"max\",\"value\":\"max\"},{\"name\":\"min\",\"value\":\"min\"},{\"name\":\"closest\",\"value\":\"closest\"}],\"hide\":true,\"name\":\"adaptation-rule.fir\"}]},{\"columnSpan\":6,\"propertyGroup\":\"sap-ingress\",\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.fc\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.fc\",\"readOnly\":false,\"title\":\"FC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"sap-ingress.fc\",\"key\":[\"fc-name\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.fc.fc-name\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.fc.fc-name\",\"floatingFilter\":true,\"name\":\"fc-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"FC Name\",\"required\":true,\"enum\":[{\"name\":\"af\",\"value\":\"af\"},{\"name\":\"be\",\"value\":\"be\"},{\"name\":\"l1\",\"value\":\"l1\"},{\"name\":\"l2\",\"value\":\"l2\"},{\"name\":\"nc\",\"value\":\"nc\"},{\"name\":\"ef\",\"value\":\"ef\"},{\"name\":\"h1\",\"value\":\"h1\"},{\"name\":\"h2\",\"value\":\"h2\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.fc.profile\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.fc.profile\",\"floatingFilter\":true,\"name\":\"profile\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Profile\",\"required\":false,\"enum\":[{\"name\":\"none\",\"value\":\"none\"},{\"name\":\"in\",\"value\":\"in\"},{\"name\":\"out\",\"value\":\"out\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapingress-srqos.sap-ingress.fc.queue\",\"componentId\":\"icm-qos-sapingress-srqos.sap-ingress.fc.queue\",\"floatingFilter\":true,\"readOnly\":false,\"suggest\":\"suggestQueueId\",\"sortable\":true,\"type\":\"number\",\"title\":\"Queue\",\"required\":false,\"component\":\"autoComplete\",\"name\":\"queue\",\"validations\":{\"ranges\":[{\"max\":32,\"min\":0}]}}]}]}",
115
+ "default-target-data": " {}",
116
+ "target-data-struct": "{\"sap-ingress\":{\"description\":null,\"default-fc\":null,\"default-priority\":null,\"queue\":[{\"queue-id\":null,\"queue-type\":null,\"queue-mode\":null,\"scheduler-parent\":{\"scheduler-name\":null,\"level\":null,\"weight\":null,\"cir-level\":null,\"cir-weight\":null},\"rate\":{\"pir\":null,\"cir\":null,\"fir\":null},\"adaptation-rule\":{\"pir\":null,\"cir\":null,\"fir\":null}}],\"fc\":[{\"fc-name\":null,\"profile\":null,\"queue\":null}]}}",
117
+ "flexible": true,
118
+ "keys": "[\"queue-id\",\"fc-name\"]",
119
+ "props": "{\"required-object\":\"{}\"}"
120
+ }
121
+ ]
122
+ },
123
+ {
124
+ "@": {
125
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type",
126
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-router-policystatement-srrouter'][version='2']",
127
+ "nsp-model:creation-time": "2024-04-23T16:55:31.468Z",
128
+ "nsp-model:last-modified-time": "2024-04-23T16:55:44.175Z"
129
+ },
130
+ "name": "icm-router-policystatement-srrouter",
131
+ "version": 2,
132
+ "status": "successful",
133
+ "message": "Successfully imported/re-imported the intent-type",
134
+ "icm-descriptor": "{\n \"role\": \"logical\",\n \"category\": \"router\",\n \"description\": \"Intent-type to configure policy statement\",\n \"device-scope\": \"mdm-and-classic\"\n}\n",
135
+ "targets": "[{\"name\":\"templatename\",\"i18n-text\":\"TemplateName\",\"value-type\":\"STRING\",\"order\":1}, {\"name\":\"objectidentifier\",\"i18n-text\":\"ObjectIdentifier\",\"value-type\":\"STRING\",\"order\":2}, {\"name\":\"name\",\"length\":\"1..64\",\"i18n-text\":\"Policy Statement Name\",\"value-type\":\"STRING\",\"order\":3}]",
136
+ "description": "Intent-type to configure policy statement",
137
+ "role": "logical",
138
+ "category": "router",
139
+ "device-scope": "mdm-and-classic",
140
+ "creation-time": "2024-04-23T16:55:32.034691Z",
141
+ "created-by": "admin",
142
+ "last-modified-time": "2024-04-23T16:55:44.141031Z",
143
+ "target-identifiers": [
144
+ {
145
+ "@": {
146
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
147
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-router-policystatement-srrouter'][version='2']/target-identifiers[name='name']",
148
+ "nsp-model:creation-time": "2024-04-23T16:55:32.038Z",
149
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.038Z"
150
+ },
151
+ "name": "name",
152
+ "display-name": "Policy Statement Name",
153
+ "order": 3
154
+ }
155
+ ],
156
+ "schema-form": [
157
+ {
158
+ "@": {
159
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
160
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-router-policystatement-srrouter'][version='2']/schema-form[name='default.schemaForm']",
161
+ "nsp-model:creation-time": "2024-04-23T16:55:32.038Z",
162
+ "nsp-model:last-modified-time": "2024-04-23T16:55:44.180Z"
163
+ },
164
+ "name": "default.schemaForm",
165
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-router-policystatement-srrouter:icm-router-policystatement-srrouter\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-router-policystatement-srrouter\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement\",\"name\":\"policy-statement\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Policy Statement\"},{\"columnSpan\":2,\"propertyGroup\":\"policy-statement\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.enableDefaultAction\",\"default\":false,\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.enableDefaultAction\",\"name\":\"policy-statement.enableDefaultAction\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable Default Action\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"policy-statement\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.default-action\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.default-action\",\"name\":\"policy-statement.default-action\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Default Action\",\"when\":{\"field\":\"policy-statement.enableDefaultAction\",\"value\":\"true\",\"operator\":\"equals\"}},{\"columnSpan\":2,\"propertyGroup\":\"policy-statement.default-action\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.default-action.action-type\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.default-action.action-type\",\"name\":\"policy-statement.default-action.action-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Action Type\",\"required\":false,\"enum\":[{\"name\":\"accept\",\"value\":\"accept\"},{\"name\":\"reject\",\"value\":\"reject\"},{\"name\":\"next-entry\",\"value\":\"next-entry\"},{\"name\":\"next-policy\",\"value\":\"next-policy\"}]},{\"columnSpan\":6,\"propertyGroup\":\"policy-statement\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry\",\"readOnly\":false,\"title\":\"Entry\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"policy-statement.entry\",\"key\":[\"entry-id\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.entry-id\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.entry-id\",\"floatingFilter\":true,\"name\":\"entry-id\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":4294967295,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Entry Id\",\"required\":true},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.description\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.description\",\"floatingFilter\":true,\"name\":\"description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":80,\"min\":0}]},\"sortable\":true,\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from\",\"floatingFilter\":true,\"name\":\"from\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"From\"},{\"columnSpan\":4,\"propertyGroup\":\"from\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.prefix-list\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.prefix-list\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"propertyList\",\"title\":\"Prefix List\",\"propertyListType\":\"string\",\"required\":false,\"component\":{\"list\":\"simplePropertyList\",\"picker\":\"simpleInputPicker\"},\"hide\":true,\"name\":\"from.prefix-list\"},{\"columnSpan\":4,\"propertyGroup\":\"from\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.family\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.family\",\"floatingFilter\":true,\"readOnly\":false,\"suggest\":\"suggestFamily\",\"sortable\":true,\"type\":\"list\",\"title\":\"Family\",\"propertyListType\":\"string\",\"required\":false,\"component\":{\"list\":\"simplePropertyList\",\"input\":\"simpleAutoCompletePicker\"},\"hide\":true,\"name\":\"from.family\"},{\"columnSpan\":7,\"propertyGroup\":\"from\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community\",\"floatingFilter\":true,\"name\":\"from.community\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Community\"},{\"columnSpan\":2,\"propertyGroup\":\"from.community\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community.community\",\"default\":\"name\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community.community\",\"cases\":[{\"columnSpan\":2,\"name\":\"expression\",\"label\":\"Expression\",\"children\":[\"from.community.expression\"],\"value\":\"expression\"},{\"columnSpan\":2,\"name\":\"name\",\"label\":\"Name\",\"children\":[\"from.community.name\"],\"value\":\"name\"}],\"floatingFilter\":true,\"name\":\"from.community.community\",\"sortable\":true,\"title\":\"Community\",\"type\":\"choice\"},{\"columnSpan\":2,\"propertyGroup\":\"from.community\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community.expression\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community.expression\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"string\",\"title\":\"Expression\",\"required\":false,\"hide\":true,\"name\":\"from.community.expression\",\"choice\":\"from.community.community.expression\"},{\"columnSpan\":2,\"propertyGroup\":\"from.community\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community.name\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.community.name\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"string\",\"title\":\"Name\",\"required\":false,\"hide\":true,\"name\":\"from.community.name\",\"choice\":\"from.community.community.name\"},{\"columnSpan\":7,\"propertyGroup\":\"from\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.protocol\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.protocol\",\"floatingFilter\":true,\"name\":\"from.protocol\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Protocol\"},{\"columnSpan\":4,\"propertyGroup\":\"from.protocol\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.protocol.name\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.from.protocol.name\",\"floatingFilter\":true,\"readOnly\":false,\"suggest\":\"suggestProtocol\",\"sortable\":true,\"type\":\"list\",\"title\":\"Name\",\"propertyListType\":\"string\",\"required\":false,\"component\":{\"list\":\"simplePropertyList\",\"input\":\"simpleAutoCompletePicker\"},\"hide\":true,\"name\":\"from.protocol.name\"},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.to\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.to\",\"floatingFilter\":true,\"name\":\"to\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"To\"},{\"columnSpan\":7,\"propertyGroup\":\"to\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.to.protocol\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.to.protocol\",\"floatingFilter\":true,\"name\":\"to.protocol\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Protocol\"},{\"columnSpan\":4,\"propertyGroup\":\"to.protocol\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.to.protocol.name\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.to.protocol.name\",\"floatingFilter\":true,\"readOnly\":false,\"suggest\":\"suggestProtocol\",\"sortable\":true,\"type\":\"list\",\"title\":\"Name\",\"propertyListType\":\"string\",\"required\":false,\"component\":{\"list\":\"simplePropertyList\",\"input\":\"simpleAutoCompletePicker\"},\"hide\":true,\"name\":\"to.protocol.name\"},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action\",\"floatingFilter\":true,\"name\":\"action\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Action\"},{\"columnSpan\":2,\"propertyGroup\":\"action\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.action-type\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.action-type\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Action Type\",\"required\":false,\"enum\":[{\"name\":\"accept\",\"value\":\"accept\"},{\"name\":\"reject\",\"value\":\"reject\"},{\"name\":\"next-entry\",\"value\":\"next-entry\"},{\"name\":\"next-policy\",\"value\":\"next-policy\"}],\"hide\":true,\"name\":\"action.action-type\"},{\"columnSpan\":2,\"propertyGroup\":\"action\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.local-preference\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.local-preference\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Local Preference\",\"required\":false,\"hide\":true,\"name\":\"action.local-preference\",\"validations\":{\"ranges\":[{\"max\":4294967295,\"min\":0}]}},{\"columnSpan\":2,\"propertyGroup\":\"action\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.preference\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.preference\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Preference\",\"required\":false,\"hide\":true,\"name\":\"action.preference\",\"validations\":{\"ranges\":[{\"max\":255,\"min\":1}]}},{\"columnSpan\":7,\"propertyGroup\":\"action\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.community\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.community\",\"floatingFilter\":true,\"name\":\"action.community\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Community\"},{\"columnSpan\":4,\"propertyGroup\":\"action.community\",\"newRow\":true,\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.community.add\",\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.community.add\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"propertyList\",\"title\":\"Add\",\"propertyListType\":\"string\",\"required\":false,\"component\":{\"list\":\"simplePropertyList\",\"picker\":\"simpleInputPicker\"},\"hide\":true,\"name\":\"action.community.add\"},{\"columnSpan\":2,\"propertyGroup\":\"action\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.admin-tag-policy\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.admin-tag-policy\",\"floatingFilter\":true,\"name\":\"action.admin-tag-policy\",\"readOnly\":false,\"sortable\":true,\"type\":\"string\",\"title\":\"Admin Tag Policy\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"action\",\"_viewConfigPath\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.create-mpls-tunnel\",\"hide\":true,\"componentId\":\"icm-router-policystatement-srrouter.policy-statement.entry.action.create-mpls-tunnel\",\"floatingFilter\":true,\"name\":\"action.create-mpls-tunnel\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Create Mpls Tunnel\",\"required\":false}]}]}",
166
+ "default-target-data": " {\"policy-statement\":{\"enableDefaultAction\":false}}",
167
+ "target-data-struct": "{\"policy-statement\":{\"enableDefaultAction\":null,\"default-action\":{\"action-type\":null},\"entry\":[{\"entry-id\":null,\"description\":null,\"from\":{\"prefix-list\":[],\"family\":[],\"community\":{\"community\":null,\"expression\":null,\"name\":null},\"protocol\":{\"name\":[]}},\"to\":{\"protocol\":{\"name\":[]}},\"action\":{\"action-type\":null,\"local-preference\":null,\"preference\":null,\"community\":{\"add\":[]},\"admin-tag-policy\":null,\"create-mpls-tunnel\":null}}]}}",
168
+ "flexible": true,
169
+ "keys": "[\"entry-id\"]",
170
+ "props": "{\"required-object\":\"{}\"}"
171
+ }
172
+ ]
173
+ },
174
+ {
175
+ "@": {
176
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type",
177
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-system-ptp'][version='2']",
178
+ "nsp-model:creation-time": "2024-04-23T16:55:31.637Z",
179
+ "nsp-model:last-modified-time": "2024-04-23T16:56:06.148Z"
180
+ },
181
+ "name": "icm-system-ptp",
182
+ "version": 2,
183
+ "status": "successful",
184
+ "message": "Successfully imported/re-imported the intent-type",
185
+ "icm-descriptor": "{\n \"role\": \"logical\",\n \"category\": \"PTP\",\n \"description\": \"Intent-Type to configure system ptp\",\n \"device-scope\": \"mdm-and-classic\",\n \"select-target\": \"single\"\n}\n",
186
+ "targets": "[{\"name\":\"templatename\",\"i18n-text\":\"TemplateName\",\"value-type\":\"STRING\",\"order\":1}, {\"name\":\"objectidentifier\",\"i18n-text\":\"ObjectIdentifier\",\"value-type\":\"STRING\",\"order\":2}, {\"name\":\"ptp\",\"pattern\":\"^(ptp)$\",\"i18n-text\":\"PTP\",\"function-name\":\"suggestPtp\",\"value-type\":\"STRING\",\"order\":3}]",
187
+ "description": "Intent-Type to configure system ptp",
188
+ "role": "logical",
189
+ "category": "PTP",
190
+ "device-scope": "mdm-and-classic",
191
+ "creation-time": "2024-04-23T16:55:32.442815Z",
192
+ "created-by": "admin",
193
+ "last-modified-time": "2024-04-23T16:56:06.141164Z",
194
+ "target-identifiers": [
195
+ {
196
+ "@": {
197
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
198
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-system-ptp'][version='2']/target-identifiers[name='ptp']",
199
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
200
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.449Z"
201
+ },
202
+ "name": "ptp",
203
+ "display-name": "PTP",
204
+ "order": 3,
205
+ "pattern": "^(ptp)$",
206
+ "function-name": "suggestPtp"
207
+ }
208
+ ],
209
+ "schema-form": [
210
+ {
211
+ "@": {
212
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
213
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-system-ptp'][version='2']/schema-form[name='default.schemaForm']",
214
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
215
+ "nsp-model:last-modified-time": "2024-04-23T16:56:06.154Z"
216
+ },
217
+ "name": "default.schemaForm",
218
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-system-ptp:icm-system-ptp\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-system-ptp\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-system-ptp.ptp\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp\",\"name\":\"ptp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"PTP\"},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.admin-state\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.admin-state\",\"name\":\"ptp.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.announce-receipt-timeout\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.announce-receipt-timeout\",\"name\":\"ptp.announce-receipt-timeout\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":10,\"min\":2}]},\"type\":\"number\",\"title\":\"Announce Receipt Timeout\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.log-announce-interval\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.log-announce-interval\",\"name\":\"ptp.log-announce-interval\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":4,\"min\":-3}]},\"type\":\"number\",\"title\":\"Log Announce Interval\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.clock-type\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.clock-type\",\"name\":\"ptp.clock-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Clock Type\",\"required\":false,\"enum\":[{\"name\":\"slave-only\",\"value\":\"slave-only\"},{\"name\":\"master-only\",\"value\":\"master-only\"},{\"name\":\"boundary\",\"value\":\"boundary\"}]},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.network-type\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.network-type\",\"name\":\"ptp.network-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Network Type\",\"required\":false,\"enum\":[{\"name\":\"sonet\",\"value\":\"sonet\"},{\"name\":\"sdh\",\"value\":\"sdh\"}]},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.domain\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.domain\",\"name\":\"ptp.domain\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":255,\"min\":0}]},\"type\":\"number\",\"title\":\"Domain\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.profile\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.profile\",\"name\":\"ptp.profile\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Profile\",\"required\":false,\"enum\":[{\"name\":\"g8265dot1-2010\",\"value\":\"g8265dot1-2010\"},{\"name\":\"ieee1588-2008\",\"value\":\"ieee1588-2008\"},{\"name\":\"g8275dot1-2014\",\"value\":\"g8275dot1-2014\"}]},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.local-priority\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.local-priority\",\"name\":\"ptp.local-priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":255,\"min\":1}]},\"type\":\"number\",\"title\":\"Local Priority\",\"when\":\"ptp.profile = 'g8275dot1-2014'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.priority1\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.priority1\",\"name\":\"ptp.priority1\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":255,\"min\":0}]},\"type\":\"number\",\"title\":\"Priority1\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.priority2\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.priority2\",\"name\":\"ptp.priority2\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":255,\"min\":0}]},\"type\":\"number\",\"title\":\"Priority2\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"ptp\",\"_viewConfigPath\":\"icm-system-ptp.ptp.tx-while-sync-uncertain\",\"hide\":true,\"componentId\":\"icm-system-ptp.ptp.tx-while-sync-uncertain\",\"name\":\"ptp.tx-while-sync-uncertain\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Tx While Sync Uncertain\",\"required\":false},{\"columnSpan\":6,\"propertyGroup\":\"ptp\",\"newRow\":true,\"_viewConfigPath\":\"icm-system-ptp.ptp.port\",\"componentId\":\"icm-system-ptp.ptp.port\",\"readOnly\":false,\"title\":\"Port\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"ptp.port\",\"key\":[\"port-id\"],\"properties\":[{\"columnSpan\":2,\"displayKey\":\"port-id\",\"_viewConfigPath\":\"icm-system-ptp.ptp.port.port-id\",\"componentId\":\"icm-system-ptp.ptp.port.port-id\",\"floatingFilter\":true,\"readOnly\":false,\"componentProps\":{\"isPagination\":true,\"isObject\":false,\"paginationProps\":{\"pageLabel\":\"Page\"}},\"suggest\":\"suggestPortIds\",\"sortable\":true,\"type\":\"leafref\",\"title\":\"Port Id\",\"required\":true,\"name\":\"port-id\",\"properties\":[{\"name\":\"port-id\",\"description\":\"Port ID\",\"floatingFilter\":true,\"title\":\"Port ID\",\"type\":\"string\"},{\"name\":\"description\",\"description\":\"Description\",\"floatingFilter\":true,\"title\":\"Description\",\"type\":\"string\"},{\"name\":\"encapType\",\"description\":\"Encapsulation Type\",\"floatingFilter\":true,\"title\":\"Encapsulation Type\",\"type\":\"string\"},{\"name\":\"mode\",\"description\":\"Mode\",\"floatingFilter\":true,\"title\":\"Mode\",\"type\":\"string\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-system-ptp.ptp.port.admin-state\",\"componentId\":\"icm-system-ptp.ptp.port.admin-state\",\"floatingFilter\":true,\"name\":\"admin-state\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-system-ptp.ptp.port.address\",\"componentId\":\"icm-system-ptp.ptp.port.address\",\"floatingFilter\":true,\"name\":\"address\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Address\",\"required\":false,\"enum\":[{\"name\":\"01:80:c2:00:00:0e\",\"value\":\"01:80:c2:00:00:0e\"},{\"name\":\"01:1b:19:00:00:00\",\"value\":\"01:1b:19:00:00:00\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-system-ptp.ptp.port.local-priority\",\"componentId\":\"icm-system-ptp.ptp.port.local-priority\",\"floatingFilter\":true,\"name\":\"local-priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":255,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Local Priority\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-system-ptp.ptp.port.log-delay-interval\",\"componentId\":\"icm-system-ptp.ptp.port.log-delay-interval\",\"floatingFilter\":true,\"name\":\"log-delay-interval\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":0,\"min\":-6}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Log Delay Interval\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-system-ptp.ptp.port.log-sync-interval\",\"componentId\":\"icm-system-ptp.ptp.port.log-sync-interval\",\"floatingFilter\":true,\"name\":\"log-sync-interval\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":0,\"min\":-6}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Log Sync Interval\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-system-ptp.ptp.port.master-only\",\"componentId\":\"icm-system-ptp.ptp.port.master-only\",\"floatingFilter\":true,\"name\":\"master-only\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Master Only\",\"required\":false}]}]}",
219
+ "default-target-data": " {}",
220
+ "target-data-struct": "{\"ptp\":{\"admin-state\":null,\"announce-receipt-timeout\":null,\"log-announce-interval\":null,\"clock-type\":null,\"network-type\":null,\"domain\":null,\"profile\":null,\"local-priority\":null,\"priority1\":null,\"priority2\":null,\"tx-while-sync-uncertain\":null,\"port\":[{\"port-id\":null,\"admin-state\":null,\"address\":null,\"local-priority\":null,\"log-delay-interval\":null,\"log-sync-interval\":null,\"master-only\":null}]}}",
221
+ "flexible": true,
222
+ "keys": "[\"port-id\"]",
223
+ "props": "{\"required-object\":\"{}\"}"
224
+ }
225
+ ]
226
+ },
227
+ {
228
+ "@": {
229
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type",
230
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapegress-srqos'][version='2']",
231
+ "nsp-model:creation-time": "2024-04-23T16:55:31.471Z",
232
+ "nsp-model:last-modified-time": "2024-04-23T16:55:59.454Z"
233
+ },
234
+ "name": "icm-qos-sapegress-srqos",
235
+ "version": 2,
236
+ "status": "successful",
237
+ "message": "Successfully imported/re-imported the intent-type",
238
+ "icm-descriptor": "{\n \"role\": \"logical\",\n \"category\": \"QoS\",\n \"description\": \"Intent-type to configure qos sap-egress\",\n \"device-scope\": \"mdm-and-classic\"\n}\n",
239
+ "targets": "[{\"name\":\"templatename\",\"i18n-text\":\"TemplateName\",\"value-type\":\"STRING\",\"order\":1}, {\"name\":\"objectidentifier\",\"i18n-text\":\"ObjectIdentifier\",\"value-type\":\"STRING\",\"order\":2}, {\"name\":\"sap-egress-policy-name\",\"length\":\"1..64\",\"i18n-text\":\"SAP Egress Policy Name\",\"function-name\":\"suggestPolicyName\",\"value-type\":\"STRING\",\"order\":3}, {\"name\":\"policy-id\",\"i18n-text\":\"SAP Egress Policy ID\",\"range\":\"1..65535\",\"function-name\":\"suggestPolicyId\",\"value-type\":\"NUMBER\",\"order\":4}]",
240
+ "description": "Intent-type to configure qos sap-egress",
241
+ "role": "logical",
242
+ "category": "QoS",
243
+ "device-scope": "mdm-and-classic",
244
+ "creation-time": "2024-04-23T16:55:32.335622Z",
245
+ "created-by": "admin",
246
+ "last-modified-time": "2024-04-23T16:55:59.446788Z",
247
+ "target-identifiers": [
248
+ {
249
+ "@": {
250
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
251
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapegress-srqos'][version='2']/target-identifiers[name='sap-egress-policy-name']",
252
+ "nsp-model:creation-time": "2024-04-23T16:55:32.337Z",
253
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.337Z"
254
+ },
255
+ "name": "sap-egress-policy-name",
256
+ "display-name": "SAP Egress Policy Name",
257
+ "order": 3,
258
+ "function-name": "suggestPolicyName"
259
+ },
260
+ {
261
+ "@": {
262
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
263
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapegress-srqos'][version='2']/target-identifiers[name='policy-id']",
264
+ "nsp-model:creation-time": "2024-04-23T16:55:32.337Z",
265
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.337Z"
266
+ },
267
+ "name": "policy-id",
268
+ "display-name": "SAP Egress Policy ID",
269
+ "order": 4,
270
+ "function-name": "suggestPolicyId"
271
+ }
272
+ ],
273
+ "schema-form": [
274
+ {
275
+ "@": {
276
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
277
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-qos-sapegress-srqos'][version='2']/schema-form[name='default.schemaForm']",
278
+ "nsp-model:creation-time": "2024-04-23T16:55:32.337Z",
279
+ "nsp-model:last-modified-time": "2024-04-23T16:55:59.455Z"
280
+ },
281
+ "name": "default.schemaForm",
282
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-qos-sapegress-srqos:icm-qos-sapegress-srqos\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-qos-sapegress-srqos\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress\",\"name\":\"sap-egress\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SAP Egress\"},{\"columnSpan\":2,\"propertyGroup\":\"sap-egress\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.description\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.description\",\"name\":\"sap-egress.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":80,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":6,\"propertyGroup\":\"sap-egress\",\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue\",\"readOnly\":false,\"title\":\"Queue\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"sap-egress.queue\",\"key\":[\"queue-id\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-id\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-id\",\"floatingFilter\":true,\"name\":\"queue-id\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":8,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Queue ID\",\"required\":true},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-type\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-type\",\"floatingFilter\":true,\"name\":\"queue-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Queue Type\",\"required\":false,\"enum\":[{\"name\":\"expedited\",\"value\":\"expedited\"},{\"name\":\"auto-expedited\",\"value\":\"auto-expedited\"},{\"name\":\"best-effort\",\"value\":\"best-effort\"}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent\",\"floatingFilter\":true,\"name\":\"scheduler-parent\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Scheduler Parent\"},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.scheduler-name\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.scheduler-name\",\"floatingFilter\":true,\"name\":\"scheduler-parent.scheduler-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"string\",\"title\":\"Scheduler Name\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.level\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.level\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Level\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.level\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":1}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.weight\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.weight\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Weight\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.weight\",\"validations\":{\"ranges\":[{\"max\":100,\"min\":0}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-level\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-level\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR Level\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.cir-level\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":0}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-weight\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-weight\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR Weight\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.cir-weight\",\"validations\":{\"ranges\":[{\"max\":100,\"min\":0}]}},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule\",\"floatingFilter\":true,\"name\":\"adaptation-rule\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Adaptation Rule\"},{\"columnSpan\":2,\"propertyGroup\":\"adaptation-rule\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.pir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.pir\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"PIR\",\"required\":false,\"enum\":[{\"name\":\"max\",\"value\":\"max\"},{\"name\":\"min\",\"value\":\"min\"},{\"name\":\"closest\",\"value\":\"closest\"}],\"hide\":true,\"name\":\"adaptation-rule.pir\"},{\"columnSpan\":2,\"propertyGroup\":\"adaptation-rule\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.cir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.cir\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"CIR\",\"required\":false,\"enum\":[{\"name\":\"max\",\"value\":\"max\"},{\"name\":\"min\",\"value\":\"min\"},{\"name\":\"closest\",\"value\":\"closest\"}],\"hide\":true,\"name\":\"adaptation-rule.cir\"},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate\",\"floatingFilter\":true,\"name\":\"rate\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Rate\"},{\"columnSpan\":2,\"propertyGroup\":\"rate\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.pir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.pir\",\"floatingFilter\":true,\"description\":\"-1:max, <1..6400000000>\",\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"PIR\",\"required\":false,\"hide\":true,\"name\":\"rate.pir\",\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":6400000000,\"min\":1}]}},{\"columnSpan\":2,\"propertyGroup\":\"rate\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.cir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.cir\",\"floatingFilter\":true,\"description\":\"-1:max, <0..6400000000>\",\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR\",\"required\":false,\"hide\":true,\"name\":\"rate.cir\",\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":6400000000,\"min\":0}]}}]},{\"columnSpan\":6,\"propertyGroup\":\"sap-egress\",\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.fc\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.fc\",\"readOnly\":false,\"title\":\"FC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"sap-egress.fc\",\"key\":[\"fc-name\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.fc.fc-name\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.fc.fc-name\",\"floatingFilter\":true,\"name\":\"fc-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"FC Name\",\"required\":true,\"enum\":[{\"name\":\"be\",\"value\":\"be\"},{\"name\":\"l2\",\"value\":\"l2\"},{\"name\":\"af\",\"value\":\"af\"},{\"name\":\"l1\",\"value\":\"l1\"},{\"name\":\"h2\",\"value\":\"h2\"},{\"name\":\"ef\",\"value\":\"ef\"},{\"name\":\"h1\",\"value\":\"h1\"},{\"name\":\"nc\",\"value\":\"nc\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.fc.queue\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.fc.queue\",\"floatingFilter\":true,\"readOnly\":false,\"suggest\":\"suggestQueueId\",\"sortable\":true,\"type\":\"number\",\"title\":\"Queue\",\"required\":false,\"component\":\"autoComplete\",\"name\":\"queue\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":1}]}}]}]}",
283
+ "default-target-data": " {}",
284
+ "target-data-struct": "{\"sap-egress\":{\"description\":null,\"queue\":[{\"queue-id\":null,\"queue-type\":null,\"scheduler-parent\":{\"scheduler-name\":null,\"level\":null,\"weight\":null,\"cir-level\":null,\"cir-weight\":null},\"adaptation-rule\":{\"pir\":null,\"cir\":null},\"rate\":{\"pir\":null,\"cir\":null}}],\"fc\":[{\"fc-name\":null,\"queue\":null}]}}",
285
+ "flexible": true,
286
+ "keys": "[\"queue-id\",\"fc-name\"]",
287
+ "props": "{\"required-object\":\"{}\"}"
288
+ }
289
+ ]
290
+ },
291
+ {
292
+ "@": {
293
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type",
294
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-logical-lag-access'][version='2']",
295
+ "nsp-model:creation-time": "2024-04-23T16:55:31.479Z",
296
+ "nsp-model:last-modified-time": "2024-04-23T16:57:02.752Z"
297
+ },
298
+ "name": "icm-logical-lag-access",
299
+ "version": 2,
300
+ "status": "successful",
301
+ "message": "Successfully imported/re-imported the intent-type",
302
+ "icm-descriptor": "{\n \"role\": \"logical\",\n \"category\": \"LAG\",\n \"description\": \"Intent-type to configure access lag\",\n \"device-scope\": \"mdm-and-classic\",\n \"select-target\": \"single\"\n}\n",
303
+ "targets": "[{\"name\":\"templatename\",\"i18n-text\":\"TemplateName\",\"value-type\":\"STRING\",\"order\":1}, {\"name\":\"objectidentifier\",\"i18n-text\":\"ObjectIdentifier\",\"value-type\":\"STRING\",\"order\":2}, {\"name\":\"lag-name\",\"length\":\"1..27\",\"pattern\":\"^lag-.+$\",\"i18n-text\":\"LAG-NAME\",\"value-type\":\"STRING\",\"order\":3}, {\"name\":\"lag-id\",\"i18n-text\":\"LAG-ID\",\"range\":\"1..800\",\"value-type\":\"NUMBER\",\"order\":4}]",
304
+ "description": "Intent-type to configure access lag",
305
+ "role": "logical",
306
+ "category": "LAG",
307
+ "device-scope": "mdm-and-classic",
308
+ "creation-time": "2024-04-23T16:55:32.443126Z",
309
+ "created-by": "admin",
310
+ "last-modified-time": "2024-04-23T16:57:02.746492Z",
311
+ "target-identifiers": [
312
+ {
313
+ "@": {
314
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
315
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-logical-lag-access'][version='2']/target-identifiers[name='lag-name']",
316
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
317
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.449Z"
318
+ },
319
+ "name": "lag-name",
320
+ "display-name": "LAG-NAME",
321
+ "order": 3,
322
+ "pattern": "^lag-.+$"
323
+ },
324
+ {
325
+ "@": {
326
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
327
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-logical-lag-access'][version='2']/target-identifiers[name='lag-id']",
328
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
329
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.449Z"
330
+ },
331
+ "name": "lag-id",
332
+ "display-name": "LAG-ID",
333
+ "order": 4
334
+ }
335
+ ],
336
+ "schema-form": [
337
+ {
338
+ "@": {
339
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
340
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-logical-lag-access'][version='2']/schema-form[name='default.schemaForm']",
341
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
342
+ "nsp-model:last-modified-time": "2024-04-23T16:57:02.753Z"
343
+ },
344
+ "name": "default.schemaForm",
345
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-logical-lag-access:icm-logical-lag-access\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-logical-lag-access\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag\",\"name\":\"lag\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LAG\"},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.description\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.description\",\"name\":\"lag.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":255,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-logical-lag-access.lag.admin-state\",\"name\":\"lag.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.max-ports\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.max-ports\",\"name\":\"lag.max-ports\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Max Ports\",\"required\":false,\"enum\":[{\"name\":\"32\",\"value\":\"32\"},{\"name\":\"64\",\"value\":\"64\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.encap-type\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.encap-type\",\"name\":\"lag.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.mode\",\"default\":\"access\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.mode\",\"name\":\"lag.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"},{\"name\":\"network\",\"value\":\"network\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-type\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-type\",\"name\":\"lag.port-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Port Type\",\"required\":false,\"enum\":[{\"name\":\"standard\",\"value\":\"standard\"},{\"name\":\"hs\",\"value\":\"hs\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp-xmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp-xmit-interval\",\"name\":\"lag.lacp-xmit-interval\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"LACP Xmit Interval\",\"required\":false,\"enum\":[{\"name\":\"slow\",\"value\":\"slow\"},{\"name\":\"fast\",\"value\":\"fast\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp-xmit-stdby\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp-xmit-stdby\",\"name\":\"lag.lacp-xmit-stdby\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"LACP Xmit Stdby\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp\",\"name\":\"lag.lacp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LACP\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.enableLacp\",\"default\":false,\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.enableLacp\",\"name\":\"lag.lacp.enableLacp\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable LACP\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.mode\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.mode\",\"name\":\"lag.lacp.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"when\":\"lag.lacp.enableLacp = 'true'\",\"required\":false,\"enum\":[{\"name\":\"passive\",\"value\":\"passive\"},{\"name\":\"active\",\"value\":\"active\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.administrative-key\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.administrative-key\",\"name\":\"lag.lacp.administrative-key\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":1}]},\"type\":\"number\",\"title\":\"Administrative Key\",\"when\":\"lag.lacp.enableLacp = 'true'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.system-id\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.system-id\",\"name\":\"lag.lacp.system-id\",\"readOnly\":false,\"type\":\"string\",\"title\":\"System Id\",\"when\":\"lag.lacp.enableLacp = 'true' and lag.mode = 'access'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.system-priority\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.system-priority\",\"name\":\"lag.lacp.system-priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":0}]},\"type\":\"number\",\"title\":\"System Priority\",\"when\":\"lag.lacp.enableLacp = 'true' and lag.mode = 'access'\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold\",\"name\":\"lag.port-threshold\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port Threshold\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.value\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.value\",\"name\":\"lag.port-threshold.value\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":63,\"min\":0}]},\"type\":\"number\",\"title\":\"Value\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.action\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.action\",\"name\":\"lag.port-threshold.action\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Action\",\"required\":false,\"enum\":[{\"name\":\"down\",\"value\":\"down\"},{\"name\":\"dynamic-cost\",\"value\":\"dynamic-cost\"},{\"name\":\"static-cost\",\"value\":\"static-cost\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.cost\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.cost\",\"name\":\"lag.port-threshold.cost\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":16777215,\"min\":1}]},\"type\":\"number\",\"title\":\"Cost\",\"when\":{\"field\":\"lag.port-threshold.action\",\"value\":\"static-cost\",\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash\",\"name\":\"lag.per-link-hash\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Per Link Hash\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.per-link-hash\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.enablePerLinkHash\",\"default\":false,\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.enablePerLinkHash\",\"name\":\"lag.per-link-hash.enablePerLinkHash\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable Per Link Hash\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag.per-link-hash\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.weighted\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.weighted\",\"name\":\"lag.per-link-hash.weighted\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Weighted\",\"when\":{\"field\":\"lag.per-link-hash.enablePerLinkHash\",\"value\":true,\"operator\":\"equals\"}},{\"columnSpan\":2,\"propertyGroup\":\"lag.per-link-hash.weighted\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.weighted.enableWeighted\",\"default\":false,\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.weighted.enableWeighted\",\"name\":\"lag.per-link-hash.weighted.enableWeighted\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable Weighted\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.per-link-hash.weighted\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.weighted.auto-rebalance\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.weighted.auto-rebalance\",\"name\":\"lag.per-link-hash.weighted.auto-rebalance\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Auto Rebalance\",\"when\":{\"field\":\"lag.per-link-hash.weighted.enableWeighted\",\"value\":true,\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness\",\"name\":\"lag.bfd-liveness\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"BFD\"},{\"columnSpan\":7,\"propertyGroup\":\"lag.bfd-liveness\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4\",\"name\":\"lag.bfd-liveness.ipv4\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"IPv4\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.admin-state\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.admin-state\",\"name\":\"lag.bfd-liveness.ipv4.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.local-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.local-ip-address\",\"name\":\"lag.bfd-liveness.ipv4.local-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patternsOperator\":\"and\",\"patterns\":[\"[0-9\\\\.]*\",\"(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(%[\\\\p{N}\\\\p{L}]+)?\"]},\"type\":\"string\",\"title\":\"Local IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.remote-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.remote-ip-address\",\"name\":\"lag.bfd-liveness.ipv4.remote-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patternsOperator\":\"and\",\"patterns\":[\"[0-9\\\\.]*\",\"(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(%[\\\\p{N}\\\\p{L}]+)?\"]},\"type\":\"string\",\"title\":\"Remote IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.receive-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.receive-interval\",\"name\":\"lag.bfd-liveness.ipv4.receive-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Receive Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.transmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.transmit-interval\",\"name\":\"lag.bfd-liveness.ipv4.transmit-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Transmit Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-admin-down-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":3600,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-admin-down-time\",\"name\":\"lag.bfd-liveness.ipv4.max-admin-down-time\",\"description\":\"seconds: [0..3600|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Admin Down Time (seconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-setup-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":60000,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-setup-time\",\"name\":\"lag.bfd-liveness.ipv4.max-setup-time\",\"description\":\"milliseconds: [0..60000|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Setup Time (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.multiplier\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.multiplier\",\"name\":\"lag.bfd-liveness.ipv4.multiplier\",\"description\":\"3..20\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":20,\"min\":3}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag.bfd-liveness\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6\",\"name\":\"lag.bfd-liveness.ipv6\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"IPv6\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.admin-state\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.admin-state\",\"name\":\"lag.bfd-liveness.ipv6.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.local-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.local-ip-address\",\"name\":\"lag.bfd-liveness.ipv6.local-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\"]},\"type\":\"string\",\"title\":\"Local IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.remote-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.remote-ip-address\",\"name\":\"lag.bfd-liveness.ipv6.remote-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\"]},\"type\":\"string\",\"title\":\"Remote IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.receive-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.receive-interval\",\"name\":\"lag.bfd-liveness.ipv6.receive-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Receive Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.transmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.transmit-interval\",\"name\":\"lag.bfd-liveness.ipv6.transmit-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Transmit Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-admin-down-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":3600,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-admin-down-time\",\"name\":\"lag.bfd-liveness.ipv6.max-admin-down-time\",\"description\":\"seconds: [0..3600|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Admin Down Time (seconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-setup-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":60000,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-setup-time\",\"name\":\"lag.bfd-liveness.ipv6.max-setup-time\",\"description\":\"milliseconds: [0..60000|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Setup Time (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.multiplier\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.multiplier\",\"name\":\"lag.bfd-liveness.ipv6.multiplier\",\"description\":\"3..20\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":20,\"min\":3}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":6,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port\",\"componentId\":\"icm-logical-lag-access.lag.port\",\"readOnly\":false,\"title\":\"Port\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"lag.port\",\"key\":[\"port-id\"],\"properties\":[{\"columnSpan\":2,\"displayKey\":\"port-id\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.port-id\",\"componentId\":\"icm-logical-lag-access.lag.port.port-id\",\"floatingFilter\":true,\"readOnly\":false,\"componentProps\":{\"isPagination\":true,\"isObject\":false,\"paginationProps\":{\"pageLabel\":\"Page\"}},\"suggest\":\"suggestPortIds\",\"sortable\":true,\"type\":\"leafref\",\"title\":\"Port Id\",\"required\":true,\"name\":\"port-id\",\"properties\":[{\"name\":\"port-id\",\"description\":\"Port ID\",\"floatingFilter\":true,\"title\":\"Port ID\",\"type\":\"string\"},{\"name\":\"description\",\"description\":\"Description\",\"floatingFilter\":true,\"title\":\"Description\",\"type\":\"string\"},{\"name\":\"encapType\",\"description\":\"Encapsulation Type\",\"floatingFilter\":true,\"title\":\"Encapsulation Type\",\"type\":\"string\"},{\"name\":\"mode\",\"description\":\"Mode\",\"floatingFilter\":true,\"title\":\"Mode\",\"type\":\"string\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.priority\",\"componentId\":\"icm-logical-lag-access.lag.port.priority\",\"floatingFilter\":true,\"name\":\"priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Priority\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.sub-group\",\"componentId\":\"icm-logical-lag-access.lag.port.sub-group\",\"floatingFilter\":true,\"name\":\"sub-group\",\"description\":\"-2:auto-iom, -1:auto-mda, <1..8>\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-2},{\"max\":8,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Sub Group\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.hash-weight\",\"componentId\":\"icm-logical-lag-access.lag.port.hash-weight\",\"floatingFilter\":true,\"name\":\"hash-weight\",\"description\":\"-1:port-speed, <1..100000>\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":100000,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Hash Weight\",\"required\":false}]}]}",
346
+ "default-target-data": " {\"lag\":{\"admin-state\":\"enable\",\"mode\":\"access\",\"lacp\":{\"enableLacp\":false},\"per-link-hash\":{\"enablePerLinkHash\":false,\"weighted\":{\"enableWeighted\":false}}}}",
347
+ "target-data-struct": "{\"lag\":{\"description\":null,\"admin-state\":null,\"max-ports\":null,\"encap-type\":null,\"mode\":null,\"port-type\":null,\"lacp-xmit-interval\":null,\"lacp-xmit-stdby\":null,\"lacp\":{\"enableLacp\":null,\"mode\":null,\"administrative-key\":null,\"system-id\":null,\"system-priority\":null},\"port-threshold\":{\"value\":null,\"action\":null,\"cost\":null},\"per-link-hash\":{\"enablePerLinkHash\":null,\"weighted\":{\"enableWeighted\":null,\"auto-rebalance\":null}},\"bfd-liveness\":{\"ipv4\":{\"admin-state\":null,\"local-ip-address\":null,\"remote-ip-address\":null,\"receive-interval\":null,\"transmit-interval\":null,\"max-admin-down-time\":null,\"max-setup-time\":null,\"multiplier\":null},\"ipv6\":{\"admin-state\":null,\"local-ip-address\":null,\"remote-ip-address\":null,\"receive-interval\":null,\"transmit-interval\":null,\"max-admin-down-time\":null,\"max-setup-time\":null,\"multiplier\":null}},\"port\":[{\"port-id\":null,\"priority\":null,\"sub-group\":null,\"hash-weight\":null}]}}",
348
+ "flexible": true,
349
+ "keys": "[\"port-id\"]",
350
+ "props": "{\"required-object\":\"{}\"}"
351
+ },
352
+ {
353
+ "@": {
354
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
355
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-logical-lag-access'][version='2']/schema-form[name='defaultIXR.schemaForm']",
356
+ "nsp-model:creation-time": "2024-04-23T16:55:32.449Z",
357
+ "nsp-model:last-modified-time": "2024-04-23T16:57:02.754Z"
358
+ },
359
+ "name": "defaultIXR.schemaForm",
360
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-logical-lag-access:icm-logical-lag-access\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-logical-lag-access\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag\",\"name\":\"lag\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LAG\"},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.description\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.description\",\"name\":\"lag.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":255,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-logical-lag-access.lag.admin-state\",\"name\":\"lag.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.encap-type\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.encap-type\",\"name\":\"lag.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.mode\",\"default\":\"access\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.mode\",\"name\":\"lag.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"},{\"name\":\"network\",\"value\":\"network\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp-xmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp-xmit-interval\",\"name\":\"lag.lacp-xmit-interval\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"LACP Xmit Interval\",\"required\":false,\"enum\":[{\"name\":\"slow\",\"value\":\"slow\"},{\"name\":\"fast\",\"value\":\"fast\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp-xmit-stdby\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp-xmit-stdby\",\"name\":\"lag.lacp-xmit-stdby\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"LACP Xmit Stdby\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp\",\"name\":\"lag.lacp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LACP\",\"when\":\"lag.mode != 'network'\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.enableLacp\",\"default\":false,\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.enableLacp\",\"name\":\"lag.lacp.enableLacp\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable LACP\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.mode\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.mode\",\"name\":\"lag.lacp.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"when\":\"lag.lacp.enableLacp = 'true'\",\"required\":false,\"enum\":[{\"name\":\"passive\",\"value\":\"passive\"},{\"name\":\"active\",\"value\":\"active\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.administrative-key\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.administrative-key\",\"name\":\"lag.lacp.administrative-key\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":1}]},\"type\":\"number\",\"title\":\"Administrative Key\",\"when\":\"lag.lacp.enableLacp = 'true'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.system-id\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.system-id\",\"name\":\"lag.lacp.system-id\",\"readOnly\":false,\"type\":\"string\",\"title\":\"System Id\",\"when\":\"lag.lacp.enableLacp = 'true' and lag.mode = 'access'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.system-priority\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.system-priority\",\"name\":\"lag.lacp.system-priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":0}]},\"type\":\"number\",\"title\":\"System Priority\",\"when\":\"lag.lacp.enableLacp = 'true' and lag.mode = 'access'\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold\",\"name\":\"lag.port-threshold\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port Threshold\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.value\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.value\",\"name\":\"lag.port-threshold.value\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":31,\"min\":0}]},\"type\":\"number\",\"title\":\"Value\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.action\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.action\",\"name\":\"lag.port-threshold.action\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Action\",\"required\":false,\"enum\":[{\"name\":\"down\",\"value\":\"down\"},{\"name\":\"dynamic-cost\",\"value\":\"dynamic-cost\"}]},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness\",\"name\":\"lag.bfd-liveness\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"BFD\"},{\"columnSpan\":7,\"propertyGroup\":\"lag.bfd-liveness\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4\",\"name\":\"lag.bfd-liveness.ipv4\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"IPv4\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.admin-state\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.admin-state\",\"name\":\"lag.bfd-liveness.ipv4.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.local-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.local-ip-address\",\"name\":\"lag.bfd-liveness.ipv4.local-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patternsOperator\":\"and\",\"patterns\":[\"[0-9\\\\.]*\",\"(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(%[\\\\p{N}\\\\p{L}]+)?\"]},\"type\":\"string\",\"title\":\"Local IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.remote-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.remote-ip-address\",\"name\":\"lag.bfd-liveness.ipv4.remote-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patternsOperator\":\"and\",\"patterns\":[\"[0-9\\\\.]*\",\"(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(%[\\\\p{N}\\\\p{L}]+)?\"]},\"type\":\"string\",\"title\":\"Remote IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.receive-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.receive-interval\",\"name\":\"lag.bfd-liveness.ipv4.receive-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Receive Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.transmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.transmit-interval\",\"name\":\"lag.bfd-liveness.ipv4.transmit-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Transmit Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-admin-down-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":3600,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-admin-down-time\",\"name\":\"lag.bfd-liveness.ipv4.max-admin-down-time\",\"description\":\"seconds: [0..3600|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Admin Down Time (seconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-setup-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":60000,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-setup-time\",\"name\":\"lag.bfd-liveness.ipv4.max-setup-time\",\"description\":\"milliseconds: [0..60000|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Setup Time (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.multiplier\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.multiplier\",\"name\":\"lag.bfd-liveness.ipv4.multiplier\",\"description\":\"3..20\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":20,\"min\":3}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag.bfd-liveness\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6\",\"name\":\"lag.bfd-liveness.ipv6\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"IPv6\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.admin-state\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.admin-state\",\"name\":\"lag.bfd-liveness.ipv6.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.local-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.local-ip-address\",\"name\":\"lag.bfd-liveness.ipv6.local-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\"]},\"type\":\"string\",\"title\":\"Local IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.remote-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.remote-ip-address\",\"name\":\"lag.bfd-liveness.ipv6.remote-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\"]},\"type\":\"string\",\"title\":\"Remote IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.receive-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.receive-interval\",\"name\":\"lag.bfd-liveness.ipv6.receive-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Receive Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.transmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.transmit-interval\",\"name\":\"lag.bfd-liveness.ipv6.transmit-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Transmit Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-admin-down-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":3600,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-admin-down-time\",\"name\":\"lag.bfd-liveness.ipv6.max-admin-down-time\",\"description\":\"seconds: [0..3600|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Admin Down Time (seconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-setup-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":60000,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-setup-time\",\"name\":\"lag.bfd-liveness.ipv6.max-setup-time\",\"description\":\"milliseconds: [0..60000|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Setup Time (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.multiplier\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.multiplier\",\"name\":\"lag.bfd-liveness.ipv6.multiplier\",\"description\":\"3..20\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":20,\"min\":3}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":6,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port\",\"componentId\":\"icm-logical-lag-access.lag.port\",\"readOnly\":false,\"title\":\"Port\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"lag.port\",\"key\":[\"port-id\"],\"properties\":[{\"columnSpan\":2,\"displayKey\":\"port-id\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.port-id\",\"componentId\":\"icm-logical-lag-access.lag.port.port-id\",\"floatingFilter\":true,\"readOnly\":false,\"componentProps\":{\"isPagination\":true,\"isObject\":false,\"paginationProps\":{\"pageLabel\":\"Page\"}},\"suggest\":\"suggestPortIds\",\"sortable\":true,\"type\":\"leafref\",\"title\":\"Port Id\",\"required\":true,\"name\":\"port-id\",\"properties\":[{\"name\":\"port-id\",\"description\":\"Port ID\",\"floatingFilter\":true,\"title\":\"Port ID\",\"type\":\"string\"},{\"name\":\"description\",\"description\":\"Description\",\"floatingFilter\":true,\"title\":\"Description\",\"type\":\"string\"},{\"name\":\"encapType\",\"description\":\"Encapsulation Type\",\"floatingFilter\":true,\"title\":\"Encapsulation Type\",\"type\":\"string\"},{\"name\":\"mode\",\"description\":\"Mode\",\"floatingFilter\":true,\"title\":\"Mode\",\"type\":\"string\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.priority\",\"componentId\":\"icm-logical-lag-access.lag.port.priority\",\"floatingFilter\":true,\"name\":\"priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Priority\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.sub-group\",\"componentId\":\"icm-logical-lag-access.lag.port.sub-group\",\"floatingFilter\":true,\"name\":\"sub-group\",\"description\":\"-2:auto-iom, -1:auto-mda, <1..8>\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-2},{\"max\":8,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Sub Group\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.hash-weight\",\"componentId\":\"icm-logical-lag-access.lag.port.hash-weight\",\"floatingFilter\":true,\"name\":\"hash-weight\",\"description\":\"-1:port-speed, <1..100000>\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":100000,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Hash Weight\",\"required\":false}]}]}",
361
+ "default-target-data": " {\"lag\":{\"admin-state\":\"enable\",\"mode\":\"access\",\"lacp\":{\"enableLacp\":false}}}",
362
+ "target-data-struct": "{\"lag\":{\"description\":null,\"admin-state\":null,\"encap-type\":null,\"mode\":null,\"lacp-xmit-interval\":null,\"lacp-xmit-stdby\":null,\"lacp\":{\"enableLacp\":null,\"mode\":null,\"administrative-key\":null,\"system-id\":null,\"system-priority\":null},\"port-threshold\":{\"value\":null,\"action\":null},\"bfd-liveness\":{\"ipv4\":{\"admin-state\":null,\"local-ip-address\":null,\"remote-ip-address\":null,\"receive-interval\":null,\"transmit-interval\":null,\"max-admin-down-time\":null,\"max-setup-time\":null,\"multiplier\":null},\"ipv6\":{\"admin-state\":null,\"local-ip-address\":null,\"remote-ip-address\":null,\"receive-interval\":null,\"transmit-interval\":null,\"max-admin-down-time\":null,\"max-setup-time\":null,\"multiplier\":null}},\"port\":[{\"port-id\":null,\"priority\":null,\"sub-group\":null,\"hash-weight\":null}]}}",
363
+ "flexible": true,
364
+ "keys": "[\"port-id\"]",
365
+ "props": "{\"required-object\":\"{}\"}"
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "@": {
371
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type",
372
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-ethernet'][version='2']",
373
+ "nsp-model:creation-time": "2024-04-23T16:55:31.542Z",
374
+ "nsp-model:last-modified-time": "2024-04-23T16:56:42.248Z"
375
+ },
376
+ "name": "icm-equipment-port-ethernet",
377
+ "version": 2,
378
+ "status": "successful",
379
+ "message": "Successfully imported/re-imported the intent-type",
380
+ "icm-descriptor": "{\n \"category\": \"port\",\n \"description\": \"Intent-type to configure physical, breakout, xiom and satellite ports\",\n \"role\": \"physical\",\n \"device-scope\": \"mdm-and-classic\",\n \"target-xpath\": \"/nsp-equipment:network/network-element/hardware-component/port[boolean(port-details[port-type!='connector-port'])][not(contains('name','/u'))][boolean (parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/shelf'][not(contains('component-id','shelf=1-6-'))]) or boolean(parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/port']) or boolean(parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/card'][not(containsIgnoreCase('name','Processor'))])]\"\n}\n",
381
+ "targets": "[{\"name\":\"templatename\",\"i18n-text\":\"TemplateName\",\"value-type\":\"STRING\",\"order\":1}, {\"name\":\"objectidentifier\",\"i18n-text\":\"ObjectIdentifier\",\"value-type\":\"STRING\",\"order\":2}, {\"name\":\"port-id\",\"i18n-text\":\"Port-ID\",\"value-type\":\"STRING\",\"order\":3}]",
382
+ "description": "Intent-type to configure physical, breakout, xiom and satellite ports",
383
+ "role": "physical",
384
+ "category": "port",
385
+ "device-scope": "mdm-and-classic",
386
+ "creation-time": "2024-04-23T16:55:32.418938Z",
387
+ "created-by": "admin",
388
+ "last-modified-time": "2024-04-23T16:56:42.240921Z",
389
+ "target-identifiers": [
390
+ {
391
+ "@": {
392
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/target-identifiers",
393
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-ethernet'][version='2']/target-identifiers[name='port-id']",
394
+ "nsp-model:creation-time": "2024-04-23T16:55:32.421Z",
395
+ "nsp-model:last-modified-time": "2024-04-23T16:55:32.421Z"
396
+ },
397
+ "name": "port-id",
398
+ "display-name": "Port-ID",
399
+ "order": 3
400
+ }
401
+ ],
402
+ "schema-form": [
403
+ {
404
+ "@": {
405
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
406
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-ethernet'][version='2']/schema-form[name='default.schemaForm']",
407
+ "nsp-model:creation-time": "2024-04-23T16:55:32.421Z",
408
+ "nsp-model:last-modified-time": "2024-04-23T16:56:42.250Z"
409
+ },
410
+ "name": "default.schemaForm",
411
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-ethernet:icm-equipment-port-ethernet\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-ethernet\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-equipment-port-ethernet.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.description\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.description\",\"name\":\"port.description\",\"readOnly\":false,\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet\",\"name\":\"port.ethernet\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Ethernet\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.accounting-policy\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.accounting-policy\",\"name\":\"port.ethernet.accounting-policy\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":4294967295,\"min\":0}]},\"type\":\"number\",\"title\":\"Accounting Policy\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.collect-stats\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.collect-stats\",\"name\":\"port.ethernet.collect-stats\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Collect Stats\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"newRow\":true,\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"name\":\"port.ethernet.autonegotiate\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Autonegotiate\",\"required\":false,\"enum\":[{\"name\":\"notApplicable\",\"value\":\"notApplicable\"},{\"name\":\"true\",\"value\":\"true\"},{\"name\":\"false\",\"value\":\"false\"},{\"name\":\"limited\",\"value\":\"limited\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"name\":\"port.ethernet.dot1q-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Dot1 Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"name\":\"port.ethernet.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"name\":\"port.ethernet.mtu\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9800,\"min\":512}]},\"type\":\"number\",\"title\":\"MTU\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.pbb-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.pbb-etype\",\"name\":\"port.ethernet.pbb-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"PBB Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"name\":\"port.ethernet.qinq-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Q in Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"name\":\"port.ethernet.speed\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":10,\"min\":10},{\"max\":100,\"min\":100},{\"max\":1000,\"min\":1000},{\"max\":10000,\"min\":10000},{\"max\":25000,\"min\":25000},{\"max\":40000,\"min\":40000},{\"max\":50000,\"min\":50000},{\"max\":100000,\"min\":100000}]},\"type\":\"number\",\"title\":\"Speed\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"name\":\"port.ethernet.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"network\",\"value\":\"network\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"}]},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"name\":\"port.ethernet.hold-time\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Hold Time\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"name\":\"port.ethernet.hold-time.down\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Down\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"name\":\"port.ethernet.hold-time.units\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Units\",\"required\":false,\"enum\":[{\"name\":\"seconds\",\"value\":\"seconds\"},{\"name\":\"centiseconds\",\"value\":\"centiseconds\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"name\":\"port.ethernet.hold-time.up\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Up\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"name\":\"port.ethernet.down-when-looped\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Down When Looped\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"name\":\"port.ethernet.down-when-looped.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"name\":\"port.ethernet.down-when-looped.keep-alive\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":120,\"min\":1}]},\"type\":\"number\",\"title\":\"Keep Alive\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"name\":\"port.ethernet.down-when-looped.retry-timeout\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":0,\"min\":0},{\"max\":160,\"min\":10}]},\"type\":\"number\",\"title\":\"Retry Timeout\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"name\":\"port.ethernet.down-when-looped.use-broadcast-address\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Use Broadcast Address\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"name\":\"port.ethernet.ssm\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SSM\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"name\":\"port.ethernet.ssm.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"name\":\"port.ethernet.ssm.code-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Code Type\",\"required\":false,\"enum\":[{\"name\":\"sonet\",\"value\":\"sonet\"},{\"name\":\"sdh\",\"value\":\"sdh\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.esmc-tunnel\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.esmc-tunnel\",\"name\":\"port.ethernet.ssm.esmc-tunnel\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"ESMC Tunnel\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"name\":\"port.ethernet.ssm.tx-dus\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Tx Dus\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"name\":\"port.ethernet.crc-monitor\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"CRC Monitor\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"name\":\"port.ethernet.crc-monitor.window-size\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":60,\"min\":5}]},\"type\":\"number\",\"title\":\"Window Size\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"name\":\"port.ethernet.crc-monitor.signal-degrade\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Degrade\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"name\":\"port.ethernet.crc-monitor.signal-failure\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Failure\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-failure.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-failure.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"name\":\"port.ethernet.lldp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LLDP\"},{\"columnSpan\":6,\"propertyGroup\":\"port.ethernet.lldp\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"readOnly\":false,\"title\":\"Dest MAC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"port.ethernet.lldp.dest-mac\",\"key\":[\"mac-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"floatingFilter\":true,\"name\":\"mac-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"MAC Type\",\"required\":true,\"enum\":[{\"name\":\"nearest-bridge\",\"value\":\"nearest-bridge\"},{\"name\":\"nearest-non-tpmr\",\"value\":\"nearest-non-tpmr\"},{\"name\":\"nearest-customer\",\"value\":\"nearest-customer\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"floatingFilter\":true,\"name\":\"notification\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Notification\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"floatingFilter\":true,\"name\":\"port-id-subtype\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Port Id Subtype\",\"required\":false,\"enum\":[{\"name\":\"tx-if-alias\",\"value\":\"tx-if-alias\"},{\"name\":\"tx-if-name\",\"value\":\"tx-if-name\"},{\"name\":\"tx-local\",\"value\":\"tx-local\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"floatingFilter\":true,\"name\":\"receive\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Receive\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"floatingFilter\":true,\"name\":\"transmit\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Transmit\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"floatingFilter\":true,\"name\":\"tunnel-nearest-bridge\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Tunnel Nearest Bridge\",\"when\":{\"field\":\"mac-type\",\"value\":\"nearest-bridge\",\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":6,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"title\":\"Tx Mgmt Address\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"tx-mgmt-address\",\"key\":[\"mgmt-address-system-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"floatingFilter\":true,\"name\":\"admin-state\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"floatingFilter\":true,\"name\":\"mgmt-address-system-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Mgmt Address System Type\",\"required\":true,\"enum\":[{\"name\":\"oob\",\"value\":\"oob\"},{\"name\":\"system\",\"value\":\"system\"},{\"name\":\"system-ipv6\",\"value\":\"system-ipv6\"},{\"name\":\"oob-ipv6\",\"value\":\"oob-ipv6\"}]}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"floatingFilter\":true,\"name\":\"tx-tlvs\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Tx TLVs\"},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.port-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Port Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-cap\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Cap\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Name\",\"required\":false}]}]}",
412
+ "default-target-data": " {\"port\":{\"admin-state\":\"enable\"}}",
413
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"ethernet\":{\"accounting-policy\":null,\"collect-stats\":null,\"autonegotiate\":null,\"dot1q-etype\":null,\"encap-type\":null,\"mtu\":null,\"pbb-etype\":null,\"qinq-etype\":null,\"speed\":null,\"mode\":null,\"hold-time\":{\"down\":null,\"units\":null,\"up\":null},\"down-when-looped\":{\"admin-state\":null,\"keep-alive\":null,\"retry-timeout\":null,\"use-broadcast-address\":null},\"ssm\":{\"admin-state\":null,\"code-type\":null,\"esmc-tunnel\":null,\"tx-dus\":null},\"crc-monitor\":{\"window-size\":null,\"signal-degrade\":{\"threshold\":null,\"multiplier\":null},\"signal-failure\":{\"threshold\":null,\"multiplier\":null}},\"lldp\":{\"dest-mac\":[{\"mac-type\":null,\"notification\":null,\"port-id-subtype\":null,\"receive\":null,\"transmit\":null,\"tunnel-nearest-bridge\":null,\"tx-mgmt-address\":[{\"admin-state\":null,\"mgmt-address-system-type\":null}],\"tx-tlvs\":{\"port-desc\":null,\"sys-cap\":null,\"sys-desc\":null,\"sys-name\":null}}]}}}}",
414
+ "flexible": true,
415
+ "keys": "[\"mac-type\",\"mgmt-address-system-type\"]",
416
+ "props": "{\"required-object\":\"{}\"}"
417
+ },
418
+ {
419
+ "@": {
420
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
421
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-ethernet'][version='2']/schema-form[name='defaultIXR.schemaForm']",
422
+ "nsp-model:creation-time": "2024-04-23T16:55:32.421Z",
423
+ "nsp-model:last-modified-time": "2024-04-23T16:56:42.252Z"
424
+ },
425
+ "name": "defaultIXR.schemaForm",
426
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-ethernet:icm-equipment-port-ethernet\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-ethernet\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-equipment-port-ethernet.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.description\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.description\",\"name\":\"port.description\",\"readOnly\":false,\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet\",\"name\":\"port.ethernet\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Ethernet\"},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.access\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.access\",\"name\":\"port.ethernet.access\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Access\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.access\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.access.accounting-policy\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.access.accounting-policy\",\"name\":\"port.ethernet.access.accounting-policy\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":4294967295,\"min\":0}]},\"type\":\"number\",\"title\":\"Accounting Policy\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.access\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.access.collect-stats\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.access.collect-stats\",\"name\":\"port.ethernet.access.collect-stats\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Collect Stats\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.egress\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.egress\",\"name\":\"port.ethernet.egress\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Egress\"},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.egress\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.egress.port-qos-policy\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.egress.port-qos-policy\",\"name\":\"port.ethernet.egress.port-qos-policy\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port Qos Policy\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.egress.port-qos-policy\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.egress.port-qos-policy.policy-name\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.egress.port-qos-policy.policy-name\",\"name\":\"port.ethernet.egress.port-qos-policy.policy-name\",\"description\":\"enter 'default' to clear the policy\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":64,\"min\":0}]},\"type\":\"string\",\"title\":\"Policy Name\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"newRow\":true,\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"name\":\"port.ethernet.autonegotiate\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Autonegotiate\",\"required\":false,\"enum\":[{\"name\":\"notApplicable\",\"value\":\"notApplicable\"},{\"name\":\"true\",\"value\":\"true\"},{\"name\":\"false\",\"value\":\"false\"},{\"name\":\"limited\",\"value\":\"limited\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"name\":\"port.ethernet.dot1q-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Dot1 Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"name\":\"port.ethernet.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"name\":\"port.ethernet.mtu\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9800,\"min\":512}]},\"type\":\"number\",\"title\":\"MTU\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"name\":\"port.ethernet.qinq-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Q in Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"name\":\"port.ethernet.speed\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":10,\"min\":10},{\"max\":100,\"min\":100},{\"max\":1000,\"min\":1000},{\"max\":10000,\"min\":10000},{\"max\":25000,\"min\":25000},{\"max\":40000,\"min\":40000},{\"max\":50000,\"min\":50000},{\"max\":100000,\"min\":100000}]},\"type\":\"number\",\"title\":\"Speed\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"name\":\"port.ethernet.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"network\",\"value\":\"network\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"}]},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"name\":\"port.ethernet.hold-time\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Hold Time\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"name\":\"port.ethernet.hold-time.down\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Down\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"name\":\"port.ethernet.hold-time.units\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Units\",\"required\":false,\"enum\":[{\"name\":\"seconds\",\"value\":\"seconds\"},{\"name\":\"centiseconds\",\"value\":\"centiseconds\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"name\":\"port.ethernet.hold-time.up\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Up\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"name\":\"port.ethernet.down-when-looped\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Down When Looped\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"name\":\"port.ethernet.down-when-looped.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"name\":\"port.ethernet.down-when-looped.keep-alive\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":120,\"min\":1}]},\"type\":\"number\",\"title\":\"Keep Alive\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"name\":\"port.ethernet.down-when-looped.retry-timeout\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":0,\"min\":0},{\"max\":160,\"min\":10}]},\"type\":\"number\",\"title\":\"Retry Timeout\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"name\":\"port.ethernet.down-when-looped.use-broadcast-address\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Use Broadcast Address\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"name\":\"port.ethernet.ssm\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SSM\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"name\":\"port.ethernet.ssm.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"name\":\"port.ethernet.ssm.code-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Code Type\",\"required\":false,\"enum\":[{\"name\":\"sonet\",\"value\":\"sonet\"},{\"name\":\"sdh\",\"value\":\"sdh\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.esmc-tunnel\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.esmc-tunnel\",\"name\":\"port.ethernet.ssm.esmc-tunnel\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"ESMC Tunnel\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"name\":\"port.ethernet.ssm.tx-dus\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Tx Dus\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"name\":\"port.ethernet.crc-monitor\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"CRC Monitor\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"name\":\"port.ethernet.crc-monitor.window-size\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":60,\"min\":5}]},\"type\":\"number\",\"title\":\"Window Size\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"name\":\"port.ethernet.crc-monitor.signal-degrade\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Degrade\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"name\":\"port.ethernet.crc-monitor.signal-failure\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Failure\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-failure.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-failure.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"name\":\"port.ethernet.lldp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LLDP\"},{\"columnSpan\":6,\"propertyGroup\":\"port.ethernet.lldp\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"readOnly\":false,\"title\":\"Dest MAC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"port.ethernet.lldp.dest-mac\",\"key\":[\"mac-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"floatingFilter\":true,\"name\":\"mac-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"MAC Type\",\"required\":true,\"enum\":[{\"name\":\"nearest-bridge\",\"value\":\"nearest-bridge\"},{\"name\":\"nearest-non-tpmr\",\"value\":\"nearest-non-tpmr\"},{\"name\":\"nearest-customer\",\"value\":\"nearest-customer\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"floatingFilter\":true,\"name\":\"notification\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Notification\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"floatingFilter\":true,\"name\":\"port-id-subtype\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Port Id Subtype\",\"required\":false,\"enum\":[{\"name\":\"tx-if-alias\",\"value\":\"tx-if-alias\"},{\"name\":\"tx-if-name\",\"value\":\"tx-if-name\"},{\"name\":\"tx-local\",\"value\":\"tx-local\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"floatingFilter\":true,\"name\":\"receive\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Receive\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"floatingFilter\":true,\"name\":\"transmit\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Transmit\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"floatingFilter\":true,\"name\":\"tunnel-nearest-bridge\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Tunnel Nearest Bridge\",\"when\":{\"field\":\"mac-type\",\"value\":\"nearest-bridge\",\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":6,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"title\":\"Tx Mgmt Address\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"tx-mgmt-address\",\"key\":[\"mgmt-address-system-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"floatingFilter\":true,\"name\":\"admin-state\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"floatingFilter\":true,\"name\":\"mgmt-address-system-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Mgmt Address System Type\",\"required\":true,\"enum\":[{\"name\":\"oob\",\"value\":\"oob\"},{\"name\":\"system\",\"value\":\"system\"},{\"name\":\"system-ipv6\",\"value\":\"system-ipv6\"},{\"name\":\"oob-ipv6\",\"value\":\"oob-ipv6\"}]}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"floatingFilter\":true,\"name\":\"tx-tlvs\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Tx TLVs\"},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.port-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Port Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-cap\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Cap\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Name\",\"required\":false}]}]}",
427
+ "default-target-data": " {\"port\":{\"admin-state\":\"enable\"}}",
428
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"ethernet\":{\"access\":{\"accounting-policy\":null,\"collect-stats\":null},\"egress\":{\"port-qos-policy\":{\"policy-name\":null}},\"autonegotiate\":null,\"dot1q-etype\":null,\"encap-type\":null,\"mtu\":null,\"qinq-etype\":null,\"speed\":null,\"mode\":null,\"hold-time\":{\"down\":null,\"units\":null,\"up\":null},\"down-when-looped\":{\"admin-state\":null,\"keep-alive\":null,\"retry-timeout\":null,\"use-broadcast-address\":null},\"ssm\":{\"admin-state\":null,\"code-type\":null,\"esmc-tunnel\":null,\"tx-dus\":null},\"crc-monitor\":{\"window-size\":null,\"signal-degrade\":{\"threshold\":null,\"multiplier\":null},\"signal-failure\":{\"threshold\":null,\"multiplier\":null}},\"lldp\":{\"dest-mac\":[{\"mac-type\":null,\"notification\":null,\"port-id-subtype\":null,\"receive\":null,\"transmit\":null,\"tunnel-nearest-bridge\":null,\"tx-mgmt-address\":[{\"admin-state\":null,\"mgmt-address-system-type\":null}],\"tx-tlvs\":{\"port-desc\":null,\"sys-cap\":null,\"sys-desc\":null,\"sys-name\":null}}]}}}}",
429
+ "flexible": true,
430
+ "keys": "[\"mac-type\",\"mgmt-address-system-type\"]",
431
+ "props": "{\"required-object\":\"{}\"}"
432
+ },
433
+ {
434
+ "@": {
435
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
436
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-ethernet'][version='2']/schema-form[name='defaultSAR.schemaForm']",
437
+ "nsp-model:creation-time": "2024-04-23T16:55:32.421Z",
438
+ "nsp-model:last-modified-time": "2024-04-23T16:56:42.253Z"
439
+ },
440
+ "name": "defaultSAR.schemaForm",
441
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-ethernet:icm-equipment-port-ethernet\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-ethernet\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-equipment-port-ethernet.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.description\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.description\",\"name\":\"port.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":160,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet\",\"name\":\"port.ethernet\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Ethernet\"},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.network\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.network\",\"name\":\"port.ethernet.network\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Network\",\"when\":\"port.ethernet.mode = 'network' or port.ethernet.mode = 'hybrid'\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.network\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.network.accounting-policy\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.network.accounting-policy\",\"name\":\"port.ethernet.network.accounting-policy\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":4294967295,\"min\":0}]},\"type\":\"number\",\"title\":\"Accounting Policy\",\"when\":\"port.ethernet.mode = 'network' or port.ethernet.mode = 'hybrid'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.network\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.network.collect-stats\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.network.collect-stats\",\"name\":\"port.ethernet.network.collect-stats\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Collect Stats\",\"when\":\"port.ethernet.mode = 'network' or port.ethernet.mode = 'hybrid'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"newRow\":true,\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"name\":\"port.ethernet.autonegotiate\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Autonegotiate\",\"required\":false,\"enum\":[{\"name\":\"notApplicable\",\"value\":\"notApplicable\"},{\"name\":\"true\",\"value\":\"true\"},{\"name\":\"false\",\"value\":\"false\"},{\"name\":\"limited\",\"value\":\"limited\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"name\":\"port.ethernet.dot1q-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Dot1 Q Etype\",\"when\":\"port.ethernet.mode != 'network'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"name\":\"port.ethernet.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"name\":\"port.ethernet.mtu\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9732,\"min\":128}]},\"type\":\"number\",\"title\":\"MTU\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"name\":\"port.ethernet.qinq-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Q in Q Etype\",\"when\":\"port.ethernet.mode != 'network'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"name\":\"port.ethernet.speed\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":10,\"min\":10},{\"max\":100,\"min\":100},{\"max\":1000,\"min\":1000},{\"max\":10000,\"min\":10000},{\"max\":25000,\"min\":25000},{\"max\":40000,\"min\":40000},{\"max\":50000,\"min\":50000},{\"max\":100000,\"min\":100000}]},\"type\":\"number\",\"title\":\"Speed\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"name\":\"port.ethernet.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"network\",\"value\":\"network\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"}]},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"name\":\"port.ethernet.hold-time\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Hold Time\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"name\":\"port.ethernet.hold-time.down\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":900,\"min\":0}]},\"type\":\"number\",\"title\":\"Down\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"name\":\"port.ethernet.hold-time.units\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Units\",\"required\":false,\"enum\":[{\"name\":\"seconds\",\"value\":\"seconds\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"name\":\"port.ethernet.hold-time.up\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":900,\"min\":0}]},\"type\":\"number\",\"title\":\"Up\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"name\":\"port.ethernet.down-when-looped\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Down When Looped\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"name\":\"port.ethernet.down-when-looped.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"name\":\"port.ethernet.down-when-looped.keep-alive\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":120,\"min\":1}]},\"type\":\"number\",\"title\":\"Keep Alive\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"name\":\"port.ethernet.down-when-looped.retry-timeout\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":0,\"min\":0},{\"max\":160,\"min\":10}]},\"type\":\"number\",\"title\":\"Retry Timeout\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"name\":\"port.ethernet.down-when-looped.use-broadcast-address\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Use Broadcast Address\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"name\":\"port.ethernet.ssm\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SSM\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"name\":\"port.ethernet.ssm.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"name\":\"port.ethernet.ssm.code-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Code Type\",\"required\":false,\"enum\":[{\"name\":\"sonet\",\"value\":\"sonet\"},{\"name\":\"sdh\",\"value\":\"sdh\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"name\":\"port.ethernet.ssm.tx-dus\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Tx Dus\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"name\":\"port.ethernet.crc-monitor\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"CRC Monitor\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"name\":\"port.ethernet.crc-monitor.window-size\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":60,\"min\":5}]},\"type\":\"number\",\"title\":\"Window Size\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"name\":\"port.ethernet.crc-monitor.signal-degrade\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Degrade\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"name\":\"port.ethernet.crc-monitor.signal-failure\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Failure\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-failure.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-failure.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"name\":\"port.ethernet.lldp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LLDP\"},{\"columnSpan\":6,\"propertyGroup\":\"port.ethernet.lldp\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"readOnly\":false,\"title\":\"Dest MAC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"port.ethernet.lldp.dest-mac\",\"key\":[\"mac-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"floatingFilter\":true,\"name\":\"mac-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"MAC Type\",\"required\":true,\"enum\":[{\"name\":\"nearest-bridge\",\"value\":\"nearest-bridge\"},{\"name\":\"nearest-non-tpmr\",\"value\":\"nearest-non-tpmr\"},{\"name\":\"nearest-customer\",\"value\":\"nearest-customer\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"floatingFilter\":true,\"name\":\"notification\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Notification\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"floatingFilter\":true,\"name\":\"port-id-subtype\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Port Id Subtype\",\"required\":false,\"enum\":[{\"name\":\"tx-if-alias\",\"value\":\"tx-if-alias\"},{\"name\":\"tx-if-name\",\"value\":\"tx-if-name\"},{\"name\":\"tx-local\",\"value\":\"tx-local\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"floatingFilter\":true,\"name\":\"receive\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Receive\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"floatingFilter\":true,\"name\":\"transmit\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Transmit\",\"required\":false},{\"columnSpan\":6,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"title\":\"Tx Mgmt Address\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"tx-mgmt-address\",\"key\":[\"mgmt-address-system-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"floatingFilter\":true,\"name\":\"admin-state\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"floatingFilter\":true,\"name\":\"mgmt-address-system-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Mgmt Address System Type\",\"required\":true,\"enum\":[{\"name\":\"system\",\"value\":\"system\"},{\"name\":\"system-ipv6\",\"value\":\"system-ipv6\"}]}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"floatingFilter\":true,\"name\":\"tx-tlvs\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Tx TLVs\"},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.port-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Port Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-cap\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Cap\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Name\",\"required\":false}]}]}",
442
+ "default-target-data": " {\"port\":{\"admin-state\":\"enable\"}}",
443
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"ethernet\":{\"network\":{\"accounting-policy\":null,\"collect-stats\":null},\"autonegotiate\":null,\"dot1q-etype\":null,\"encap-type\":null,\"mtu\":null,\"qinq-etype\":null,\"speed\":null,\"mode\":null,\"hold-time\":{\"down\":null,\"units\":null,\"up\":null},\"down-when-looped\":{\"admin-state\":null,\"keep-alive\":null,\"retry-timeout\":null,\"use-broadcast-address\":null},\"ssm\":{\"admin-state\":null,\"code-type\":null,\"tx-dus\":null},\"crc-monitor\":{\"window-size\":null,\"signal-degrade\":{\"threshold\":null,\"multiplier\":null},\"signal-failure\":{\"threshold\":null,\"multiplier\":null}},\"lldp\":{\"dest-mac\":[{\"mac-type\":null,\"notification\":null,\"port-id-subtype\":null,\"receive\":null,\"transmit\":null,\"tx-mgmt-address\":[{\"admin-state\":null,\"mgmt-address-system-type\":null}],\"tx-tlvs\":{\"port-desc\":null,\"sys-cap\":null,\"sys-desc\":null,\"sys-name\":null}}]}}}}",
444
+ "flexible": true,
445
+ "keys": "[\"mac-type\",\"mgmt-address-system-type\"]",
446
+ "props": "{\"required-object\":\"{}\"}"
447
+ },
448
+ {
449
+ "@": {
450
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
451
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-ethernet'][version='2']/schema-form[name='defaultSAS.schemaForm']",
452
+ "nsp-model:creation-time": "2024-04-23T16:55:32.421Z",
453
+ "nsp-model:last-modified-time": "2024-04-23T16:56:42.254Z"
454
+ },
455
+ "name": "defaultSAS.schemaForm",
456
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-ethernet:icm-equipment-port-ethernet\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-ethernet\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-equipment-port-ethernet.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.description\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.description\",\"name\":\"port.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":160,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet\",\"name\":\"port.ethernet\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Ethernet\"},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.network\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.network\",\"name\":\"port.ethernet.network\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Network\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.network\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.network.accounting-policy\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.network.accounting-policy\",\"name\":\"port.ethernet.network.accounting-policy\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":4294967295,\"min\":0}]},\"type\":\"number\",\"title\":\"Accounting Policy\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.network\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.network.collect-stats\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.network.collect-stats\",\"name\":\"port.ethernet.network.collect-stats\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Collect Stats\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"newRow\":true,\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"name\":\"port.ethernet.autonegotiate\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Autonegotiate\",\"required\":false,\"enum\":[{\"name\":\"notApplicable\",\"value\":\"notApplicable\"},{\"name\":\"true\",\"value\":\"true\"},{\"name\":\"false\",\"value\":\"false\"},{\"name\":\"limited\",\"value\":\"limited\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"name\":\"port.ethernet.dot1q-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Dot1 Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"name\":\"port.ethernet.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"name\":\"port.ethernet.mtu\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9212,\"min\":512}]},\"type\":\"number\",\"title\":\"MTU\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"name\":\"port.ethernet.qinq-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Q in Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"name\":\"port.ethernet.speed\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":10,\"min\":10},{\"max\":100,\"min\":100},{\"max\":1000,\"min\":1000},{\"max\":10000,\"min\":10000},{\"max\":25000,\"min\":25000},{\"max\":40000,\"min\":40000},{\"max\":50000,\"min\":50000},{\"max\":100000,\"min\":100000}]},\"type\":\"number\",\"title\":\"Speed\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"name\":\"port.ethernet.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"network\",\"value\":\"network\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.l2Uplink\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.l2Uplink\",\"name\":\"port.ethernet.l2Uplink\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"L2 Uplink\",\"when\":\"port.ethernet.mode = 'access'\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"name\":\"port.ethernet.hold-time\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Hold Time\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"name\":\"port.ethernet.hold-time.down\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Down\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"name\":\"port.ethernet.hold-time.units\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Units\",\"required\":false,\"enum\":[{\"name\":\"seconds\",\"value\":\"seconds\"},{\"name\":\"centiseconds\",\"value\":\"centiseconds\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"name\":\"port.ethernet.hold-time.up\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Up\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"name\":\"port.ethernet.down-when-looped\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Down When Looped\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"name\":\"port.ethernet.down-when-looped.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"name\":\"port.ethernet.down-when-looped.keep-alive\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":120,\"min\":1}]},\"type\":\"number\",\"title\":\"Keep Alive\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"name\":\"port.ethernet.down-when-looped.retry-timeout\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":0,\"min\":0},{\"max\":160,\"min\":10}]},\"type\":\"number\",\"title\":\"Retry Timeout\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"name\":\"port.ethernet.ssm\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SSM\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"name\":\"port.ethernet.ssm.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"name\":\"port.ethernet.ssm.code-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Code Type\",\"required\":false,\"enum\":[{\"name\":\"sonet\",\"value\":\"sonet\"},{\"name\":\"sdh\",\"value\":\"sdh\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"name\":\"port.ethernet.ssm.tx-dus\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Tx Dus\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"name\":\"port.ethernet.crc-monitor\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"CRC Monitor\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"name\":\"port.ethernet.crc-monitor.window-size\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":60,\"min\":5}]},\"type\":\"number\",\"title\":\"Window Size\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"name\":\"port.ethernet.crc-monitor.signal-degrade\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Degrade\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"name\":\"port.ethernet.crc-monitor.signal-failure\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Failure\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-failure.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-failure.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"name\":\"port.ethernet.lldp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LLDP\"},{\"columnSpan\":6,\"propertyGroup\":\"port.ethernet.lldp\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"readOnly\":false,\"title\":\"Dest MAC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"port.ethernet.lldp.dest-mac\",\"key\":[\"mac-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"floatingFilter\":true,\"name\":\"mac-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"MAC Type\",\"required\":true,\"enum\":[{\"name\":\"nearest-bridge\",\"value\":\"nearest-bridge\"},{\"name\":\"nearest-non-tpmr\",\"value\":\"nearest-non-tpmr\"},{\"name\":\"nearest-customer\",\"value\":\"nearest-customer\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"floatingFilter\":true,\"name\":\"notification\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Notification\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"floatingFilter\":true,\"name\":\"port-id-subtype\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Port Id Subtype\",\"required\":false,\"enum\":[{\"name\":\"tx-if-alias\",\"value\":\"tx-if-alias\"},{\"name\":\"tx-if-name\",\"value\":\"tx-if-name\"},{\"name\":\"tx-local\",\"value\":\"tx-local\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"floatingFilter\":true,\"name\":\"receive\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Receive\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"floatingFilter\":true,\"name\":\"transmit\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Transmit\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"floatingFilter\":true,\"name\":\"tunnel-nearest-bridge\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Tunnel Nearest Bridge\",\"when\":{\"field\":\"mac-type\",\"value\":\"nearest-bridge\",\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":6,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"title\":\"Tx Mgmt Address\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"tx-mgmt-address\",\"key\":[\"mgmt-address-system-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"floatingFilter\":true,\"name\":\"admin-state\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"floatingFilter\":true,\"name\":\"mgmt-address-system-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Mgmt Address System Type\",\"required\":true,\"enum\":[{\"name\":\"system\",\"value\":\"system\"},{\"name\":\"system-ipv6\",\"value\":\"system-ipv6\"}]}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"floatingFilter\":true,\"name\":\"tx-tlvs\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Tx TLVs\"},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.port-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Port Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-cap\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Cap\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Name\",\"required\":false}]}]}",
457
+ "default-target-data": " {\"port\":{\"admin-state\":\"enable\"}}",
458
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"ethernet\":{\"network\":{\"accounting-policy\":null,\"collect-stats\":null},\"autonegotiate\":null,\"dot1q-etype\":null,\"encap-type\":null,\"mtu\":null,\"qinq-etype\":null,\"speed\":null,\"mode\":null,\"l2Uplink\":null,\"hold-time\":{\"down\":null,\"units\":null,\"up\":null},\"down-when-looped\":{\"admin-state\":null,\"keep-alive\":null,\"retry-timeout\":null},\"ssm\":{\"admin-state\":null,\"code-type\":null,\"tx-dus\":null},\"crc-monitor\":{\"window-size\":null,\"signal-degrade\":{\"threshold\":null,\"multiplier\":null},\"signal-failure\":{\"threshold\":null,\"multiplier\":null}},\"lldp\":{\"dest-mac\":[{\"mac-type\":null,\"notification\":null,\"port-id-subtype\":null,\"receive\":null,\"transmit\":null,\"tunnel-nearest-bridge\":null,\"tx-mgmt-address\":[{\"admin-state\":null,\"mgmt-address-system-type\":null}],\"tx-tlvs\":{\"port-desc\":null,\"sys-cap\":null,\"sys-desc\":null,\"sys-name\":null}}]}}}}",
459
+ "flexible": true,
460
+ "keys": "[\"mac-type\",\"mgmt-address-system-type\"]",
461
+ "props": "{\"required-object\":\"{}\"}"
462
+ },
463
+ {
464
+ "@": {
465
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/imported-intent-types/imported-intent-type/schema-form",
466
+ "nsp-model:identifier": "/nsp-icm:icm/imported-intent-types/imported-intent-type[name='icm-equipment-port-ethernet'][version='2']/schema-form[name='gold.schemaForm']",
467
+ "nsp-model:creation-time": "2024-04-23T16:55:32.421Z",
468
+ "nsp-model:last-modified-time": "2024-04-23T16:56:42.255Z"
469
+ },
470
+ "name": "gold.schemaForm",
471
+ "content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-ethernet:icm-equipment-port-ethernet\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-ethernet\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-equipment-port-ethernet.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.description\",\"hide\":true,\"default\":\"Gold/Fixed schema-form\",\"componentId\":\"icm-equipment-port-ethernet.port.description\",\"name\":\"port.description\",\"readOnly\":true,\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet\",\"name\":\"port.ethernet\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Ethernet\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"hide\":true,\"default\":\"qinq\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"name\":\"port.ethernet.encap-type\",\"readOnly\":true,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"hide\":true,\"default\":\"1500\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"name\":\"port.ethernet.mtu\",\"readOnly\":true,\"validations\":{\"ranges\":[{\"max\":9800,\"min\":512}]},\"type\":\"number\",\"title\":\"MTU\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"hide\":true,\"default\":\"access\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"name\":\"port.ethernet.mode\",\"readOnly\":true,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"network\",\"value\":\"network\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"}]}]}",
472
+ "default-target-data": " {\"port\":{\"admin-state\":\"enable\",\"description\":\"Gold/Fixed schema-form\",\"ethernet\":{\"encap-type\":\"qinq\",\"mtu\":\"1500\",\"mode\":\"access\"}}}",
473
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"ethernet\":{\"encap-type\":null,\"mtu\":null,\"mode\":null}}}",
474
+ "flexible": false,
475
+ "keys": "[]",
476
+ "props": "{\"required-object\":\"{}\"}"
477
+ }
478
+ ]
479
+ }
480
+ ]
481
+ }
482
+ }