@servicenow/sdk - v4.7.0
    Preparing search index...

    Type Alias OverrideColumnType

    Dictionary override configuration for modifying inherited column properties

    type OverrideColumnType = {
        attributes?: Record<string, string | number | boolean>;
        baseTable?: TableName;
        calculation?: string;
        default?: string;
        dependent?: string;
        display?: boolean;
        mandatory?: boolean;
        readOnlyOption?: readOnlyOptionType;
        referenceQualifier?: string;
    }
    Index

    Properties

    attributes?: Record<string, string | number | boolean>

    Pairs of any supported dictionary attributes (sys_schema_attribute).

    baseTable?: TableName

    Specifies the table where this column is originally defined. If not specified, defaults to the table in 'extends'.

    calculation?: string

    Override the calculation script for calculated fields.

    default?: string

    Override the default value for this field.

    dependent?: string

    Override the dependent field setting.

    display?: boolean

    Whether the field should be displayed in the UI.

    mandatory?: boolean

    Override whether the field is mandatory.

    readOnlyOption?: readOnlyOptionType

    Override the read-only option for this field.

    referenceQualifier?: string

    Override the reference qualifier for reference fields.