Validation Service

Description

The Validation Server is responsible for exposing the management capabilities necessary to support evaluation of geodatabase rules.

The following rules can be checked against using the evaluate operation:

The capabilities property is new at ArcGIS Enterprise 10.9.1. This property returns the capabilities that the service supports.

Summary graphic of validation service operations

The validation server is tied to the published feature service; it shares service instance settings (for example, SOC count and time outs) with the feature service.

Learn how to configure service instance settings

JSON Response syntax

root

{
  "name": "Validation Server",
  "type": "Map Server Extension",
  "capabilities": {
    "supportsTopologyValidation": <true | false>, 
    "supportsTopologyErrorModification": <true | false>
  } 
}

Example usage

Request URL:

https://myserver.esri.com/server/rest/services/LandUse/validationServer

JSON response:

{
 "name": "Validation Server",
 "type": "Map Server Extension",
 "capabilities": {
  "supportsTopologyValidation": true,
  "supportsTopologyErrorModification": true
  } 
}