Skip To Content
ArcGIS Developer
Dashboard

Export Subnetwork

Description

The exportSubnetwork operation is used to export information about a subnetwork to a JSON file. This information can then be used by outside systems such as outage management and asset tracking. The exportSubnetwork operation allows you to delete corresponding rows in the Subnetworks table as long as the IsDeleted attribute is set to True. This indicates that a subnetwork source has been removed. Exporting a subnetwork is supported both synchronously and asynchronously.

License:
The active portal account must be assigned a license with the ArcGIS Advanced Editing user type extension to use this operation.

Request parameters

ParameterDetails
f

Description: Optional parameter specifying the output format of the response. The default response format is html.

Values: html | json

gdbVersion

Description: Optional parameter specifying the name of the geodatabase version. The default value is DEFAULT.

Syntax: gdbVersion=<version>

sessionId

Description: Optional parameter specifying the token (guid) used to lock the version. If the calling client is editing a named version, the session ID must be provided; if the client is editing DEFAULT, the version may not be locked and the session ID should not be specified.

Syntax: sessionId=<guid>

moment

Description: Optional parameter specifying 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.

domainNetworkName

Description: The name of the domain network of which the subnetwork is a part.

Syntax: domainNetworkName=<name>

tierName

Description: The name of the tier of which the subnetwork is a part.

Syntax: tierName=<name>

subnetworkName

Description: The name of the subnetwork to update.

Syntax: subnetworkName=<name>

exportAcknowledgement

Description: Optional parameter specifying whether the export is acknowledged. The default value is false. If true, the default version is required for gdbVersion.

Values: true | false

traceConfiguration

Description: Optional parameter specifying the collection of trace configuration parameters. See the traceConfiguration parameter in the Trace topic.

Syntax: traceConfiguration=<trace configuration>

resultTypes

Description: Optional parameter specifying the types of results to return.

Note:

The resultTypes parameter requires ArcGIS Enterprise 10.7 or later.

ArcGIS Enterprise 10.8.1 or later is required when using the associations or aggregatedGeometry type.

The includeDomainDescriptions option requires ArcGIS Enterprise 10.9.1 or later.

Syntax:


[
  { 
    "type" : "features" | "connectivity" | "associations",
    "includeGeometry" : true | false,
    "includePropagatedValues": true | false,
    "includeDomainDescriptions": true | false,
    "networkAttributeNames" :["attribute1Name","attribute2Name",...],
    "diagramTemplateName": <value>, 
    "resultTypeFields":[{"networkSourceId":<long>,"fieldname":<value>},...]
  },...
]
async

Description: Specifies whether the request will be processed asynchronously. If true, the request is processed as an asynchronous job, and a URL is returned that a client can visit to check the status of the job. The default is false.

Values: true | false

This parameter was introduced at ArcGIS Enterprise 10.9.1.

outSR

Description: Optional parameter specifying the output spatial reference.

Syntax: outSR={wkid=<wkid>}

This parameter was introduced at ArcGIS Enterprise 11.1.

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 2.9 and later or 10.9.1 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>
    }
  ],
  "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 2.3 and later or 10.7 and later:

  • If nothing is specified for the resultTypes parameter, the JSON export format for 2.2 and earlier or 10.6.1 and earlier versions is returned.
  • If at least one item is specified in the resultTypes parameter, controllers are automatically included in the file by default.


{ 
  "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>
}

Export JSON file format for 2.2 and earlier or 10.6.1 and earlier:


{ 
  "type" : "tabular",
  "sourceMapping" : { 
    "sourceId1" : sourceName1, 
    "sourceId2" : sourceName2, 
    . . .
  }
  "rows" : [
    {
      "viaSourceId" : <long>, 
      "viaGlobalId" : <guid>, 
      "viaSubtypeName" : <name>, 
      "viaGeometry" : <geometry>,
      "fromSourceId" : <long>, 
      "fromGlobalId" : <guid>, 
      "fromSubtypeName" : <name>, 
      "fromTerminalId" : <long>, 
      "fromGeometry" : <geometry>
      "toSourceId" : <long>, 
      "toGlobalId" : <guid>, 
      "toSubtypeName" : <name>, 
      "toTerminalId" : <long>, 
      "toGeometry" : <geometry>
    }
  ]
  "controllers: [
    {
      "networkSourceId" : <long>, 
      "globalId" : <guid>, 
      "terminalId" : <long>,
    }
  ]
}

Example usage

Export the RMT001 subnetwork from the Electric Distribution tier in the Electric domain network using the exportSubnetwork operation. The resultTypes parameter includes features, connectivity, and associations values.

Request URL and parameters:

https://myserver.esri.com/server/rest/services/LandUse/UtilityNetworkServer/exportSubnetwork

f=json
gdbVersion=sde.default
sessionId={A980FAE4-49F9-4BD1-A137-FE086F2933A5}
moment=1585014910437
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",
	"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=false

JSON 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
	}
}