| Children | Field[] | Read-only | The child field array. This property is only valid for group fields. |
| DataType | DataType | Read-only | The type of data in the field. |
| FieldType | FieldType | Read-only | The type of the field, for example text, checkmark, a table (contains cells that represent other fields). |
| FullName | string | Read-only | The full path to the name from the document root. Uses a forward slash (/) as a separator, e.g. Vendor/Address/Street. |
| HasRegion | bool | Read-write | Returns true if the field has been found on the document, i.e. a corresponding region exists on the document. A value of false specifies that the image of the document does not contain a region that corresponds to this field. |
| HasSuspiciousSymbols | bool | Read-only | Returns true if the field value contains characters recognized with low confidence. |
| Id | string | Read-only | The field identifier, unique in the document. |
| ImageRegions | ImageRegionList | Read-write | An array of field regions on the image. |
| InstanceIndex | int | Read-only | The index of the current instance of the repeating field. Only makes sense if IsRepeatable is true. Set to -1 in all other cases. |
| Instances | Field[] | Read-only | The array of all instances of this field. Only makes sense if IsRepeatable is true. The Instances property can be used to access repeating field instances in a container obtained using the Field GetField method. |
| IsConfirmed | bool | Read-write | Returns true if the field has been verified by the operator or by a validation rule. |
| IsRepeatable | bool | Read-only | Returns true if the field is repeating. |
| IsSuspicious | bool | Read-only | Returns true if any characters of the field value have been recognized with low confidence. The value of such a field should either be reviewed manually by an operator or checked by a rule. |
| IsValid | bool | Read-only | Returns true if the recognized text of the field - stored the Text property - was successfully converted into the value of the specified type in the Value property. |
| IsVisible | bool | Read-only | Returns true if the field is visible on the document. |
| Name | string | Read-only | The field name, unique inside its group. |
| Parent | Field | Read-only | The parent field. |
| ReadOnly | bool | Read-only | Returns true if the field is read-only and may not be edited by the manual review operator. |
| Symbols | Symbol[] | Read-only | An array of characters that form the original value of the field in text format. |
| Text | string | Read-only | The original value of the field in text format (generated when a document is recognized). |
| Value | object | Read-write | The value of the field in the specified format (generated when converting recognized text). Note: Unlike the Text property, the Value property stores values in a normalized format. If the normalized value of the Value property is modified as a result of running a script, the value of the Text property will be updated with the new normalized value. If the normalized value of the Value property remains unmodified after running the script, the value of the Text property will not be updated. |