Layer (Feature Service)
- URL:http://<featureservice-url>/<layerId>
- Operations:Add Features, Apply Edits, Calculate, Delete Features, Generate Renderer, Query, Query Related Records, Update Features, Validate SQL (Feature Service-Layer)
- Child Resources:Feature, Image
- Version Introduced:10.0
Description
The layer resource represents a single feature layer or a non-spatial table in a feature service. A feature layer is a table or view with at least one spatial column.
For tables, it provides basic information about the table such as its ID, name, fields, types, and templates. For feature layers, in addition to the table information, it provides information such as its geometry type, min and max scales, and spatial reference. Each type includes information about the type, such as the type ID, name, and definition expression. Types also include a default symbol and a list of feature templates. Each feature template includes a template name, description, and prototypical feature.
The property capabilities return Query, Create, Delete, Update, Editing, Sync, Uploads and Extract capabilities. The Editing capability will be included if Create, Delete, or Update is enabled for a feature service.
The maxRecordCount property returns the maximum number of records that will be returned at once for a query.
The Layer resource returns relatedTableId, cardinality, role, keyField, and composite for all relationships. In addition, the relationshiptableId and keyFieldInRelationshipTable properties are returned for attributed relationships only.
The effectiveMinScale and effectiveMaxScale properties represent the effective minimum and maximum scales at which the layer is visible. Effective minimum and maximum scale are calculated based on the minScale and maxScale values of the current layer and its ancestors.
The Layer resource supports an input parameter returnUpdates that accepts a Boolean value. Pass this parameter to retrieve updated timeExtent for the layer.
The field property nullable indicates whether the field can accept null values.
If a layer has attachments, its hasAttachments property will be true.
If the layer objectIdField does not have a length property or the length property is set to 4, the objectIdField is 32-bit. If the objectIdField has a length of 8, the objectIdField is 64-bit.
The following is new in 10.6.1
- New layer properties exposed on a feature service layer:
- supportsHavingClause is true if a layer supports query operations with the having clause parameter.
- supportsCountDistinct is true if a layer supports query of count with distinct values using returnDistinctValues and returnCountOnly.
- supportsCoordinatesQuantization is true if a layer supports coordinate quantization.
- The supportsReturningGeometryCentroid property is true if a layer supports returning the geometry of the center of a polygon feature. Often true when supportsCoordinatesQuantization is true.
- supportsQueryWithResultType is true if a layer supports query operations using resultType.
- The geometryField property defines the geometry field properties on the feature layer.
- The standardMaxRecordCount property defines the maximum number of features a query will return when the query uses resultType = standard.
- The tileMaxRecordCount property defines the maximum number of features a query will return when the query uses resultType = tile.
- The maxRecordCountFactor property is used to change the values of standardMaxRecordCount and tileMaxRecordCount for querying.
- hasMetadata indicates whether a layer contains metadata.
The following is new in 10.6
- Utility Network Layers - A new layer of "type": "Utility Network Layer" is created when Utility Networks are published as feature services. These layers can be consumed directly in ArcGIS Pro starting at version 2.1 but not yet in other ArcGIS clients at the time of the 10.6 release. Utility Network layers are composite layers in that they reference subLayers and do not have capabilities. They also describe systemLayers which are used to support diagrams and other utility network specific behavior. Information about the supported associationTypeValues are also included. See the JSON response example below.
- Annotation Layers - A new layer of "type": "Annotation Layer" is created when annotation layers are published with feature services from ArcGIS Pro starting at version 2.1. These layers can be consumed directly in ArcGIS Pro 2.1 or later but not yet in other ArcGIS clients at the time of the 10.6 release. Annotation layers are like other layers in that they support query and editing operations. However, annotation layers do not include drawingInfo, types or templates. Annotation layers also support querying and editing the Element column with is of "type": "esriFieldTypeBlob" . As of the time of the 10.6 release, only ArcGIS Pro 2.1 can property work with the annotations.
- The following are new properties exposed on a feature service layer:
- modelName is a property that is exposed in both fields and layers. The modelName is provided by the back-end geodatabase tables, feature classes and fields.
- isDataArchived is true if a layer is archive enabled which allows it to support query with historicMoment.
- isCoGoEnabled is true if a layer has coordinate geometry enabled.
- parentLayer references the Utility Network layer from sublayers of the Utility Network layer. For layers not that are not sublayers of a Utility Network layer, the value is null.
- The fields defaultValue property describes the default value set for the field in the geodatabase.
- The domain description property is the description set for the domain in the geodatabase. For example, ("domains": {"description":"Elevation ranges"}).
- The sourceSpatialReference property describes the coordinate system of the feature class in the geodatabase.
- Both spatialReference and sourceSpatialReference information contain new properties for the (VCS) vertical coordinate system (if defined), tolerance and resolution. The tolerance properties are explicitly listed while other properties are provided to allow a client to calculate the resolution. See JSON response example below.
- heightModelInfo is a layer property that is exposed when the map is published with a defined vertical coordinate system.
- sourceHeightModelInfo is a layer property that describes the feature classes vertical coordinate system when defined.
Note:When querying, z values are returned in the sourceSpatialReference vertical coordinate system regardless of what is specified as the output spatial reference. It is also expected that z values are provided in the sourceSpatialReference source vertical coordinate system when editing.
Note:The features listed above are available for non-hosted services published from ArcGIS Pro 2.1 or later but not necessarily for services published from ArcMap or other processes. Services published from ArcGIS Pro 2.1 have the following layer and service property: "cimVersion": "2.1.0"
The following is new in 10.5
- returnDomainNames is a parameter on the layer resource where domain information includes only the domain name. The domain names can be matched with the full domain information as returned by the queryDomains operation. This approach is a more efficient way to work with domains as it requires returning the full domain information only once instead of with each layer.
- subtypeField is a layer property that is set to the name of the subtype field. If the layer does not have subtypes, it is set to empty string ("subtypeField": "").
- defaultSubtypeCode a layer property that is set to the default subtype code if the layer has subtypes.
- subtypes is an array that describes the subtypes in a layer and is always included if the layer has subtypes. The domains in the types array will match the domains in the subtype array for layers that have a unique value renderer based on the subtype column.
- The mergePolicy and splitPolicy are included with the full domain information.
- Templates will include a thumbnail when the Feature Service layer is published from a layer with a dictionary renderer. Clients can use the base 64 image in the thumbnail when displaying a template picker. The thumbnail is optional and will not be provided in templates of other Feature Service layers. See JSON response example below.
- If allowTrueCurvesUpdates is true and onlyAllowTrueCurveUpdatesByTrueCurveClients is true, features with true curves can by updated by true curve capable clients (e.g. ArcGIS Pro). When edits are applied, the true curve client must set the trueCurveClient parameter to true.
If allowTrueCurvesUpdates is true and onlyAllowTrueCurveUpdatesByTrueCurveClients is false, features with true curves can be updated by any client. This includes cases where the client provides a densified feature to update the true curve feature.
- If allowTrueCurvesUpdates is false, features with true curves cannot be updated.
- supportsTrueCurve will be true if the service supports the option to returnTrueCurves in the query response.
- archivingInfo indicates the archiving status of the layer:
- supportsQueryWithHistoricMoment indicates whether historic moment queries can be performed on the layer. A layer must be archiving-enabled to support these type of queries.
- startArchivingMoment indicates the time archiving was enabled on the layer.
- allowUpdateWithoutMValues will be true to allow NaN to be inserted for m-values when m-values are not supplied with the geometry of m-aware data. If allowUpdateWithoutMValues is false m-values must be supplied in order to edit the geometry of m-aware data.
The following properties describe features that have been added to the Feature Service through the releases prior to 10.5. If the property does not exist, it's equivalent to having a value of false or not set.
- useStandardizedQueries will be true to indicate that the layer requires the use of standardized queries. Learn more about standardized queries.
- supportsRollbackOnFailureParameter will be true to indicate the support for the rollbackOnFailure parameter in edit operations (for example, apply edits, add features, update features, and delete features). The supportsRollbackOnFailureParameter will be true if the data is simple and non-versioned. If supportsRollbackOnFailureParameter is false , rollbackOnFailure will be true during edit operations such as applyEdits.
- syncCanReturnChanges will be true if the data is versioned and has global IDs; this indicates the server has the ability to return changes only. If syncCanReturnChanges is false, the server will include all data for each layer in the response.
- isDataVersioned will be true if the layer is versioned.
- editFieldsInfo identifies the editor tracking fields and realm as follows:
- creationDateField indicates the field that stores the date and time the feature was created.
- creatorField indicates the field that stores the user who created the feature.
- editDateField indicates the field that stores the date and time the feature was last edited.
- editorField indicates the field that stores the user who last edited the feature.
- realm will be appended to the name of the user who makes the edit. For example, consider the case that logged-in user Sarah adds a new feature. The creator is set in the geodatabase as Sarah. If you configure the feature service to use the realm @server, subsequent edits appear in the database under the name Sarah@server.
- editingInfo if present, specifies information about editing.
- lastEditDate indicates the last time a layer was edited. This value gets updated every time the layer data is edited or when any of the layer properties change.
- ownershipBasedAccessControlForFeatures identifies the ownership-based access control settings of the feature service. The following properties indicate the operations allowed on features created by other users. The creatorField identifies the creator/owner of the feature.
- allowOthersToUpdate will be true if users can update features created by others.
- allowOthersToDelete will be true if users can delete features created by others.
- allowOthersToQuery will be true if users can query features created by others.
- supportsStatistics indicates whether the layer supports statistical functions in a query operation. This property is deprecated at 10.3. Starting at 10.3, refer to the new supportsStatistics property found within advancedQueryCapabilities.
- supportsAdvancedQueries indicates whether the layer supports orderBy and groupBy in a query operation. This property is deprecated at 10.3. Starting at 10.3, refer to the new advancedQueryCapabilities for this information.
- Advanced query capabilities of a layer are listed in advancedQueryCapabilities (new at 10.3), which contains the following properties:
- supportsPagination will be true if the layer supports pagination in the query operation.
- supportsQueryWithDistance will be true if the layer supports providing a distance parameter in the query operation.
- supportsReturningQueryExtent will be true if the layer supports returnExtentOnly in the query operation.
- supportsStatistics indicates whether the layer supports statistical functions in a query operation.
- supportsOrderBy will be true if the layer supports the orderByFields parameter in the query operation.
- supportsDistinct will be true if the layer supports the returnDistinctValues parameter in the query operation.
- supportedQueryFormats returns the formats in which query results can be returned.
- hasZ returns true if the features in the layer have Z values.
- hasM returns true if the features in the layer have M values.
- allowGeometryUpdates returns true if the geometry of the features in the layer can be edited.
- supportsCalculate will be true if the layers supports the calculate operation.
- supportsAttachmentsByUploadId will be true if the layer supports uploading attachments by UploadId.
- supportsApplyEditsWithGlobalIds will be true if the layer supports applying edits where globalid values provided by the client are used. In order for supportsApplyEditsWithGlobalIds to be true, layers must have a globalid column and have isDataVersioned as false. Layers with hasAttachments as true additionally require attachments with globalids and attachments related to features via the features globalid.
- Fields display SQL TYPE in addition to field types for ArcGIS Online hosted feature service layers. While developing application these SQL types should not be relied upon and field types should be used instead. The table below describes these SQL types.
SqlType | FieldType | Result database column type |
---|---|---|
Not specified | esriFieldTypeOID | [int] |
sqlTypeBigInt | esriFieldTypeOID | [bigint] - not currently supported |
sqlTypeBigInt | esriFieldTypeInteger | [bigint] |
sqlTypeInteger | esriFieldTypeInteger | [int] |
sqlTypeBit | esriFieldTypeSmallInteger | [bit] |
sqlTypeTinyInt | esriFieldTypeSmallInteger | [tinyint] |
sqlTypeInteger | esriFieldTypeSmallInteger | [smallint] |
NA | esriFieldTypeDate | columnSize = 4 [smalldatatime] |
NA | esriFieldTypeDate | columnSize = 10 [datetimeoffset] |
NA | esriFieldTypeDate | columnSize = 8 or none [datetime2] |
sqlTypeTime | esriFieldTypeString | [time] |
sqlTypeTimestamp | esriFieldTypeString | [timestamp] |
none | esriFieldTypeString | nvarchar |
Request parameters
Parameter |
Details |
---|---|
f |
Description: The response format. The default response format is html. Values: html | json | pjson |
returnUpdates | This parameter was added at 10.1. Description: If value is true, an updated time extent is returned. If the layer is not time-aware, an empty response is returned. Values: true | false |
returnDomainNames | This parameter was added at 10.5. Description: If value is true, then domain information provided in the layer includes only the domain name. To get the full domain information, use the queryDomains operation in the service resource. This domains included in the layer can be used to linked to the full domain information via the domain name. If the value is false or not set, then full domain information is included in the layer as it was in past releases. |
Example usage
Example: Get information about layer 0 in the "USA" Feature Service
http://services.myserver.com/ERmEceOGq5cHrItq/ArcGIS/rest/services/USA/FeatureServer/0
JSON response syntax
{
"currentVersion": <currentVersion>, //Added at 10.0 SP1
//properties applicable to both feature layers and tables
"id" : <layerOrTableId>,
"name" : "<layerOrTableName>",
"type" : "<layerOrTableType>", //"Feature Layer" or "Table"
"parentLayer": <parentLayerID>, //Added at 10.6
"displayField" : "<field name>"
"description" : "<description>",
"copyrightText" : "<copyrightText>",
"subtypeField": "<subtypeField>", //Added at 10.5
"defaultSubtypeCode": <defaultSubtypeCode>, //Added at 10.5
"defaultVisibility": <true | false>, //Added at 10.1
//Added at 10.1
"editFieldsInfo": {
"creationDateField": "<creationDateField>",
"creatorField": "<creatorField>",
"editDateField": "<editDateField>",
"editorField": "<editorField>",
"realm":"<realm>"
},
//Added at 10.1
"ownershipBasedAccessControlForFeatures": {
"allowOthersToUpdate": <true | false>,
"allowOthersToDelete": <true | false>,
"allowOthersToQuery": <true | false>
},
//Added at 10.1
"syncCanReturnChanges": <true | false>,
"relationships" : [
{
"id" : <relationshipId1>,
"name" : "<relationshipName1>",
"relatedTableId" : <relatedTableId1>,
"cardinality" : "<esriRelCardinalityOneToOne>|<esriRelCardinalityOneToMany>|<esriRelCardinalityManyToMany>";,//Added at 10.1
"role" : "<esriRelRoleOrigin>|<esriRelRoleDestination>";,//Added at 10.1
"keyField" : "<keyFieldName2>",//Added at 10.1
"composite" : <true>|<false>,//Added at 10.1
"relationshipTableId": <attributedRelationshipClassTableId>, //Added in 10.1. Returned only for attributed relationships
"keyFieldInRelationshipTable": "<key field in AttributedRelationshipClass table that matches keyField>" //Added in 10.1. Returned only for attributed relationships
},
{
"id" : <relationshipId2>,
"name" : "<relationshipName2>",
"relatedTableId" : <relatedTableId2>,
"cardinality" : "<esriRelCardinalityOneToOne>|<esriRelCardinalityOneToMany>|<esriRelCardinalityManyToMany>";,//Added at 10.1
"role" : "<esriRelRoleOrigin>|<esriRelRoleDestination>";,//Added at 10.1
"keyField" : "<keyFieldName2>",//Added at 10.1
"composite" : <true>|<false>,//Added at 10.1
"relationshipTableId": <attributedRelationshipClassTableId>, //Added in 10.1. Returned only for attributed relationships
"keyFieldInRelationshipTable": "<key field in AttributedRelationshipClass table that matches keyField>" //Added in 10.1. Returned only for attributed relationships
}
],
"isDataVersioned": <true | false>, //Added at 10.1
"isDataArchived": <true | false>, //Added at 10.6
"isCoGoEnabled": <true | false>, //Added at 10.6
"supportsRollbackOnFailureParameter": <true | false>, //Added at 10.1
"archivingInfo": {
"supportsQueryWithHistoricMoment": <true | false>,
"startArchivingMoment": <startArchivingMoment>
}, //Added at 10.5
"supportsStatistics": <true | false>, //Added at 10.1
"supportsAdvancedQueries": <true | false>, //Added at 10.1
"supportsCoordinatesQuantization": <true | false>, //Added at 10.6.1
//properties applicable to feature layers only
"geometryType" : "<geometryType>",
"minScale" : <minScale>,
"maxScale" : <maxScale>,
"effectiveMinScale" : <effectiveMinScale>,
"effectiveMaxScale" : <effectiveMaxScale>,
"advancedQueryCapabilities": {
"supportsPagination": <true | false>,
"supportsTrueCurve": <true | false>,
"supportsQueryWithDistance": <true | false>,
"supportsReturningQueryExtent": <true | false>,
"supportsStatistics": <true | false>,
"supportsHavingClause": <true | false>, //Added at 10.6.1
"supportsOrderBy": <true | false>,
"supportsDistinct": <true | false>,
"supportsCountDistinct": <true | false>, //Added at 10.6.1
"supportsQueryWithResultType": <true | false>, //Added at 10.6.1
"supportsReturningGeometryCentroid": <true | false>, //Added at 10.6.1
"supportsSqlExpression": <true | false>
},
"extent" : {
"xmin": <xmin>, "ymin": <ymin>, "xmax": <xmax>, "ymax": <ymax>,
"spatialReference": {
"wkid": <wkid>,
"latestWkid": <latestWkid>,
//Added at 10.6 when map is published with a vertical coordinate system
"vcsWkid": <vcsWkid>,
"latestVcsWkid": <latestVcsWkid>,
"xyTolerance": <xyTolerance>,
"zTolerance": <zTolerance>,
"mTolerance": <mTolerance>,
"falseX": <falseX>,
"falseY": <falseY>,
"xyUnits": <xyUnits>,
"falseZ": <falseZ>,
"zUnits": <zUnits>,
"falseM": <falseM>,
"mUnits": <mUnits>
}
},
//Added at 10.6. Only returned when a map is published with a vertical coordinate system
"heightModelInfo": {
"heightModel": "<heightModel>",
"vertCRS": "<vertCRS>",
"heightUnit": "<heightUnit>"
},
//Added at 10.6. Only returned when source data has a defined vertical coordinate system
"sourceHeightModelInfo": {
"heightModel": "<heightModel>",
"vertCRS": "<vertCRS>",
"heightUnit": "<heightUnit>"
}, //Added at 10.6
"sourceSpatialReference": {
"wkid": <wkid>,
"latestWkid": <latestWkid>,
//Added at 10.6. Returns when source data is published with a vertical coordinate system
"vcsWkid": <vcsWkid>,
"latestVcsWkid": <latestVcsWkid>,
"xyTolerance": <xyTolerance>,
"zTolerance": <zTolerance>,
"mTolerance": <mTolerance>,
"falseX": <falseX>,
"falseY": <falseY>,
"xyUnits": <xyUnits>,
"falseZ": <falseZ>,
"zUnits": <zUnits>,
"falseM": <falseM>,
"mUnits": <mUnits>
},
//for feature layers only
"drawingInfo" : {
"renderer" : <renderer>,
"transparency" : <transparency>,
"labelingInfo" : <labelingInfo>
},
"hasM": <true | false>, //if the features in the layer have M values, the hasM property will be true
"hasZ": <true | false>, //if the features in the layer have Z values, the hasZ property will be true
//if the layer / table supports querying based on time
"enableZDefaults": <true | false>,//Added at 10.1
"zDefault": <zDefaultValue>,//Added at 10.1
"allowGeometryUpdates": <true | false>,//Added at 10.1
"timeInfo" : {
"startTimeField" : "<startTimeFieldName>",
"endTimeField" : "<endTimeFieldName>",
"trackIdField" : "<trackIdFieldName>",
"timeExtent" : [<startTime>, <endTime>],
"timeReference" : {
"timeZone" : "<timeZone>",
"respectsDaylightSaving" : <true | false>
},
"timeInterval" : <timeInterval>,
"timeIntervalUnits" : "<timeIntervalUnits>"
},
//if the layer / table has attachments, the hasAttachments property will be true
"hasAttachments" : <true | false>,
//from 10 onward - indicates whether the layer / table has htmlPopups
"htmlPopupType" : "<esriServerHTMLPopupTypeNone | esriServerHTMLPopupTypeAsURL | esriServerHTMLPopupTypeAsHTMLText>",
//layer / table fields
"objectIdField" : "<objectIdFieldName>",
"globalIdField" : "<globalIdFieldName>",
"typeIdField" : "<typeIdFieldName>",
//from 10.0 fields of type (String, Date, GlobalID, GUID and XML) have an additional length property, editable properties
//from 10.1 fields have an additional nullable property
//from 10.6 fields have additional defaultValue and modelName properties. defaultValue can be a numeric or string value
"fields" : [
{
"name": "<fieldName1>", "type": "<fieldType1>",
"alias": "<fieldAlias1>", "domain": <domain1>,
"editable": "<true | false>", "nullable": "<true | false>",
"length": "<length1>", "defaultValue": "<defaultValue1>",
"modelName": "<modelName1>"
},
{
"name": "<fieldName2>", "type": "<fieldType2>",
"alias": "<fieldAlias1>", "domain": <domain1>,
"editable": "<true | false>", "nullable": "<true | false>",
"length": "<length2>", "defaultValue": <defaultValue2>,
"modelName": "<modelName2>"
}
],
//Added at 10.6.1
"geometryField": {
"name": "<fieldName>", "type": "<fieldType>",
"alias": "<fieldAlias>", "domain": <domain>,
"editable": "<true | false>", "nullable": "<true | false>",
"defaultValue": "<defaultValue>", "modelName": "<modelName>"
},
//layer / table sub-types
"types" : [
{
"id" : <typeId1>,
"name" : "<typeName1>",
"domains" : {
"<domainField11>" : <domain11>,
"<domainField12>" : <domain12>,
"description": "<domainDescription>" //Added in 10.6
},
"templates" : [
{
"name" : "<templateName11>",
"description" : "<templateDescription11>",
"prototype" : <prototypicalFeature11>
},
{
"name" : "<templateName12>",
"description" : "<templateDescription12>",
"prototype" : <prototypicalFeature12>
}
]
},
{
"id" : <typeId2>,
"name" : "<typeName2>",
"domains" : {
"<domainField11>" : <domain21>,
"<domainField12>" : <domain22>,
"description": "<domainDescription>" //Added in 10.6
},
"templates" : [
{
"name" : "<templateName21>",
"description" : "<templateDescription21>",
"prototype" : <prototypicalFeature21>,
"drawingTool": "esriFeatureEditToolNone | esriFeatureEditToolPoint | esriFeatureEditToolLine | esriFeatureEditToolPolygon |
esriFeatureEditToolAutoCompletePolygon | esriFeatureEditToolCircle | esriFeatureEditToolEllipse | esriFeatureEditToolRectangle |
esriFeatureEditToolFreehand"
},
{
"name" : "<templateName22>",
"description" : "<templateDescription22>",
"prototype" : <prototypicalFeature22>,
"drawingTool": "esriFeatureEditToolNone | esriFeatureEditToolPoint | esriFeatureEditToolLine | esriFeatureEditToolPolygon |
esriFeatureEditToolAutoCompletePolygon | esriFeatureEditToolCircle | esriFeatureEditToolEllipse | esriFeatureEditToolRectangle |
esriFeatureEditToolFreehand"
}
]
}
],
//layer / table templates - usually present when the layer / table has no types
"templates" : [
{
"name" : "<templateName1>",
"description" : "<templateDescription1>",
"prototype" : <prototypicalFeature1>
},
{
"name" : "<templateName2>",
"description" : "<templateDescription2>",
"prototype" : <prototypicalFeature2>
}
],
"subtypes": [
{
"code": <SubtypeCode1>,
"name": "<SubtypeDescription1>",
"defaultValues": {
"<fieldName1>": <default1>,
"<fieldName2>": "<default2>"
},
"domains": {
"<fieldName1>": <domain11>,
"<fieldName2>": <domain12>
}
},
{
"code": <SubtypeCode2>,
"name": "<SubtypeDescription2>",
"defaultValues": {
"<fieldName1>": <default3>,
"<fieldName2>": "<default4>"
},
"domains": {
"<fieldName1>": <domain21>,
"<fieldName2>": <domain22>
}
}
],
//Maximum number of records returned in a query result
"maxRecordCount": <maxRecordCount>, //Added at 10.1
"standardMaxRecordCount ": <standardMaxRecordCount>, //Added at 10.6.1
"tileMaxRecordCount": <tileMaxRecordCount>, //Added at 10.6.1
"maxRecordCountFactor": <maxRecordCountFactor>, //Added at 10.6.1
"standardMaxRecordCount" : <standardMaxRecordCount>,
"tileMaxRecordCount" : <tileMaxRecordCount>,
"maxRecordCountFactor" : <maxRecordCountFactor>,
"supportedQueryFormats": "<supportedQueryFormats>", //Added at 10.1
"hasMetadata": <true | false>, //Added at 10.6.1
"hasStaticData" : <true | false>,
//comma separated list of supported capabilities - e.g. "Create,Delete,Query,Update,Editing"
"capabilities" : "<capabilities>"
}
JSON response example
{
"id": 0,
"name": "Incidents",
"type": "Feature Layer",
"parentLayer": null,
"displayField": "req_id",
"description": "",
"copyrightText": "",
"subtypeField": "",
"defaultSubtypeCode": 0,
"defaultVisibility": True,
"isDataArchived": False,
"isCoGoEnabled": False,
"parentLayer": null,
"minScale": 0,
"maxScale": 0,
"geometryType": "esriGeometryPoint",
"supportsCoordinatesQuantization": true,
"supportsRollbackOnFailureParameter": true,
"advancedQueryCapabilities": {
"supportsPagination": true,
"supportsTrueCurve": true,
"supportsQueryWithDistance": true,
"supportsReturningQueryExtent": true,
"supportsStatistics": true,
"supportsHavingClause": true,
"supportsOrderBy": true,
"supportsDistinct": true,
"supportsCountDistinct": true,
"supportsQueryWithResultType": true,
"supportsReturningGeometryCentroid": false,
"supportsSqlExpression": true
},
"extent": {
"xmin": -122.514435102,
"ymin": 5.6843418860808E-14,
"xmax": 138.625776397,
"ymax": 67.1577965990001,
"spatialReference": {
"wkid": 4326,
"latestWkid": 3857,
"vcsWkid": 5702,
"latestVcsWkid": 5702,
"xyTolerance": 0.001,
"zTolerance": 0.001,
"mTolerance": 0.001,
"falseX": -20037700,
"falseY": -30241100,
"xyUnits": 10000,
"falseZ": -100000,
"zUnits": 10000,
"falseM": -100000,
"mUnits": 10000
}
},
"heightModelInfo": {
"heightModel": "gravity_related_height",
"vertCRS": "NGVD_1929",
"heightUnit": "us-foot"
},
"sourceSpatialReference": {
"wkid": 102100,
"latestWkid": 3857,
"xyTolerance": 0.001,
"zTolerance": 0.001,
"mTolerance": 0.001,
"falseX": -20037700,
"falseY": -30241100,
"xyUnits": 10000,
"falseZ": -100000,
"zUnits": 10000,
"falseM": -100000,
"mUnits": 10000
},
"sourceHeightModelInfo" : {
"heightModel" : "ellipsoidal",
"vertCRS" : "ITRF_2000",
"heightUnit" : "meter"
},
"drawingInfo": {
"renderer": {
"type": "uniqueValue",
"field1": "req_type",
"field2": null,
"field3": null,
"defaultSymbol": null,
"defaultLabel": "\u003call other values\u003e",
"uniqueValueInfos": [
{
"value": "Blocked Street or Sidewalk",
"label": "Blocked Street or Sidewalk",
"description": "",
"symbol": {
"type": "esriPMS",
"url": "1DD4FC53",
"imageData": "iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAII=",
"contentType": "image/png",
"color": null,
"width": 19,
"height": 19,
"angle": 0,
"xoffset": 0,
"yoffset": 0
}
},
{
"value": "Damaged Property",
"label": "Damaged Property",
"description": "",
"symbol": {
"type": "esriPMS",
"url": "DF3100A6",
"imageData": "iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAII=",
"contentType": "image/png",
"color": null,
"width": 15,
"height": 9,
"angle": 0,
"xoffset": 0,
"yoffset": 0
}
},
{
"value": "Graffiti Complaint - Public Property",
"label": "Graffiti Complaint",
"description": "",
"symbol": {
"type": "esriPMS",
"url": "B2E6E7A0",
"imageData": "iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAg==",
"contentType": "image/png",
"color": null,
"width": 19,
"height": 19,
"angle": 0,
"xoffset": 0,
"yoffset": 0
}
},
{
"value": "Graffiti Complaint � Private Property",
"label": "Graffiti Complaint",
"description": "",
"symbol": {
"type": "esriPMS",
"url": "B2E6E7A0",
"imageData": "iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAAg==",
"contentType": "image/png",
"color": null,
"width": 19,
"height": 19,
"angle": 0,
"xoffset": 0,
"yoffset": 0
}
},
{
"value": "Sewer Issues",
"label": "Sewer Issues",
"description": "",
"symbol": {
"type": "esriPMS",
"url": "80DC11A7",
"imageData": "iVBORw0KGgoAAAANSUhEUgAAABYAAAAaCAYAAACzdqxAAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAAg==",
"contentType": "image/png",
"color": null,
"width": 16,
"height": 19,
"angle": 0,
"xoffset": 0,
"yoffset": 0
}
},
{
"value": "Sidewalk and Curb Issues",
"label": "Sidewalk and Curb Issues",
"description": "",
"symbol": {
"type": "esriPMS",
"url": "19213DC2",
"imageData": "iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAAII=",
"contentType": "image/png",
"color": null,
"width": 19,
"height": 19,
"angle": 0,
"xoffset": 0,
"yoffset": 0
}
},
{
"value": "Tree Maintenance or Damage",
"label": "Tree Maintenance or Damage",
"description": "",
"symbol": {
"type": "esriPMS",
"url": "37B62A6C",
"imageData": "iVBORw0KGgoAAAANSUhEUgAAABcAAAAaCAYAAABctMd+AAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAACC",
"contentType": "image/png",
"color": null,
"width": 17,
"height": 19,
"angle": 0,
"xoffset": 0,
"yoffset": 0
}
}
]
},
"transparency": 0,
"labelingInfo": null
},
"hasAttachments": false,
"htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText",
"objectIdField": "objectid",
"globalIdField": "",
"typeIdField": "req_type",
"fields": [
{
"name": "objectid",
"type": "esriFieldTypeOID",
"alias": "Object ID",
"editable": false,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "OBJECTID"
},
{
"name": "req_id",
"type": "esriFieldTypeString",
"alias": "Request ID",
"editable": true,
"length": 20,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "REQ_ID"
},
{
"name": "req_type",
"type": "esriFieldTypeString",
"alias": "Request Type",
"editable": true,
"length": 40,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "REQ_TYPE"
},
{
"name": "req_date",
"type": "esriFieldTypeString",
"alias": "Request Date",
"editable": true,
"length": 30,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "REQ_DATE"
},
{
"name": "req_time",
"type": "esriFieldTypeString",
"alias": "Request Time",
"editable": true,
"length": 20,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "REQ_TIME"
},
{
"name": "address",
"type": "esriFieldTypeString",
"alias": "Address",
"editable": true,
"length": 60,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "ADDRESS"
},
{
"name": "x_coord",
"type": "esriFieldTypeString",
"alias": "X Coordinate",
"editable": true,
"length": 20,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "X_COORD"
},
{
"name": "y_coord",
"type": "esriFieldTypeString",
"alias": "Y Coordinate",
"editable": true,
"length": 20,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "Y_COORD"
},
{
"name": "district",
"type": "esriFieldTypeString",
"alias": "District",
"editable": true,
"length": 20,
"nullable": true,
"domain": null,
"defaultValue": null,
"modelame": "DISTRICT"
},
{
"name": "status",
"type": "esriFieldTypeSmallInteger",
"alias": "Status",
"editable": true,
"nullable": true,
"domain": {
"type": "codedValue",
"name": "StatusCodes",
"codedValues": [
{
"name": "New",
"code": 1
},
{
"name": "Open",
"code": 2
},
{
"name": "Closed",
"code": 3
}
]
}
}
],
"geometryField": {
"name": "Shape",
"type": "esriFieldTypeGeometry",
"alias": "Shape",
"domain": null,
"editable": true,
"nullable": true,
"defaultValue": null,
"modelName": "Shape"
},
"types": [
{
"id": "Graffiti Complaint - Private Property",
"name": "Graffiti Complaint",
"domains": {
"description": null
},
"templates": [
{
"name": "Graffiti Complaint",
"description": "",
"drawingTool": "esriFeatureEditToolPoint",
"prototype": {
"attributes": {
"status": 1,
"req_id": null,
"req_type": "Graffiti Complaint - Private Property",
"req_date": null,
"req_time": null,
"address": null,
"x_coord": null,
"y_coord": null,
"district": null
}
}
}
]
},
{
"id": "Blocked Street or Sidewalk",
"name": "Blocked Street or Sidewalk",
"domains": {
"description": null
},
"templates": [
{
"name": "Blocked Street or Sidewalk",
"description": "",
"drawingTool": "esriFeatureEditToolPoint",
"prototype": {
"attributes": {
"status": 1,
"req_id": null,
"req_type": "Blocked Street or Sidewalk",
"req_date": null,
"req_time": null,
"address": null,
"x_coord": null,
"y_coord": null,
"district": null
}
}
}
]
},
{
"id": "Damaged Property",
"name": "Damaged Property",
"domains": {
"description": null
},
"templates": [
{
"name": "Damaged Property",
"description": "",
"drawingTool": "esriFeatureEditToolPoint",
"prototype": {
"attributes": {
"status": 1,
"req_id": null,
"req_type": "Damaged Property",
"req_date": null,
"req_time": null,
"address": null,
"x_coord": null,
"y_coord": null,
"district": null
}
}
}
]
},
{
"id": "Graffiti Complaint - Public Property",
"name": "Graffiti Complaint",
"domains": {
"description": null
},
"templates": [
{
"name": "Graffiti Complaint",
"description": "",
"drawingTool": "esriFeatureEditToolPoint",
"prototype": {
"attributes": {
"status": 1,
"req_id": null,
"req_type": "Graffiti Complaint - Public Property",
"req_date": null,
"req_time": null,
"address": null,
"x_coord": null,
"y_coord": null,
"district": null
}
}
}
]
},
{
"id": "Sewer Issues",
"name": "Sewer Issues",
"domains": {
"description": null
},
"templates": [
{
"name": "Sewer Issues",
"description": "",
"drawingTool": "esriFeatureEditToolPoint",
"prototype": {
"attributes": {
"status": 1,
"req_id": null,
"req_type": "Sewer Issues",
"req_date": null,
"req_time": null,
"address": null,
"x_coord": null,
"y_coord": null,
"district": null
}
}
}
]
},
{
"id": "Tree Maintenance or Damage",
"name": "Tree Maintenance or Damage",
"domains": {
"description": null
},
"templates": [
{
"name": "Tree Maintenance or Damage",
"description": "",
"drawingTool": "esriFeatureEditToolPoint",
"prototype": {
"attributes": {
"status": 1,
"req_id": null,
"req_type": "Tree Maintenance or Damage",
"req_date": null,
"req_time": null,
"address": null,
"x_coord": null,
"y_coord": null,
"district": null
}
}
}
]
},
{
"id": "Sidewalk and Curb Issues",
"name": "Sidewalk and Curb Issues",
"domains": {
"description": null
},
"templates": [
{
"name": "Sidewalk and Curb Issues",
"description": "",
"drawingTool": "esriFeatureEditToolPoint",
"prototype": {
"attributes": {
"status": 1,
"req_id": null,
"req_type": "Sidewalk and Curb Issues",
"req_date": null,
"req_time": null,
"address": null,
"x_coord": null,
"y_coord": null,
"district": null
}
}
}
]
}
],
"templates": [
],
"maxRecordCount" : 2000,
"standardMaxRecordCount" : 4000,
"tileMaxRecordCount" : 4000,
"maxRecordCountFactor" : 1,
"hasMetadata": false,
"capabilities": "Create,Delete,Query,Update,Editing"
}
JSON response example where the layer has subtypes and returnDomainNames=false
{
"currentVersion": 10.5,
"cimVersion": "1.3.0",
"id": 1,
"name": "FC1",
"parentLayerId": -1,
"type": "Feature Layer",
"description": "sync.GDB.FC1_1",
"copyrightText": "",
"defaultVisibility": true,
"editFieldsInfo": null,
"ownershipBasedAccessControlForFeatures": null,
"syncCanReturnChanges": false,
"relationships": [],
"isDataVersioned": false,
"supportsRollbackOnFailureParameter": true,
"archivingInfo": {
"supportsQueryWithHistoricMoment": false,
"startArchivingMoment": -1
},
"supportsStatistics": true,
"supportsAdvancedQueries": true,
"supportsValidateSQL": true,
"supportsCalculate": true,
"advancedQueryCapabilities": {
"supportsPagination": true,
"supportsTrueCurve": true,
"supportsQueryWithDistance": true,
"supportsReturningQueryExtent": true,
"supportsStatistics": true,
"supportsOrderBy": true,
"supportsDistinct": true
},
"geometryType": "esriGeometryPolygon",
"minScale": 0,
"maxScale": 0,
"extent": {
"xmin": -1.11478990548E7,
"ymin": 5784886.1743,
"xmax": -1.08927509324E7,
"ymax": 5970448.445100002,
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
}
},
"drawingInfo": {
"renderer": {
"type": "uniqueValue",
"field1": "FLD0_SUBT_FC2",
"field2": null,
"fieldDelimiter": ", ",
"defaultSymbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
130,
130,
130,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
225,
225,
225,
255
],
"width": 0.75
}
},
"defaultLabel": "<all other values>",
"uniqueValueInfos": [
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
207,
246,
252,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
110,
110,
110,
255
],
"width": 0.7
}
},
"value": "1",
"label": "subtype1",
"description": ""
}
]
},
"transparency": 0,
"labelingInfo": null
},
"hasM": false,
"hasZ": false,
"allowGeometryUpdates": true,
"hasAttachments": false,
"supportsApplyEditsWithGlobalIds": false,
"htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText",
"objectIdField": "OBJECTID",
"globalIdField": "",
"displayField": "FLD0_SUBT_FC2",
"typeIdField": "FLD0_SUBT_FC2",
"subtypeField": "FLD0_SUBT_FC2",
"defaultSubtypeCode": 1,
"fields": [
{
"name": "OBJECTID",
"type": "esriFieldTypeOID",
"alias": "OBJECTID",
"domain": null,
"editable": false,
"nullable": false
},
{
"name": "FLD0_SUBT_FC2",
"type": "esriFieldTypeInteger",
"alias": "FLD0_SUBT_FC2",
"domain": null,
"editable": true,
"nullable": true
},
{
"name": "FLD1_LONG_FC2",
"type": "esriFieldTypeInteger",
"alias": "FLD1_LONG_FC1",
"domain": {
"type": "range",
"name": "RDOM_1",
"range": [
1,
50
],
"mergePolicy": "esriMPTDefaultValue",
"splitPolicy": "esriSPTDefaultValue"
},
"editable": true,
"nullable": true
},
{
"name": "FLD2_DBL_FC2",
"type": "esriFieldTypeDouble",
"alias": "FLD2_DBL_FC2",
"domain": {
"type": "range",
"name": "RDOM_3",
"range": [
100,
150.5
],
"mergePolicy": "esriMPTDefaultValue",
"splitPolicy": "esriSPTDefaultValue"
},
"editable": true,
"nullable": true
},
{
"name": "FLD3_DBL_FC2",
"type": "esriFieldTypeDouble",
"alias": "FLD3_LONG_FC1",
"domain": {
"type": "codedValue",
"name": "CDOM_1",
"codedValues": [
{
"name": "code 1 description",
"code": 1
},
{
"name": "code 1.5 description",
"code": 1.5
},
{
"name": "code 2 description",
"code": 2
},
{
"name": "code 2.5 description",
"code": 2.5
}
],
"mergePolicy": "esriMPTDefaultValue",
"splitPolicy": "esriSPTDefaultValue"
},
"editable": true,
"nullable": true
},
{
"name": "FLD4_TEXT_FC2",
"type": "esriFieldTypeString",
"alias": "FLD4_LONG_FC1",
"domain": {
"type": "codedValue",
"name": "CDOM_3",
"codedValues": [
{
"name": "code 100 description",
"code": "code 100"
},
{
"name": "code 200 description",
"code": "code 200"
},
{
"name": "code 300 description",
"code": "code 300"
}
],
"mergePolicy": "esriMPTDefaultValue",
"splitPolicy": "esriSPTDefaultValue"
},
"editable": true,
"nullable": true,
"length": 50
}
],
"indexes": [
{
"name": "R1390_pk",
"fields": "OBJECTID",
"isAscending": true,
"isUnique": true,
"description": ""
},
{
"name": "S1047_idx",
"fields": "SHAPE",
"isAscending": true,
"isUnique": true,
"description": ""
}
],
"dateFieldsTimeReference": {
"timeZone": "UTC",
"respectsDaylightSaving": false
},
"types": [
{
"id": 1,
"name": "subtype1",
"domains": {
"FLD1_LONG_FC2": {"type": "inherited"},
"FLD3_DBL_FC2": {
"type": "codedValue",
"name": "CDOM_4",
"codedValues": [
{
"name": "coded 1000.1 desc",
"code": 1000.1
},
{
"name": "coded 2000.1 desc",
"code": 2000.2
},
{
"name": "coded 3000.1 desc",
"code": 3000.3
}
],
"mergePolicy": "esriMPTDefaultValue",
"splitPolicy": "esriSPTDefaultValue"
},
"FLD4_TEXT_FC2": {"type": "inherited"}
},
"templates": [
{
"name": "subtype1",
"description": "",
"prototype": {
"attributes": {
"FLD3_DBL_FC2": 1000.1,
"FLD4_TEXT_FC2": "code 200",
"FLD0_SUBT_FC2": 1,
"FLD1_LONG_FC2": 25,
"FLD2_DBL_FC2": null
}
},
"drawingTool": "esriFeatureEditToolPolygon"
}
]
}
],
"templates": [],
"subtypes": [
{
"code": 1,
"name": "subtype1",
"defaultValues": {
"FLD0_SUBT_FC2": 1,
"FLD1_LONG_FC2": 25,
"FLD2_DBL_FC2": null,
"FLD3_DBL_FC2": 1000.1,
"FLD4_TEXT_FC2": "code 200"
},
"domains": {
"FLD1_LONG_FC2": {"type": "inherited"},
"FLD3_DBL_FC2": {
"type": "codedValue",
"name": "CDOM_4",
"codedValues": [
{
"name": "coded 1000.1 desc",
"code": 1000.1
},
{
"name": "coded 2000.1 desc",
"code": 2000.2
},
{
"name": "coded 3000.1 desc",
"code": 3000.3
}
],
"mergePolicy": "esriMPTDefaultValue",
"splitPolicy": "esriSPTDefaultValue"
},
"FLD4_TEXT_FC2": {"type": "inherited"}
}
}
],
"maxRecordCount" : 2000,
"standardMaxRecordCount" : 4000,
"tileMaxRecordCount" : 4000,
"maxRecordCountFactor" : 1,
"supportedQueryFormats": "JSON, AMF, geoJSON",
"capabilities": "Create,Query,Update,Delete,Extract,Uploads,Editing",
"useStandardizedQueries": true
}
JSON response example where the layer has subtypes and returnDomainNames=true
{
"currentVersion": 10.5,
"cimVersion": "1.3.0",
"id": 1,
"name": "FC1",
"parentLayerId": -1,
"type": "Feature Layer",
"description": "sync.GDB.FC1_1",
"copyrightText": "",
"defaultVisibility": true,
"editFieldsInfo": null,
"ownershipBasedAccessControlForFeatures": null,
"syncCanReturnChanges": false,
"relationships": [],
"isDataVersioned": false,
"supportsRollbackOnFailureParameter": true,
"archivingInfo": {
"supportsQueryWithHistoricMoment": false,
"startArchivingMoment": -1
},
"supportsStatistics": true,
"supportsAdvancedQueries": true,
"supportsValidateSQL": true,
"supportsCalculate": true,
"advancedQueryCapabilities": {
"supportsPagination": true,
"supportsTrueCurve": true,
"supportsQueryWithDistance": true,
"supportsReturningQueryExtent": true,
"supportsStatistics": true,
"supportsOrderBy": true,
"supportsDistinct": true
},
"geometryType": "esriGeometryPolygon",
"minScale": 0,
"maxScale": 0,
"extent": {
"xmin": -1.11478990548E7,
"ymin": 5784886.1743,
"xmax": -1.08927509324E7,
"ymax": 5970448.445100002,
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
}
},
"drawingInfo": {
"renderer": {
"type": "uniqueValue",
"field1": "FLD0_SUBT_FC2",
"field2": null,
"fieldDelimiter": ", ",
"defaultSymbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
130,
130,
130,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
225,
225,
225,
255
],
"width": 0.75
}
},
"defaultLabel": "<all other values>",
"uniqueValueInfos": [
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
207,
246,
252,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
110,
110,
110,
255
],
"width": 0.7
}
},
"value": "1",
"label": "subtype1",
"description": ""
}
]
},
"transparency": 0,
"labelingInfo": null
},
"hasM": false,
"hasZ": false,
"allowGeometryUpdates": true,
"hasAttachments": false,
"supportsApplyEditsWithGlobalIds": false,
"htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText",
"objectIdField": "OBJECTID",
"globalIdField": "",
"displayField": "FLD0_SUBT_FC2",
"typeIdField": "FLD0_SUBT_FC2",
"subtypeField": "FLD0_SUBT_FC2",
"defaultSubtypeCode": 1,
"fields": [
{
"name": "OBJECTID",
"type": "esriFieldTypeOID",
"alias": "OBJECTID",
"domain": null,
"editable": false,
"nullable": false
},
{
"name": "FLD0_SUBT_FC2",
"type": "esriFieldTypeInteger",
"alias": "FLD0_SUBT_FC2",
"domain": null,
"editable": true,
"nullable": true
},
{
"name": "FLD1_LONG_FC2",
"type": "esriFieldTypeInteger",
"alias": "FLD1_LONG_FC1",
"domain": {"name": "RDOM_1"},
"editable": true,
"nullable": true
},
{
"name": "FLD2_DBL_FC2",
"type": "esriFieldTypeDouble",
"alias": "FLD2_DBL_FC2",
"domain": {"name": "RDOM_3"},
"editable": true,
"nullable": true
},
{
"name": "FLD3_DBL_FC2",
"type": "esriFieldTypeDouble",
"alias": "FLD3_LONG_FC1",
"domain": {"name": "CDOM_1"},
"editable": true,
"nullable": true
},
{
"name": "FLD4_TEXT_FC2",
"type": "esriFieldTypeString",
"alias": "FLD4_LONG_FC1",
"domain": {"name": "CDOM_3"},
"editable": true,
"nullable": true,
"length": 50
}
],
"indexes": [
{
"name": "R1390_pk",
"fields": "OBJECTID",
"isAscending": true,
"isUnique": true,
"description": ""
},
{
"name": "S1047_idx",
"fields": "SHAPE",
"isAscending": true,
"isUnique": true,
"description": ""
}
],
"dateFieldsTimeReference": {
"timeZone": "UTC",
"respectsDaylightSaving": false
},
"types": [
{
"id": 1,
"name": "subtype1",
"domains": {
"FLD1_LONG_FC2": {"name": "RDOM_1"},
"FLD3_DBL_FC2": {"name": "CDOM_4"},
"FLD4_TEXT_FC2": {"name": "CDOM_3"}
},
"templates": [
{
"name": "subtype1",
"description": "",
"prototype": {
"attributes": {
"FLD3_DBL_FC2": 1000.1,
"FLD4_TEXT_FC2": "code 200",
"FLD0_SUBT_FC2": 1,
"FLD1_LONG_FC2": 25,
"FLD2_DBL_FC2": null
}
},
"drawingTool": "esriFeatureEditToolPolygon"
}
]
}
],
"templates": [],
"subtypes": [
{
"code": 1,
"name": "subtype1",
"defaultValues": {
"FLD0_SUBT_FC2": 1,
"FLD1_LONG_FC2": 25,
"FLD2_DBL_FC2": null,
"FLD3_DBL_FC2": 1000.1,
"FLD4_TEXT_FC2": "code 200"
},
"domains": {
"FLD1_LONG_FC2": {"name": "RDOM_1"},
"FLD3_DBL_FC2": {"name": "CDOM_4"},
"FLD4_TEXT_FC2": {"name": "CDOM_3"}
}
}
],
"maxRecordCount" : 2000,
"standardMaxRecordCount" : 4000,
"tileMaxRecordCount" : 4000,
"maxRecordCountFactor" : 1,
"supportedQueryFormats": "JSON, AMF, geoJSON",
"capabilities": "Create,Query,Update,Delete,Extract,Uploads,Editing",
"useStandardizedQueries": true
}
JSON response example (template with thumbnail)
{
....
"templates":[
{
"name":"template_sample",
"description":"template with thumbnail",
"prototype":{
"attributes":{
"direction":null,
"name":null,
"code":null
}
},
"drawingTool":"esriFeatureEditToolPoint",
"thumbnail":{
"imageData":"<base 64>",
"contentType":"image/png",
"height":34,
"width":40
}
}
]
....
}
JSON response example (maxRecordCount for point data)
{
"maxRecordCount" : 2000,
"standardMaxRecordCount" : 32000,
"tileMaxRecordCount" : 8000,
}
JSON response example (maxRecordCount for polyline data)
{
"maxRecordCount" : 2000,
"standardMaxRecordCount" : 4000,
"tileMaxRecordCount" : 4000,
}
JSON response example (maxRecordCount for polygon data)
{
"maxRecordCount" : 2000,
"standardMaxRecordCount" : 4000,
"tileMaxRecordCount" : 4000,
}
JSON response example (maxRecordCount for table)
{
"maxRecordCount" : 2000,
"standardMaxRecordCount" : 32000,
"tileMaxRecordCount" : 8000,
}
JSON response example (Utility Network Layer)
{
"currentVersion": 10.6,
"cimVersion": "2.1.0",
"id": 8,
"name": "Electric Utility Network",
"type": "Utility Network Layer",
"description": "",
"geometryType": null,
"copyrightText": "",
"parentLayer": null,
"subLayers": [
{
"id": 9,
"name": "Point Errors"
},
{
"id": 10,
"name": "Line Errors"
},
{
"id": 11,
"name": "Polygon Errors"
},
{
"id": 12,
"name": "Dirty Areas"
}
],
"minScale": 0,
"maxScale": 0,
"defaultVisibility": true,
"extent": {
"xmin": 1025871.4390050925,
"ymin": 1861241.5247562313,
"xmax": 1037672.4351865175,
"ymax": 1873159.6725078186,
"spatialReference": {
"wkid": 102671,
"latestWkid": 3435,
"xyTolerance": 0.00328083333333333,
"zTolerance": 0.001,
"mTolerance": 0.001,
"falseX": -17463800,
"falseY": -46132600,
"xyUnits": 3048.0060960121905,
"falseZ": -100000,
"zUnits": 10000,
"falseM": -100000,
"mUnits": 10000
}
},
"hasAttachments": false,
"htmlPopupType": "esriServerHTMLPopupTypeNone",
"displayField": "",
"typeIdField": null,
"subtypeFieldName": null,
"fields": null,
"indexes": [],
"subtypes": [],
"relationships": [],
"canModifyLayer": false,
"canScaleSymbols": false,
"hasLabels": false,
"supportsStatistics": false,
"supportsAdvancedQueries": false,
"supportedQueryFormats": "JSON, AMF, geoJSON",
"ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true},
"useStandardizedQueries": true,
"advancedQueryCapabilities": {
"useStandardizedQueries": true,
"supportsStatistics": false,
"supportsOrderBy": false,
"supportsDistinct": false,
"supportsPagination": false,
"supportsTrueCurve": false,
"supportsReturningQueryExtent": true,
"supportsQueryWithDistance": true,
"supportsSqlExpression": false
},
"systemLayers": {
"dirtyAreasLayerId": 12,
"lineErrorsLayerId": 10,
"pointErrorsLayerId": 9,
"polygonErrorsLayerId": 11,
"associationsTableId": 500001,
"subnetworksTableId": 500002,
"rulesTableId": 500003,
"diagramEdgeLayerId": 500005,
"diagramJunctionLayerId": 500006,
"diagramContainerLayerId": 500007,
"temporaryDiagramEdgeLayerId": 500008,
"temporaryDiagramJunctionLayerId": 500009,
"temporaryDiagramContainerLayerId": 500010
},
"associationTypeValues": {
"connectivity": 1,
"containment": 2,
"attachment": 3
},
"capabilities": ""
}
JSON response example (Spatial reference, VCS, tolerance, resolution properties, height model info, source spatial reference and source height model info)
"extent": {
"xmin": -1.2912538509399999E7,
"ymin": 4475883.597499996,
"xmax": -8559568.4057,
"ymax": 5338447.646700002,
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857,
"vcsWkid": 115700,
"latestVcsWkid": 115700,
"xyTolerance": 0.001,
"zTolerance": 0.001,
"mTolerance": 0.001,
"falseX": -20037700,
"falseY": -30241100,
"xyUnits": 1.4892314192838538E8,
"falseZ": -100000,
"zUnits": 10000,
"falseM": -100000,
"mUnits": 10000
}
},
"heightModelInfo": {
"heightModel": "ellipsoidal",
"vertCRS": "WGS_1984",
"heightUnit": "meter"
},
"sourceSpatialReference": {
"wkid": 4326,
"latestWkid": 4326,
"vcsWkid": 5874,
"latestVcsWkid": 5874,
"xyTolerance": 0.001,
"zTolerance": 0.001,
"mTolerance": 0.001,
"falseX": -20037700,
"falseY": -30241100,
"xyUnits": 10000,
"falseZ": -100000,
"zUnits": 10000,
"falseM": -100000,
"mUnits": 10000
},
"sourceHeightModelInfo": {
"heightModel": "gravity_related_height",
"vertCRS": "High_Water_Height",
"heightUnit": "meter"
},