If there is a selection in the map, only selected features within the specified extent will be evaluated.
When the input workspace is a file or mobile geodatabase, the entire workspace is evaluated.
When the input workspace is a feature service workspace, the validation capability must be enabled.
The tool evaluates attribute rules for the default version.
License:
When working with branch versioning in an ArcGIS Enterprise 11.2 or later deployment, organization members must be assigned a license for the ArcGIS Advanced Editing user type extension to use this tool.
A file geodatabase, mobile geodatabase, or feature service URL. An example of a feature service URL is https://myserver/server/rest/services/myservicename/FeatureServer.
Workspace
Evaluation Types
Specifies the types of evaluation that will be used.
Calculation rules—Batch calculation attribute rules will be evaluated.
Validation rules—Validation attribute rules will be evaluated.
String
Extent
(Optional)
The extent to be evaluated. If there is a selection in the map, only selected features within the specified extent will be evaluated.
Current Display Extent—The extent will be based on the active map or scene.
Draw Extent—The extent will be based on a rectangle drawn on the map or scene.
Extent of a Layer—The extent will be based on an active map layer. Choose an available layer or use the Extent of data in all layers option. Each map layer has the following options:
All Features—The extent of all features.
Selected Features—The extent of the selected features.
Visible Features—The extent of visible features.
Browse—The extent will be based on a dataset.
Intersection of Inputs—The extent will be the intersecting extent of all inputs.
Union of Inputs—The extent will be the combined extent of all inputs.
Clipboard—The extent can be copied to and from the clipboard.
Copy Extent—Copies the extent and coordinate system to the clipboard.
Paste Extent—Pastes the extent and coordinate system from the clipboard. If the clipboard does not include a coordinate system, the extent will use the map's coordinate system.
Reset Extent—The extent will be reset to the default value.
When coordinates are manually provided, the coordinates must be numeric values and in the active map's coordinate system. The map may use different display units than the provided coordinates. Use a negative value sign for south and west coordinates.
Extent
Async
(Optional)
Specifies whether the evaluation will run synchronously or asynchronously. This parameter is only supported when the input workspace is a feature service.
Checked—The evaluation will run asynchronously. This option dedicates server resources to run the evaluation with a longer time-out. Running asynchronously is recommended when evaluating large datasets that contain many features requiring calculation or validation. This is the default.
Unchecked—The evaluation will run synchronously. This option has a shorter time-out and is best used when evaluating an extent with a small number of features requiring calculation or validation.
Boolean
Derived output
Label
Explanation
Data type
Updated Workspace
The updated feature service workspace that has been evaluated.
A file geodatabase, mobile geodatabase, or feature service URL. An example of a feature service URL is https://myserver/server/rest/services/myservicename/FeatureServer.
Workspace
evaluation_types[evaluation_types,...]
Specifies the types of evaluation that will be used.
CALCULATION_RULES—Batch calculation attribute rules will be evaluated.
VALIDATION_RULES—Validation attribute rules will be evaluated.
String
extent
(Optional)
The extent to be evaluated. If there is a selection in the map, only selected features within the specified extent will be evaluated.
MAXOF—The maximum extent of all inputs will be used.
MINOF—The minimum area common to all inputs will be used.
DISPLAY—The extent is equal to the visible display.
Layer name—The extent of the specified layer will be used.
Extent object—The extent of the specified object will be used.
Space delimited string of coordinates—The extent of the specified string will be used. Coordinates are expressed in the order of x-min, y-min, x-max, y-max.
Extent
run_async
(Optional)
Specifies whether the evaluation will run synchronously or asynchronously. This parameter is only supported when the input workspace is a feature service.
Legacy:
In earlier releases, this parameter was named async. At ArcGIS Pro 2.4, the parameter name was changed to run_async to avoid conflicts with the reserved Python keyword async.
ASYNC—The evaluation will run asynchronously. This option dedicates server resources to run the evaluation with a longer time-out. Running asynchronously is recommended when evaluating large datasets that contain many features requiring calculation or validation. This is the default.
SYNC—The evaluation will run synchronously. This option has a shorter time-out and is best used when evaluating an extent with a small number of features requiring calculation or validation.
Boolean
Derived output
Name
Explanation
Data type
updated_workspace
The updated feature service workspace that has been evaluated.
Workspace
Code sample
EvaluateRules example (stand-alone script)
Evaluate validation rules asynchronously using the EvaluateRules function.
# Import arcpy
import arcpy
# Assign local variables
in_workspace = "https://myserver/server/rest/services/myservicename/FeatureServer"
extent = "-113.187897827702 38.0958054854392 -113.142166008849 38.1404599940719"
# Run the evaluation
arcpy.management.EvaluateRules(in_workspace, "VALIDATION_RULES", extent, "ASYNC")
Environments
This tool does not use any geoprocessing environments.
Licensing information
Basic: Limited
Supported for branch versioning when using ArcGIS Enterprise named user licensing with a member that has the ArcGIS Advanced Editing user type extension.