Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: ReviewerAttributes

require(["esri/tasks/datareviewer/ReviewerAttributes"], function(ReviewerAttributes) { /* code goes here */ });

Description

(Added at v3.14)
Encapsulates data used by the writeFeatureAsResult and writeResult methods of the ReviewerResults class. Properties (and their values) represent the attribute values that writeFeatureAsResult and writeResult insert into REVTABLEMAIN in a reviewer workspace.
See also

Samples

Search for samples that use this class.

Properties

NameTypeSummary
lifecycleStatusNumberRepresents the state of a reviewer result.
notesStringExtra information describing a result or feature.
resourceNameStringRepresents an ArcGIS Data Reviewer resource name.
reviewStatusStringA status value (any string) to write to the ReviewStatus field for the result or feature written to the reviewer workspace.
reviewTechnicianStringThe user name under which results or features are written to the reviewer workspace.
sessionIdNumberRepresents an ArcGIS Data Reviewer session ID, the numeric identifier of the session.
severityNumberRepresents an ArcGIS Data Reviewer severity value.
subtypeStringSubtype from the original feature that was checked and caused an error.

Methods

NameReturn typeSummary
toJSON()ObjectReturns a JSON representation of an instance of ReviewerAttributes.
Property Details

<Number> lifecycleStatus

Represents the state of a reviewer result.

<String> notes

Extra information describing a result or feature.

<String> resourceName

Represents an ArcGIS Data Reviewer resource name. Corresponds to the OriginTable in REVTABLEMAIN and ResourceName in REVCHECKRUNTABLE.

<String> reviewStatus

A status value (any string) to write to the ReviewStatus field for the result or feature written to the reviewer workspace.

<String> reviewTechnician

The user name under which results or features are written to the reviewer workspace.

<Number> sessionId

Represents an ArcGIS Data Reviewer session ID, the numeric identifier of the session.

<Number> severity

Represents an ArcGIS Data Reviewer severity value. Severity allows you to indicate the importance of a check's results.

<String> subtype

Subtype from the original feature that was checked and caused an error. The subtype is written as a string to REVTABLEMAIN. Subtype should be a valid subtype in the feature class specified in ORIGINTABLE field in REVTABLEMAIN.
Method Details

toJSON()

Returns a JSON representation of an instance of ReviewerAttributes.
Return type: Object
Show Modal