Centerline Sequence Table

URL:
https://<LinearReferencingService-url>/CenterlineSequenceTables/<layerId>
Methods:
GET
Required Capability:
The ArcGIS Location Referencing license is required to use this resource.
Version Introduced:
10.9.1

Description

This operation represents a centerline sequence table in a linear referencing geodatabase.

Request parameters

ParameterDetails

f

(Optional)

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

Values: html | json | pjson

Example usage

URL for centerline sequence table ID 17.

Use dark colors for code blocksCopy
1
http://sampleserver/arcgis/rest/services/MyLRS/MapServer/exts/LRSServer/CenterlineSequenceTables/17

JSON response syntax

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
{
  "id": "<layerId>",
  "name": "<layerName>",
  "type": "<layerType>",
  "isDataVersioned": "<true | false>",
  "isBranchVersioned": "<true | false>",
  "versionName": "<versionName>",
  "dateFormat": "<sqlDateFormat>",
  "centerlineIdFieldName": "<fieldName>",
  "routeIdFieldName": "<fieldName>",
  "fromDateFieldName": "<fieldName>",
  "toDateFieldName": "<fieldName>",
  "networkFieldName": "<fieldName>",
  "lrs": {
    "id": "<id>",
    "name": "<name>"
  },
  "fields": [
  {
    "name": "<fieldName1>",
    "type": "<fieldType1>",
    "alias": "<fieldAlias1>",
    "length": "<length1>",
    "editable": "<true | false>",
    "nullable": "<true | false>",
    "defaultValue": "<defaultValue1>",
    "domain": "<domain1>"
  },
  {
    "name": "<fieldName2>",
    "type": "<fieldType2>",
    "alias": "<fieldAlias2>",
    "length": "<length2>",
    "editable": "<true | false>",
    "nullable": "<true | false>",
    "defaultValue": "<defaultValue2>",
    "domain": "<domain2>"
  },
  ...
 ]
}

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
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
{
  "id": 17,
  "name": "Centerline_Sequence",
  "type": "",
  "isDataVersioned": true,
  "isBranchVersioned": true,
  "versionName": "sde.DEFAULT",
  "dateFormat": "esriLRSDateFormatStandard",
  "centerlineIdFieldName": "CenterlineId",
  "routeIdFieldName": "RouteId",
  "fromDateFieldName": "FromDate",
  "toDateFieldName": "ToDate",
  "networkFieldName": "NetworkId",
  "lrs": {
    "id": "F284C173-7730-4F72-B998-F1FA89CE4E8E",
    "name": "LRS"
  },
  "fields": [
  {
    "name": "OBJECTID",
    "type": "esriFieldTypeOID",
    "alias": "OBJECTID",
    "editable": false,
    "nullable": false,
    "defaultValue": null,
    "domain": null
  },
  {
    "name": "FromDate",
    "type": "esriFieldTypeDate",
    "alias": "FromDate",
    "length": 8,
    "editable": true,
    "nullable": true,
    "defaultValue": null,
    "domain": null
  },
  {
    "name": "ToDate",
    "type": "esriFieldTypeDate",
    "alias": "ToDate",
    "length": 8,
    "editable": true,
    "nullable": true,
    "defaultValue": null,
    "domain": null
  },
  {
    "name": "NetworkId",
    "type": "esriFieldTypeSmallInteger",
    "alias": "NetworkId",
    "editable": true,
    "nullable": true,
    "defaultValue": null,
    "domain":
    {
      "type": "codedValue",
      "name": "dLRSNetworks",
      "codedValues": [
      {
        "name": "Network",
        "code": 1
      }
      ]
    }
  },
  {
    "name": "RouteId",
    "type": "esriFieldTypeString",
    "alias": "RouteId",
    "length": 255,
    "editable": true,
    "nullable": true,
    "defaultValue": null,
    "domain": null
  },
  {
    "name": "CenterlineId",
    "type": "esriFieldTypeGUID",
    "alias": "CenterlineId",
    "length": 38,
    "editable": true,
    "nullable": true,
    "defaultValue": null,
    "domain": null
  }
  ]
}

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