- URL:
- https://<ReviewerResults-url>/writeFeatureAsResult
- Methods:
GET
- Required Capability:
- Data Reviewer Server
- Version Introduced:
- 10.1
Description
Submits a JSON feature object to the Data Reviewer workspace. The feature object includes a JSON geometry and attributes object. See the ArcGIS Data Reviewer REST API Reference for information on JSON
feature objects. Attributes are written to matching custom (user-defined) fields in REVTABLEMAIN
. Attribute values are discarded if there are no matching fields between the feature object and REVTABLEMAIN
.
This operation also submits Data Reviewer attributes to the Data Reviewer workspace. Specify Data Reviewer attributes in the reviewer
parameter.
Request parameters
Parameter | Details |
---|---|
| The JSON feature to write as a result to the Data Reviewer workspace. Example
|
| The Reviewer attributes written to the Data Reviewer workspace. Syntax
|
| The response format. The default response format is Values: |
Reviewer attribute properties
Parameter | Details |
---|---|
| The session in which validation occurs. A Data Reviewer session is similar to an edit session in that it represents a set of interactions with your data. While edit sessions contain editing transactions, a Data Reviewer session contains quality control tasks. Sessions are stored in the Data Reviewer workspace, and created with the Session Manager tool in the ArcGIS Data Reviewer extension for ArcMap or ArcGIS Pro, or using the Create Reviewer Session geoprocessing tool. Use the numeric format only. |
| ArcGIS Data Reviewer severity value. |
| The user name under which results or features are submitted to the Reviewer workspace. |
| A status value (any string) to write to the |
| Submitted as a string to |
| Extra information describing a result or feature. |
| The state of a Data Reviewer result in the quality control workflow. LifecycleStatus should match a descriptionCode. |
| Represents an ArcGIS Data Reviewer resource name. Corresponds to the |
Example usage
Write a point feature and Reviewer attributes to the Reviewer workspace.
https://machine.domain.com/webadaptor/rest/services/reviewer/MapServer/exts/DataReviewerServer/ReviewerResults/writeFeatureAsResult?feature={"geometry":{"y":4044612.09566993,"x":-12731945.8995073,"spatialReference":{"wkid":102100}},"attributes":{"FIRE_NAME":"Deer","ACTIVE":"N","FIRE_NUM":"E0YL","AGENCY":"BIA","YEAR_":"2009","ORIG_FID":"345","UNIT_ID":"AZ-CRA","TIME_":"0000","DATE_":"7%2F6%2F2009","FIRE":"","ACRES":"330.37","Shape":"Point","COMMENTS":"","OBJECTID":"93"}}&reviewerAttributes={"reviewStatus":"testStatus","reviewTechnician":"testUser","notes":"Deer+fire","resourceName":"Fire+Centroids+(2009)","lifecycleStatus":1,"subtype":"","severity":3,"sessionId":1}&f=pjson
JSON Response example
{
"result": "success",
"messages": ""
}