Details of a field.

interface Field {
    contextsCount?: number;
    description?: string;
    id: string;
    isLocked?: boolean;
    isUnscreenable?: boolean;
    key?: string;
    lastUsed?: FieldLastUsed;
    name: string;
    projectsCount?: number;
    schema: JsonTypeBean;
    screensCount?: number;
    searcherKey?: string;
    stableId?: string;
}

Properties

contextsCount?: number

Number of contexts where the field is used.

description?: string

The description of the field.

id: string

The ID of the field.

isLocked?: boolean

Whether the field is locked.

isUnscreenable?: boolean

Whether the field is shown on screen or not.

key?: string

The key of the field.

lastUsed?: FieldLastUsed

Information about the most recent use of a field.

name: string

The name of the field.

projectsCount?: number

Number of projects where the field is used.

schema: JsonTypeBean

The schema of a field.

screensCount?: number

Number of screens where the field is used.

searcherKey?: string

The searcher key of the field. Returned for custom fields.

stableId?: string

The stable ID of the field.