Schematic Diagrams

URL:
https://<root>/<serviceName>/MapServer/exts/SchematicServer/diagrams
Methods:
POST
Version Introduced:
10.1

Description

The diagrams resource represents all the schematic diagrams under a schematic service. It is returned as an array of Schematic Diagram resources by the REST API.

Request parameters

ParameterDetails

f

The response format. The default response format is html .

Values: html | json

Example usage

Example 1: The schematic diagrams under the S1_Schematics public sample Schematics service

Use dark colors for code blocksCopy
1
https://myserver.esri.com/arcgis/rest/services/S1_Schematics/MapServer/exts/SchematicsServer/diagrams

Example 2: The schematic diagrams under the S2_InternalPlants public sample Schematics service

Use dark colors for code blocksCopy
1
https://myserver.esri.com/arcgis/rest/services/S2_InternalPlants/MapServer/exts/SchematicsServer/diagrams

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
{
 "diagrams" : [
    <diagram1Info—[See Schematic Diagram Information Object—JSON Syntax](/schematic-diagram-information-object#json-response-syntax)>,
    ...,
    <diagramNInfo—[See Schematic Diagram Information Object—JSON Syntax](/schematic-diagram-information-object#json-response-syntax)>
 ]
}

Learn about Schematic Diagram Information Object—JSON Syntax

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
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
//Sample response for a schematic service that references two schematic diagrams
{
  "diagrams" : [
    {
      "name" : "ESTANCIA",
      "id" : "0-334",
      "templateIdentifier" : "0",
      "templateObjectID" : 3204,
      "schematicLayerIdentifier" : 0,
      "folderObjectID" : 1,
      "folderIdentifier" : "1",
      "objectID" : 334,
      "createdBy" : "NCA3885",
      "lastModificationBy" : "ABL4732",
      "lastUpdateBy" : "",
      "creationDate" : "21/01/2011 16:07:46",
      "lastModificationDate" : "14/02/2011 18:34:46",
      "lastUpdateDate" : "",
      "lockedBy" : "",
      "version" : "",
      "extent" : {
        "xmin" : 6.0370819091796868,
        "ymin" : -8.059234619140625,
        "xmax" : 29.909512329101563,
        "ymax" : 11.059844970703125,
        "spatialReference" : {
          "wkt" : "{B286C06B-0879-11D2-AACA-00C04FA33C20}"
        }
      }
    },
    {
      "name" : "OSP1",
      "id" : "1-1307",
      "templateIdentifier" : "1",
      "templateObjectID" : 2896,
      "schematicLayerIdentifier" : 1,
      "folderObjectID" : 321,
      "folderIdentifier" : "321",
      "objectID" : 1307,
      "createdBy" : "ABL4732",
      "lastModificationBy" : "JGF6997",
      "lastUpdateBy" : "",
      "creationDate" : "14/02/2011 16:26:51",
      "lastModificationDate" : "15/02/2011 11:36:58",
      "lastUpdateDate" : "",
      "lockedBy" : "",
      "version" : "SDE.DEFAULT",
      "extent" : {
        "xmin" : -38.840001443724944,
        "ymin" : -12.604235257751316,
        "xmax" : -37.278098588012469,
        "ymax" : -11.669204960753813,
        "spatialReference" : {
          "wkt" : "{B286C06B-0879-11D2-AACA-00C04FA33C20}"
        }
      },
      "rootNodes" : [
        "859-6-0"
      ]
    }
  ]
}

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