Schematic Folders

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

Description

The folders resource represents the set of schematic folders in the schematic dataset(s) related to the schematic layers under a schematic service. It is returned as an array of Schematic Folder Object 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 folders 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/folders

Example 2: The schematic folders 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/folders

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
{
 "folders" : [
    <folder1—[See Schematic Folder Object—JSON Syntax](/schematic-folder-object)>,
    ...,
    <folderN—[See Schematic Folder Object—JSON Syntax](/schematic-folder-object)>
 ]
}

Learn about Schematic Folder 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
//Sample response for a schematic service that references a schematic dataset containing two root folders, ISP diagrams and OSP diagrams
{
  "folders" : [
      {
        "name" : "ISP diagrams",
        "id" : "1",
        "objectID" : 1,
        "folders" : [

        ]
      },
      {
        "name" : "OSP diagrams",
        "id" : "2",
        "objectID" : 2,
        "folders" : [
        //The OSP diagrams root folder contains three sub-folders; there are OSPEast, OSPWest, and OPSSouth
          {
            "name" : "OSPEast",
            "id" : "321",
            "objectID" : 321,
            "folders" : [

            ]
          },
          {
            "name" : "OSPWest",
            "id" : "322",
            "objectID" : 322,
             "folders" : [

            ]
          },
          {
            "name" : "OSPSouth",
            "id" : "323",
            "objectID" : 323,
            "folders" : [

            ]
          }
        ]
      }
  ]
}

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