Interface
Contains information about an attribute field.
IField
can also be imported from the following packages:
import { IField } from "@esri/arcgis-rest-feature-service";
Properties
Property | Type | Notes |
---|---|---|
string | A string defining the field alias. | |
any | The value written in for new records by default. | |
The domain objects if applicable. | ||
boolean | A Boolean defining whether this field is editable. | |
boolean | A Boolean defining whether or not the field is an exact match. | |
number | A number defining how many characters are allowed in a string. field. | |
string | A string defining the field name. | |
boolean | A Boolean defining whether this field can have a null value. | |
A string defining the field type. |
defaultValue
defaultValue: any
The value written in for new records by default.
domain
domain: IDomain
The domain objects if applicable.
editable
editable: boolean
A Boolean defining whether this field is editable.
exactMatch
exactMatch: boolean
A Boolean defining whether or not the field is an exact match.
length
length: number
A number defining how many characters are allowed in a string. field.
nullable
nullable: boolean
A Boolean defining whether this field can have a null value.
type
Interface Propertytype: FieldType
A string defining the field type.
alias: string
A string defining the field alias.