Export Subnetwork

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 exportSubnetwork 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 IsDeleted 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

ParameterDetails

f

Specifies the output format of the response. The default response format is html.

Values: html | json | pjson| pbf

gdbVersion

(Optional)

Specifies the name of the geodatabase version. The default value is sde.DEFAULT .

Syntax: gdbVersion=<version>

sessionId

(Optional)

Specifies 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

(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.

domainNetworkName

(Required)

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

Syntax: domainNetworkName=<name>

tierName

(Required)

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

Syntax: tierName=<name>

subnetworkName

(Required)

Description: The name of the subnetwork to export.

Syntax: subnetworkName=<name>

exportAcknowledgement

(Optional)

Specifies whether the export is acknowledged. The default is false. If true, the default version is required for gdbVersion.

Values: true | false

traceConfiguration

(Optional)

Specifies the collection of trace configuration parameters. See the traceConfiguration parameter in the Trace topic.

Syntax: traceConfiguration=<trace configuration>

resultTypes

(Optional)

Specifies the types of results to return. The associations and aggregatedGeometry type were introduced with ArcGIS Enterprise 10.8.1. The includeDomainDescriptions option was introduced with ArcGIS Enterprise 10.9.1.

Syntax:

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
[
  {
    "type" : "features" | "connectivity" | "associations" | "aggregated geometry",
    "includeGeometry" : true | false,
    "includePropagatedValues": true | false,
    "includeDomainDescriptions": true | false,
    "networkAttributeNames" :["attribute1Name","attribute2Name",...],
    "diagramTemplateName": <value>,
    "resultTypeFields":[{"networkSourceId":<long>,"fieldname":<value>},...]
  },...
]

async

(Optional)

Introduced at ArcGIS Enterprise 10.9.1. 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

outSR

(Optional)

Introduced at ArcGIS Enterprise 11.1. Specifies the output spatial reference of the exported subnetwork.

Syntax: outSR={wkid=<wkid>}

JSON Response syntax

JSON response (when async = false):

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
{
  "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):

Use dark colors for code blocksCopy
1
2
3
{
  "statusUrl" : <url>
}

JSON response to the status URL (when pending or in progress):

Use dark colors for code blocksCopy
1
2
3
4
5
{
  "status" : "<Pending | InProgress>",
  "submissionTime" : <datetime>,
  "lastUpdatedTime" : <datetime>
 }

JSON response to the status URL (when completed):

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "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:

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
  "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.8 or 10.8.1:

  • If at least one item is specified in the resultTypes parameter, controllers are automatically included in the file by default.
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
  "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 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

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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):

Use dark colors for code blocksCopy
1
2
3
4
5
6
{
 "moment": 1585062452073,
 "url": "https://myserver.esri.com/server/rest/directories/arcgisoutput/LandUse_MapServer/_aD8622EF3-25AD-4996-B304-EAE53BDAF8C7.json",
 "subnetworkHasBeenDeleted": false,
 "success": true
}
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
{
	"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
	}
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.