QuickBase JS SDK v2 - v2.2.2
    Preparing search index...

    Interface SchemaField

    Field definition from GetSchema

    interface SchemaField {
        allowNewChoices?: boolean;
        appearsByDefault?: boolean;
        baseType?: string;
        bold?: boolean;
        carryChoices?: boolean;
        choices?: string[];
        defaultKind?: string;
        defaultValue?: string;
        doesAverage?: boolean;
        doesTotal?: boolean;
        fieldHelp?: string;
        fieldType: string;
        findEnabled?: boolean;
        foreignKey?: boolean;
        id: number;
        label: string;
        mode?: string;
        nowrap?: boolean;
        required?: boolean;
        sortAsGiven?: boolean;
        summaryFunction?: string;
        summaryReferenceFid?: number;
        summaryTargetFid?: number;
        unique?: boolean;
    }
    Index

    Properties

    allowNewChoices?: boolean

    Allow new choices (for multi-choice fields)

    appearsByDefault?: boolean

    Appears by default in reports

    baseType?: string

    Base type (e.g., "text", "int64")

    bold?: boolean

    Bold text

    carryChoices?: boolean

    Carry choices

    choices?: string[]

    Choices for multi-choice fields

    defaultKind?: string

    Default value kind

    defaultValue?: string

    Default value

    doesAverage?: boolean

    Does average

    doesTotal?: boolean

    Does total

    fieldHelp?: string

    Help text

    fieldType: string

    Field type (e.g., "text", "numeric", "date")

    findEnabled?: boolean

    Find enabled

    foreignKey?: boolean

    Is foreign key

    id: number

    Field ID

    label: string

    Field label

    mode?: string

    Field mode (e.g., "lookup", "formula")

    nowrap?: boolean

    No text wrap

    required?: boolean

    Whether field is required

    sortAsGiven?: boolean

    Sort choices as given

    summaryFunction?: string

    Summary function (Total, Average, etc.)

    summaryReferenceFid?: number

    Summary reference field ID

    summaryTargetFid?: number

    Summary target field ID

    unique?: boolean

    Whether field must be unique