@servicenow/sdk - v4.4.1
    Preparing search index...
    interface sys_auth_profile_basic {
        password: Typed<
            string
            | number,
            {
                active: true;
                column_type: "password2";
                label: "Password";
                mandatory: false;
                read_only: false;
            },
        >;
        sys_id: Typed<
            string
            | number,
            {
                active: true;
                column_type: "GUID";
                label: "Sys ID";
                mandatory: false;
                read_only: false;
            },
        >;
        username: Typed<
            string,
            {
                active: true;
                dropdown: "none";
                label: "Username";
                mandatory: true;
                maxLength: 80;
                read_only: false;
            },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    password: Typed<
        string
        | number,
        {
            active: true;
            column_type: "password2";
            label: "Password";
            mandatory: false;
            read_only: false;
        },
    >
    sys_id: Typed<
        string
        | number,
        {
            active: true;
            column_type: "GUID";
            label: "Sys ID";
            mandatory: false;
            read_only: false;
        },
    >
    username: Typed<
        string,
        {
            active: true;
            dropdown: "none";
            label: "Username";
            mandatory: true;
            maxLength: 80;
            read_only: false;
        },
    >