- URL:
- https://<root>/<serviceName>/UtilityNetworkServer/exportSubnetwork
- Methods:
- POST
- Required Capability:
- Requires the ArcGIS Advanced Editing user type extension license
- Version Introduced:
- 10.6
Description
The export operation is used to export information about a subnetwork to a JSON file. This information can then be used by external systems such as outage management and asset tracking. Exporting a subnetwork also allows you to delete corresponding rows in the Subnetworks table as long as the Is attribute is set to True. This indicates that a subnetwork controller has been removed. Exporting a subnetwork is supported both synchronously and asynchronously.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | Specifies the output format of the response. The   | 
| 
 (Optional) | Specifies the name of the geodatabase version. The default value is  Syntax:  | 
| 
 (Optional) | Specifies the token ( Syntax:  | 
| 
 (Optional) | Specifies the session moment. The default value is the version's current moment. This should only be specified by the client when they do not want to use the current moment. Syntax:  Example:  | 
| 
 (Required) | The name of the domain network of which the subnetwork is a part. Syntax:  | 
| 
 (Required) | The name of the tier of which the subnetwork is a part. Syntax:  | 
| 
 (Required) | Description: The name of the subnetwork to export. Syntax:  | 
| 
 (Optional) | Specifies whether the export is acknowledged. The default is false. If true, the default version is required for   | 
| 
 (Optional) | Specifies the collection of trace configuration parameters. See the traceConfiguration parameter in the Trace topic. Syntax:  | 
| 
 (Optional) | Specifies the types of results to return. The  Syntax:  | 
| 
 (Optional) | Introduced at ArcGIS Enterprise 10.9.1.  Specifies whether the request will be processed asynchronously. If   | 
| 
 (Optional) | Introduced at ArcGIS Enterprise 11.1. Specifies the output spatial reference of the exported subnetwork. Syntax:  | 
JSON Response syntax
JSON response (when async = false):
{
  "moment" : <datetime>,
  "subnetworkHasBeenDeleted" : <true | false>,
  "url" : "<url>",              // url of created connectivity file
  "success" : <true | false>,
  "error" : {                   // only if success is false
    "extendedCode" : <HRESULT>,
    "message" : <error message>,
    "details" : [ <detail> ]
  }
}JSON response (when async = true):
{
  "statusUrl" : <url>
}JSON response to the status URL (when pending or in progress):
{
  "status" : "<Pending | InProgress>",
  "submissionTime" : <datetime>,
  "lastUpdatedTime" : <datetime>
 }JSON response to the status URL (when completed):
{
  "moment" : <datetime>,
  "subnetworkHasBeenDeleted" : <true | false>,
  "url" : "<url>",              // url of created connectivity file
  "status" : "Completed",
  "submissionTime" : <datetime>,
  "lastUpdatedTime" : <datetime>,
  "success" : <true | false>,
  "error" : {                   // only if success is false
    "extendedCode" : <HRESULT>,
    "message" : <error message>,
    "details" : [ <detail> ]
  }
}Export JSON file format for 3.5 and later or 11.5 and later:
{
  "controllers": [
    {
      "networkSourceId": <long>,
      "globalId": <guid>,
      "objectId": <long>,
      "terminalId": <long>,
      "assetGroupCode": <long>,
      "assetTypeCode": <long>,
      "geometry": <geometry>,
      "networkSourceName" : <string>,
      "assetGroupName" : <string>,
      "assetTypeName" : <string>,
      "terminalName" : <string>
    }
  ],
  "featureElements": [
    {
      "networkSourceId": <long>,
      "globalId": <guid>,
      "objectId": <long>,
      "assetGroupCode": <long>,
      "assetTypeCode": <long>,
      "positionFrom": <double>, // line features only
      "positionTo": <double>, // line features only
      "geometry": <geometry>,
      "networkSourceName" : <string>,
      "assetGroupName" : <string>,
      "assetTypeName" : <string>,
      "terminalName" : <string>,
      "fieldValues" : [
        {
          "fieldName" : <value>,
          "value" : <value>,
          "description" : <string>
        }
       ],
      "networkAttributeValues" : [],
      "networkAttributeDescriptions" : [],
    }
  ],
  "connectivity": [
    {
      "viaNetworkSourceId": <long>,
      "viaGlobalId": <guid>,
      "viaObjectId": <long>,
      "viaPositionFrom": <double>,
      "viaPositionTo": <double>,
      "viaGeometry": <geometry>,
      "fromNetworkSourceId": <long>,
      "fromGlobalId": <guid>,
      "fromObjectId": <long>,
      "fromTerminalId": <long>,
      "fromGeometry": <geometry>,
      "toNetworkSourceId": <long>,
      "toGlobalId": <guid>,
      "toObjectId": <long>,
      "toTerminalId": <long>,
      "toGeometry": <geometry>
    },
      "viaNetworkSourceName" : <string>,
      "fromNetworkSourceName" : <string>,
      "fromTerminalName" : <string>,
      "toNetworkSourceName" : <string>,
      "toTerminalName" : <string>
  ],
  "associations": [
    {
      "associationType" : "containment" | "attachment",
      "fromNetworkSourceId": <long>,
      "fromGlobalId": <guid>,
      "fromTerminalId": <long>,
      "toNetworkSourceId": <long>,
      "toGlobalId": <guid>,
      "toTerminalId": <long>,
      "fromNetworkSourceName" : <string>,
      "fromTerminalName" : <string>,
      "toNetworkSourceName" : <string>,
      "toTerminalName" : <string>
    }
  ],
 "relatedRecords": [
	{
		"networkSourceId": <long>,
		"networkSourceName": <string>,
		"globalId": <guid>,
		"relationshipClasses": [
			{
				"originLayerId": <long>,
				"destinationLayerId": <long>,
				"name": <string>,
				"relationships": [
					{
						"outFields": [],
						"relationshipOutFields": []
					}
				]
			}
		]
	}
],
}
  "sourceMapping":
  {
    "networkSourceId": "string",
    ...
  },
  "resultTypes": [
    {
      "type": "features" | "connectivity" | "controllers" | "associations" | "relatedRecords",
      "includeGeometry": true | false,
	     "includePropagatedValues": true | false,
      "networkAttributeNames": [<string>, ...],
      "diagramTemplateName": "",
      "resultTypeFields": [
        {
          "networkSourceId": <long>,
          "fieldName": <string>
        }
      ],
      "relationshipClasses" : [
        {
          "originLayerId" : <long>,
          "destinationLayerId" : <long>,
          "outFields" : [<string>, ...],
          "relationshipOutFields" : [<string>, ...]
        }
      ]
    }
  ],
  "spatialReference": <spatialReference>
}Export JSON file format for 10.9.1, 11.1, and 11.3:
{
  "controllers": [
    {
      "networkSourceId": <long>,
      "globalId": <guid>,
      "objectId": <long>,
      "terminalId": <long>,
      "assetGroupCode": <long>,
      "assetTypeCode": <long>,
      "geometry": <geometry>,
      "networkSourceName" : <string>,
      "assetGroupName" : <string>,
      "assetTypeName" : <string>,
      "terminalName" : <string>
    }
  ],
  "featureElements": [
    {
      "networkSourceId": <long>,
      "globalId": <guid>,
      "objectId": <long>,
      "assetGroupCode": <long>,
      "assetTypeCode": <long>,
      "positionFrom": <double>, // line features only
      "positionTo": <double>, // line features only
      "geometry": <geometry>,
      "networkSourceName" : <string>,
      "assetGroupName" : <string>,
      "assetTypeName" : <string>,
      "terminalName" : <string>,
      "fieldValues" : [
        {
          "fieldName" : <value>,
          "value" : <value>,
          "description" : <string>
        }
       ],
      "networkAttributeValues" : [],
      "networkAttributeDescriptions" : [],
    }
  ],
  "connectivity": [
    {
      "viaNetworkSourceId": <long>,
      "viaGlobalId": <guid>,
      "viaObjectId": <long>,
      "viaPositionFrom": <double>,
      "viaPositionTo": <double>,
      "viaGeometry": <geometry>,
      "fromNetworkSourceId": <long>,
      "fromGlobalId": <guid>,
      "fromObjectId": <long>,
      "fromTerminalId": <long>,
      "fromGeometry": <geometry>
      "toNetworkSourceId": <long>,
      "toGlobalId": <guid>,
      "toObjectId": <long>,
      "toTerminalId": <long>,
      "toGeometry": <geometry>
    },
      "viaNetworkSourceName" : <string>,
      "fromNetworkSourceName" : <string>,
      "fromTerminalName" : <string>,
      "toNetworkSourceName" : <string>,
      "toTerminalName" : <string>
  ],
  "associations": [
    {
      "associationType" : "containment" | "attachment",
      "fromNetworkSourceId": <long>,
      "fromGlobalId": <guid>,
      "fromTerminalId": <long>,
      "toNetworkSourceId": <long>,
      "toGlobalId": <guid>,
      "toTerminalId": <long>,
      "fromNetworkSourceName" : <string>,
      "fromTerminalName" : <string>,
      "toNetworkSourceName" : <string>,
      "toTerminalName" : <string>
    }
  ],
  "sourceMapping":
  {
    "networkSourceId": "string",
    ...
  },
  "resultTypes": [
    {
      "type": "features" | "connectivity" | "controllers" | "associations",
      "includeGeometry": true | false,
	     "includePropagatedValues": true | false,
      "networkAttributeNames": ["<networkAttributeName1>", ...],
      "diagramTemplateName": "",
      "resultTypeFields": [
        {
          "networkSourceId": <long>,
          "fieldName": "<string>"
        }
      ]
    }
  ],
  "spatialReference": <spatialReference>
}Export JSON file format for 10.8.1:
- If at least one item is specified in the resultparameter, controllers are automatically included in the file by default.Types 
{
  "controllers": [
    {
      "networkSourceId": <long>,
      "globalId": <guid>,
      "objectId": <long>,
      "terminalId": <long>,
      "assetGroupCode": <long>,
      "assetTypeCode": <long>,
      "geometry": <geometry>
    }
  ],
  "featureElements": [
    {
      "networkSourceId": <long>,
      "globalId": <guid>,
      "objectId": <long>,
      "assetGroupCode": <long>,
      "assetTypeCode": <long>,
      "positionFrom": <double>, // line features only
      "positionTo": <double>, // line features only
      "geometry": <geometry>,
      "networkAttributesValues" : [{"<attributeName>" : <value>, ... }, ... ]
      "fieldValues" : [
        {
          "fieldName" : <value>,
          "value" : <value>
        }, ...]
    }
  ],
  "connectivity": [
    {
      "viaNetworkSourceId": <long>,
      "viaGlobalId": <guid>,
      "viaObjectId": <long>,
      "viaPositionFrom": <double>,
      "viaPositionTo": <double>,
      "viaGeometry": <geometry>,
      "fromNetworkSourceId": <long>,
      "fromGlobalId": <guid>,
      "fromObjectId": <long>,
      "fromTerminalId": <long>,
      "fromGeometry": <geometry>
      "toNetworkSourceId": <long>,
      "toGlobalId": <guid>,
      "toObjectId": <long>,
      "toTerminalId": <long>,
      "toGeometry": <geometry>
    },
  ],
  "associations": [
    {
      "associationType" : "containment" | "attachment",
      "fromNetworkSourceId": <long>,
      "fromGlobalId": <guid>,
      "fromTerminalId": <long>,
      "toNetworkSourceId": <long>,
      "toGlobalId": <guid>,
      "toTerminalId": <long>
    }
  ],
  "sourceMapping":
  {
    "networkSourceId": "sourceName",
    ...
  },
  "resultTypes": [
    {
      "type": "features" | "connectivity" | "controllers" | "associations",
      "includeGeometry": true | false,
	     "includePropagatedValues": true | false,
      "networkAttributeNames": ["<networkAttributeName1>", ...],
      "diagramTemplateName": "",
      "resultTypeFields": [
        {
          "networkSourceId": <long>,
          "fieldName": "<name>"
        }
      ]
    }
  ],
  "spatialReference": <spatialReference>
}Example usage
Export a subnetwork in the Electric domain network and Electric Distribution tier to return attribute values describing the Phase and Device Status of a Device from a related table (SwitchUnit) using the related option for result.
Request URL and parameters:
https
f=json
gdbVersion=sde.Default
sessionId=
moment=
domainNetworkName=Electric
tierName=Electric Distribution
subnetworkName=RMT001
exportAcknowledgement=false
traceConfiguration=
{
	"includeContainers": false,
	"includeContent": false,
	"includeStructures": false,
	"includeBarriers": true,
	"validateConsistency": true,
	"includeIsolated": false,
	"ignoreBarriersAtStartingPoints": false,
	"domainNetworkName": "",
	"tierName": "",
	"targetTierName": "",
	"subnetworkName": "",
	"diagramTemplateName": "",
	"shortestPathNetworkAttributeName": "",
	"filterBitsetNetworkAttributeName": "",
	"traversabilityScope": "junctionsAndEdges",
	"maxPaths": -1,
	"maxHops": -1,
	"conditionBarriers": [],
	"functionBarriers": [],
	"arcadeExpressionBarrier": "",
	"filterBarriers": [],
	"filterFunctionBarriers": [],
	"filterScope": "junctionsAndEdges",
	"functions": [],
	"nearestNeighbor": {
		"count": -1,
		"costNetworkAttributeName": "",
		"nearestCategories": [],
		"nearestAssets": []
	},
	"outputFilters": [],
	"outputConditions": [],
	"propagators": []
}
resultTypes= [
{
	"type": "relatedRecords",
	"includeGeometry": true,
	"includePropagatedValues": false,
	"includeDomainDescriptions": true,
	"networkAttributeNames": [],
	"diagramTemplateName": "",
	"resultTypeFields": [],
	"relationshipClasses": [
		{
			"originLayerId": 5,
			"destinationLayerId": 1,
			"outFields": ["Phase", ​"DeviceStatus"]​,
			"relationshipOutFields": []
		}
    ]
},
{
      "type" : "controllers",
      "includeGeometry" : true,
      "includePropagatedValues" : false,
      "includeDomainDescriptions" : true,
      "networkAttributeNames" : [
      ],
      "diagramTemplateName" : "",
      "resultTypeFields" : [
      ],
      "relationshipClasses" : [
      ]
    }
  ],
  "spatialReference" : {
    "wkid" : 26911,
    "latestWkid" : 26911,
    "vcsWkid" : 115702,
    "latestVcsWkid" : 115702
  }
}{
 "moment": 1785062352074,
 "url": "https://myserver.esri.com/server/rest/directories/arcgisoutput/LandUse_MapServer/_a24A18066-692E-43E1-B442-312B083D347E.json",
 "subnetworkHasBeenDeleted": false,
 "success": true
}
{
	"relatedRecords": [
		{
			"networkSourceId": 5,
			"networkSourceName": "ElectricDevice",
			"globalId": "{BE50E691-9297-4B9E-B6D2-24DA3D16FF8E}",
			"relationshipClasses": [
				{
					"originLayerId": 5,
					"destinationLayerId": 1,
					"name": "ElecDevice_SwitchUnit",
					"relationships": [
						{
							"outFields": [
								{
									"name": "Phase",
									"value": 4,
									"description": "A"
								},
								{
									"name": "DeviceStatus",
									"value": 1,
									"description": "Closed"
								}
							]
						},
						{
							"outFields": [
								{
									"name": "Phase",
									"value": 2,
									"description": "B"
								},
								{
									"name": "DeviceStatus",
									"value": 1,
									"description": "Closed"
								}
							]
						},
						{
							"outFields": [
								{
									"name": "Phase",
									"value": 1,
									"description": "C"
								},
								{
									"name": "DeviceStatus",
									"value": 0,
									"description": "Open"
								}
							]
						},
					]
				}
			]
		}
	],
	"sourceMapping": {
		"1": "UN_6_Associations",
		"2": "UN_6_SystemJunctions",
		"4": "StructureJunction",
		"6": "StructureBoundary",
		"7": "StructureJunctionObject",
		"5": "StructureLine",
		"8": "StructureEdgeObject",
		"9": "ElectricDistributionDevice",
		"11": "ElectricDistributionAssembly",
		"12": "ElectricDistributionJunction",
		"14": "ElectricDistributionJunctionObject",
		"10": "ElectricDistributionLine",
		"13": "ElectricDistributionSubnetLine",
		"15": "ElectricDistributionEdgeObject",
		"16": "ElectricTransmissionDevice",
		"18": "ElectricTransmissionAssembly",
		"19": "ElectricTransmissionJunction",
		"21": "ElectricTransmissionJunctionObject",
		"17": "ElectricTransmissionLine",
		"20": "ElectricTransmissionSubnetLine",
		"22": "ElectricTransmissionEdgeObject"
	},
	"resultTypes": [
		{
			"type": "relatedRecords",
			"includeGeometry": true,
			"includePropagatedValues": false,
			"includeDomainDescriptions": true,
			"networkAttributeNames": [],
			"diagramTemplateName": "",
			"resultTypeFields": [],
			"relationshipClasses": [
				{
					"originLayerId": 5,
					"destinationLayerId": 1,
					"outFields": [
						"Phase",
						"DeviceStatus"
					],
					"relationshipOutFields": []
				}
			]
		}
	]
}Export the RMT001 subnetwork from the Electric Distribution tier in the Electric domain network using the export operation. The result parameter includes features, connectivity, and associations values.
Request URL and parameters:
https
f=json
gdbVersion=sde.default
sessionId=
moment=
domainNetworkName=Electric
tierName=Electric Distribution
subnetworkName=RMT001
exportAcknowledgement=false
traceConfiguration=
{
	"includeContainers": false,
	"includeContent": false,
	"includeStructures": false,
	"includeBarriers": true,
	"validateConsistency": true,
	"includeIsolated": false,
	"ignoreBarriersAtStartingPoints": false,
	"domainNetworkName": "",
	"tierName": "",
	"targetTierName": "",
	"subnetworkName": "",
	"diagramTemplateName": "",
	"shortestPathNetworkAttributeName": "",
	"filterBitsetNetworkAttributeName": "",
	"traversabilityScope": "junctionsAndEdges",
	"maxPaths": -1,
	"maxHops": -1,
	"conditionBarriers": [],
	"functionBarriers": [],
	"arcadeExpressionBarrier": "",
	"filterBarriers": [],
	"filterFunctionBarriers": [],
	"filterScope": "junctionsAndEdges",
	"functions": [],
	"nearestNeighbor": {
		"count": -1,
		"costNetworkAttributeName": "",
		"nearestCategories": [],
		"nearestAssets": []
	},
	"outputFilters": [],
	"outputConditions": [],
	"propagators": []
}
resultTypes=
[
  {
    "type": "features",
    "includeGeometry": false,
    "includePropagatedValues": false,
    "networkAttributeNames": [],
    "diagramTemplateName": "",
    "resultTypeFields": []
  },
  {
    "type": "connectivity",
    "includeGeometry": false,
    "includePropagatedValues": false,
    "networkAttributeNames": [],
    "diagramTemplateName": "",
    "resultTypeFields": []
  },
  {
    "type": "associations",
    "includeGeometry": false,
    "includePropagatedValues": false,
    "networkAttributeNames": [],
    "diagramTemplateName": "",
    "resultTypeFields": []
  }
]
async=falseJSON response (async=false):
{
 "moment": 1585062452073,
 "url": "https://myserver.esri.com/server/rest/directories/arcgisoutput/LandUse_MapServer/_aD8622EF3-25AD-4996-B304-EAE53BDAF8C7.json",
 "subnetworkHasBeenDeleted": false,
 "success": true
}{
	"controllers": [
		{
			"networkSourceId": 6,
			"globalId": "{05904716-F47D-47C9-A7A2-B5C29F5125C5}",
			"objectId": 208,
			"terminalId": 3,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		}
	],
	"featureElements": [
		{
			"networkSourceId": 5,
			"globalId": "{4F4B31E8-7730-49D4-82EE-F2863B555400}",
			"objectId": 12,
			"terminalId": 1,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 9,
			"globalId": "{900D280C-90A5-459D-BD01-D8A693E94D8E}",
			"objectId": 517,
			"terminalId": 1,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 6,
			"globalId": "{05904716-F47D-47C9-A7A2-B5C29F5125C5}",
			"objectId": 208,
			"terminalId": 3,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 9,
			"globalId": "{A565A71F-5ACF-4434-B355-803CC447FABF}",
			"objectId": 521,
			"terminalId": 1,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 9,
			"globalId": "{BE462C5C-8A07-4EC7-BB74-42DBADC49638}",
			"objectId": 518,
			"terminalId": 1,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 9,
			"globalId": "{18442C7D-96E8-4B14-ACD3-BBC171CC08C0}",
			"objectId": 519,
			"terminalId": 1,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 6,
			"globalId": "{A70839CB-1EF1-49A2-9B58-FC5154FE0BCA}",
			"objectId": 205,
			"terminalId": 1,
			"assetGroupCode": 4,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 6,
			"globalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"objectId": 204,
			"terminalId": 8,
			"assetGroupCode": 7,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 6,
			"globalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"objectId": 204,
			"terminalId": 9,
			"assetGroupCode": 7,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 6,
			"globalId": "{64C0643C-44C8-4E57-B549-53EA2F64887D}",
			"objectId": 203,
			"terminalId": 1,
			"assetGroupCode": 2,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 9,
			"globalId": "{83851142-AEA3-45A4-A3DA-BECAF3B3E245}",
			"objectId": 520,
			"terminalId": 1,
			"assetGroupCode": 1,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 6,
			"globalId": "{0412F447-68ED-4482-9BC9-5EB52509F994}",
			"objectId": 206,
			"terminalId": 1,
			"assetGroupCode": 4,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 6,
			"globalId": "{C9D0CEF0-F984-40A2-A386-E449E071EE22}",
			"objectId": 207,
			"terminalId": 1,
			"assetGroupCode": 4,
			"assetTypeCode": 1
		},
		{
			"networkSourceId": 3,
			"globalId": "{86F70EE7-CA0B-4FD1-BA1C-6E7658676874}",
			"objectId": 811,
			"terminalId": 1,
			"assetGroupCode": 4,
			"assetTypeCode": 3
		},
		{
			"networkSourceId": 6,
			"globalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"objectId": 204,
			"assetGroupCode": 7,
			"assetTypeCode": 1,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 1,
			"globalId": "{5AEAE020-9D84-4CCC-8F8B-DDBBA0901ADC}",
			"objectId": 74,
			"assetGroupCode": 0,
			"assetTypeCode": 0,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 1,
			"globalId": "{43B48627-63B8-40F5-B6B9-E163E03C7581}",
			"objectId": 45,
			"assetGroupCode": 0,
			"assetTypeCode": 0,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 1,
			"globalId": "{31303F5D-9A3F-4001-A306-C53399BC5F56}",
			"objectId": 100,
			"assetGroupCode": 0,
			"assetTypeCode": 0,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 1,
			"globalId": "{090656D1-7A3A-4739-A276-2831D191B4CD}",
			"objectId": 50,
			"assetGroupCode": 0,
			"assetTypeCode": 0,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 7,
			"globalId": "{FF474008-1744-458A-A1DC-CAC4543DEA94}",
			"objectId": 667,
			"assetGroupCode": 3,
			"assetTypeCode": 1,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 7,
			"globalId": "{7848C0FA-137D-4502-BF33-F4BA3713E093}",
			"objectId": 668,
			"assetGroupCode": 3,
			"assetTypeCode": 1,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 7,
			"globalId": "{D83A9261-81B1-4AF7-A87E-2FFFCE44451B}",
			"objectId": 669,
			"assetGroupCode": 3,
			"assetTypeCode": 1,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 7,
			"globalId": "{C8E0D13C-6A79-499C-8B0C-01367AD37952}",
			"objectId": 666,
			"assetGroupCode": 4,
			"assetTypeCode": 3,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 7,
			"globalId": "{E8120006-C87C-4032-86B8-995C84C1A7FF}",
			"objectId": 665,
			"assetGroupCode": 4,
			"assetTypeCode": 3,
			"positionFrom": 0,
			"positionTo": 1
		},
		{
			"networkSourceId": 7,
			"globalId": "{F84AAC25-2C91-4E45-8388-5B0F9CEA0B63}",
			"objectId": 670,
			"assetGroupCode": 4,
			"assetTypeCode": 3,
			"positionFrom": 0,
			"positionTo": 1
		}
	],
	"connectivity": [
		{
			"viaNetworkSourceId": 6,
			"viaGlobalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"viaObjectId": 204,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 6,
			"fromGlobalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"fromObjectId": 204,
			"fromTerminalId": 8,
			"fromGeometry": {},
			"toNetworkSourceId": 6,
			"toGlobalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"toObjectId": 204,
			"toTerminalId": 9,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 1,
			"viaGlobalId": "{5AEAE020-9D84-4CCC-8F8B-DDBBA0901ADC}",
			"viaObjectId": 74,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 6,
			"fromGlobalId": "{64C0643C-44C8-4E57-B549-53EA2F64887D}",
			"fromObjectId": 203,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 9,
			"toGlobalId": "{18442C7D-96E8-4B14-ACD3-BBC171CC08C0}",
			"toObjectId": 519,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 1,
			"viaGlobalId": "{43B48627-63B8-40F5-B6B9-E163E03C7581}",
			"viaObjectId": 45,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 6,
			"fromGlobalId": "{05904716-F47D-47C9-A7A2-B5C29F5125C5}",
			"fromObjectId": 208,
			"fromTerminalId": 3,
			"fromGeometry": {},
			"toNetworkSourceId": 9,
			"toGlobalId": "{A565A71F-5ACF-4434-B355-803CC447FABF}",
			"toObjectId": 521,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 1,
			"viaGlobalId": "{31303F5D-9A3F-4001-A306-C53399BC5F56}",
			"viaObjectId": 100,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 6,
			"fromGlobalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"fromObjectId": 204,
			"fromTerminalId": 9,
			"fromGeometry": {},
			"toNetworkSourceId": 9,
			"toGlobalId": "{83851142-AEA3-45A4-A3DA-BECAF3B3E245}",
			"toObjectId": 520,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 1,
			"viaGlobalId": "{090656D1-7A3A-4739-A276-2831D191B4CD}",
			"viaObjectId": 50,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 6,
			"fromGlobalId": "{64C0643C-44C8-4E57-B549-53EA2F64887D}",
			"fromObjectId": 203,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 6,
			"toGlobalId": "{DE2ADDB1-02A1-409C-94CF-85B84A00F2CD}",
			"toObjectId": 204,
			"toTerminalId": 8,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 7,
			"viaGlobalId": "{FF474008-1744-458A-A1DC-CAC4543DEA94}",
			"viaObjectId": 667,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 9,
			"fromGlobalId": "{83851142-AEA3-45A4-A3DA-BECAF3B3E245}",
			"fromObjectId": 520,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 6,
			"toGlobalId": "{A70839CB-1EF1-49A2-9B58-FC5154FE0BCA}",
			"toObjectId": 205,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 7,
			"viaGlobalId": "{7848C0FA-137D-4502-BF33-F4BA3713E093}",
			"viaObjectId": 668,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 9,
			"fromGlobalId": "{83851142-AEA3-45A4-A3DA-BECAF3B3E245}",
			"fromObjectId": 520,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 6,
			"toGlobalId": "{0412F447-68ED-4482-9BC9-5EB52509F994}",
			"toObjectId": 206,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 7,
			"viaGlobalId": "{D83A9261-81B1-4AF7-A87E-2FFFCE44451B}",
			"viaObjectId": 669,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 9,
			"fromGlobalId": "{83851142-AEA3-45A4-A3DA-BECAF3B3E245}",
			"fromObjectId": 520,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 6,
			"toGlobalId": "{C9D0CEF0-F984-40A2-A386-E449E071EE22}",
			"toObjectId": 207,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 7,
			"viaGlobalId": "{C8E0D13C-6A79-499C-8B0C-01367AD37952}",
			"viaObjectId": 666,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 9,
			"fromGlobalId": "{900D280C-90A5-459D-BD01-D8A693E94D8E}",
			"fromObjectId": 517,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 9,
			"toGlobalId": "{BE462C5C-8A07-4EC7-BB74-42DBADC49638}",
			"toObjectId": 518,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 7,
			"viaGlobalId": "{E8120006-C87C-4032-86B8-995C84C1A7FF}",
			"viaObjectId": 665,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 9,
			"fromGlobalId": "{BE462C5C-8A07-4EC7-BB74-42DBADC49638}",
			"fromObjectId": 518,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 9,
			"toGlobalId": "{18442C7D-96E8-4B14-ACD3-BBC171CC08C0}",
			"toObjectId": 519,
			"toTerminalId": 1,
			"toGeometry": {}
		},
		{
			"viaNetworkSourceId": 7,
			"viaGlobalId": "{F84AAC25-2C91-4E45-8388-5B0F9CEA0B63}",
			"viaObjectId": 670,
			"viaPositionFrom": 0,
			"viaPositionTo": 1,
			"viaGeometry": {},
			"fromNetworkSourceId": 9,
			"fromGlobalId": "{A565A71F-5ACF-4434-B355-803CC447FABF}",
			"fromObjectId": 521,
			"fromTerminalId": 1,
			"fromGeometry": {},
			"toNetworkSourceId": 9,
			"toGlobalId": "{900D280C-90A5-459D-BD01-D8A693E94D8E}",
			"toObjectId": 517,
			"toTerminalId": 1,
			"toGeometry": {}
		}
	],
	"associations": [
		{
			"associationType": "containment",
			"fromNetworkSourceId": 5,
			"fromGlobalId": "{4F4B31E8-7730-49D4-82EE-F2863B555400}",
			"fromTerminalId": 1,
			"toNetworkSourceId": 6,
			"toGlobalId": "{05904716-F47D-47C9-A7A2-B5C29F5125C5}",
			"toTerminalId": 3
		},
		{
			"associationType": "containment",
			"fromNetworkSourceId": 5,
			"fromGlobalId": "{4F4B31E8-7730-49D4-82EE-F2863B555400}",
			"fromTerminalId": 1,
			"toNetworkSourceId": 9,
			"toGlobalId": "{A565A71F-5ACF-4434-B355-803CC447FABF}",
			"toTerminalId": 1
		},
		{
			"associationType": "attachment",
			"fromNetworkSourceId": 3,
			"fromGlobalId": "{86F70EE7-CA0B-4FD1-BA1C-6E7658676874}",
			"fromTerminalId": 1,
			"toNetworkSourceId": 6,
			"toGlobalId": "{64C0643C-44C8-4E57-B549-53EA2F64887D}",
			"toTerminalId": 1
		}
	],
	"sourceMapping": {
		"1": "UN_6_Associations",
		"2": "UN_6_SystemJunctions",
		"4": "StructureJunction",
		"6": "StructureBoundary",
		"7": "StructureJunctionObject",
		"5": "StructureLine",
		"8": "StructureEdgeObject",
		"9": "ElectricDistributionDevice",
		"11": "ElectricDistributionAssembly",
		"12": "ElectricDistributionJunction",
		"14": "ElectricDistributionJunctionObject",
		"10": "ElectricDistributionLine",
		"13": "ElectricDistributionSubnetLine",
		"15": "ElectricDistributionEdgeObject"
	},
	"resultTypes": [
		{
			"type": "features",
			"includeGeometry": false,
			"includePropagatedValues": false,
			"networkAttributeNames": [],
			"diagramTemplateName": "",
			"resultTypeFields": []
		},
		{
			"type": "connectivity",
			"includeGeometry": false,
			"includePropagatedValues": false,
			"networkAttributeNames": [],
			"diagramTemplateName": "",
			"resultTypeFields": []
		},
		{
			"type": "associations",
			"includeGeometry": false,
			"includePropagatedValues": false,
			"networkAttributeNames": [],
			"diagramTemplateName": "",
			"resultTypeFields": []
		}
	],
	"spatialReference": {
		"wkid": 3498,
		"latestWkid": 3498
	}
}