Properties that extend the ArcGis portal representation of a Field.

interface FieldProperties {
    $ref?: string;
    alias?: string;
    domain?: DomainJson;
    editable?: boolean;
    exactMatch?: boolean;
    length?: number;
    name?: string;
    nullable?: boolean;
    type?: FieldJsonType;
    visible?: boolean;
}

Hierarchy

Properties

$ref?: string

A field name referring to an existing field in a schema. The field extension will attempt to find an existing field in its parent schema.

alias?: string

The field alias (human-readable name).

domain?: DomainJson

A domain object that provides the attribute domain information for the field, if a domain exists.

editable?: boolean

Whether this field is editable.

exactMatch?: boolean

A Boolean defining whether or not the field is an exact match.

length?: number

A number defining how many characters are allowed in a string field.

name?: string

A string defining the field name.

nullable?: boolean

Whether this field can have a null value.

Type of the Field. See FieldJsonType.

visible?: boolean

.