Diagram Dataset

URL:
https://<root>/<serviceName>/NetworkDiagramServer/diagramDataset
Methods:
POST
Version Introduced:
10.6.1

Description

The diagramDataset resource regroups the info related to each diagram template under a Network Diagram service. It returns an array of diagram template info.

Conceptual representation of Diagram Dataset resource

Request parameters

ParameterDetails

gdbVersion

The name of the geodatabase version.

Syntax: gdbVersion=<version>

Example: gdbVersion=ABV1

sessionId

The token (guid) used to lock the version.

Syntax: sessionId=<guid>

Example: sessionId=44G259DE-87B0-407D-8F2E-DCB7665DD0F0

f

The response format. The default response format is html.

Values: <html | json>

Example usage

https://myserver.esri.com/server/rest/services/Naperville/NetworkDiagramServer/diagramDataset?f=pjson

JSON Response syntax

An array of diagram template info that provides the following information:

  • name —The name of the diagram template (String).
  • description —The description of the diagram template (String).
  • creationDate —The template creation date (Date).
  • lastUpdateDate —The template's last update date (Date).
  • usedByATier —Whether the template is used to generate a subnetwork system diagram in a tier (Boolean).
  • enableDiagramExtend —Whether the template enables diagram extend (Boolean).
  • enableDiagramStorage —Whether the template enables diagram storage (Boolean).
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
{
 "diagramTemplateInfos": [
  {
   "name": "< template1 >",
   "description": "< template1Description >",
   "creationDate": < template1CreationDate >,
   "lastUpdateDate": < template1LastUpdateDate >,
   "usedByATier": < true | false >,
   "enableDiagramExtend": < true | false >,
   "enableDiagramStorage": < true | false >
  },
  ...,
  {
   "name": "< templateN >",
   "description": "< templateNDescription >",
   "creationDate": < templateNCreationDate >,
   "lastUpdateDate": < templateNLastUpdateDate >,
   "usedByATier": < true | false >,
   "enableDiagramExtend": < true | false >,
   "enableDiagramStorage": < true | false >
  }
 ]
}

JSON Response example

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
{
 "diagramTemplateInfos": [
  {
   "name": "Basic",
   "description": "",
   "creationDate": -2209161600000,
   "lastUpdateDate": 1520936616000,
   "usedByATier": true,
   "enableDiagramExtend": true,
   "enableDiagramStorage": true
  },
  {
   "name": "ExpandContainers",
   "description": "",
   "creationDate": -2209161600000,
   "lastUpdateDate": 1520936659000,
   "usedByATier": false,
   "enableDiagramExtend": false,
   "enableDiagramStorage": true
  },
  {
   "name": "CollapseContainers",
   "description": "",
   "creationDate": -2209161600000,
   "lastUpdateDate": 1520936644000,
   "usedByATier": false,
   "enableDiagramExtend": false,
   "enableDiagramStorage": true
  }
 ]
}

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