@servicenow/sdk - v4.4.1
    Preparing search index...
    interface sys_security_attribute {
        active: Typed<boolean, { default: true }>;
        condition: Typed<string, {}>;
        description: Typed<string, {}>;
        is_dynamic: Typed<boolean, { default: true }>;
        is_localized: Typed<boolean, { default: false }>;
        is_system: Typed<boolean, { default: false }>;
        label: Typed<string, { mandatory: true }>;
        lookup_table: Typed<keyof Tables, {}>;
        lookup_table_column: Typed<string, {}>;
        type: Typed<
            "string"
            | "boolean"
            | "integer"
            | "compound",
            {
                choices: {
                    boolean: { label: "true | false" };
                    compound: { label: "compound" };
                    integer: { label: "integer" };
                    string: { label: "string" };
                };
                default: "string";
            },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active: Typed<boolean, { default: true }>
    condition: Typed<string, {}>
    description: Typed<string, {}>
    is_dynamic: Typed<boolean, { default: true }>
    is_localized: Typed<boolean, { default: false }>
    is_system: Typed<boolean, { default: false }>
    label: Typed<string, { mandatory: true }>
    lookup_table: Typed<keyof Tables, {}>
    lookup_table_column: Typed<string, {}>
    type: Typed<
        "string"
        | "boolean"
        | "integer"
        | "compound",
        {
            choices: {
                boolean: { label: "true | false" };
                compound: { label: "compound" };
                integer: { label: "integer" };
                string: { label: "string" };
            };
            default: "string";
        },
    >