@servicenow/sdk - v4.7.0
    Preparing search index...
    interface sp_js_include {
        display_name: Typed<string, { label: "Display name"; maxLength: 1024 }>;
        source: Typed<
            "url"
            | "local",
            {
                choices: {
                    local: { label: "UI Script"; sequence: 0 };
                    url: { label: "URL"; sequence: 1 };
                };
                default: "local";
                dropdown: "dropdown_without_none";
                label: "Source";
            },
        >;
        sys_id: Typed<
            string
            | number,
            { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
        >;
        sys_ui_script: Typed<
            | string
            | ExplicitKey<"sys_ui_script">
            | TableBrand<"sys_ui_script">
            | Record<"sys_ui_script">,
            {
                attributes: { encode_utf8: false };
                label: "UI script";
                referenceTable: "sys_ui_script";
            },
        >;
        url: Typed<
            string
            | number,
            { columnType: "url"; label: "JS file URL"; maxLength: 1024 },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    display_name: Typed<string, { label: "Display name"; maxLength: 1024 }>
    source: Typed<
        "url"
        | "local",
        {
            choices: {
                local: { label: "UI Script"; sequence: 0 };
                url: { label: "URL"; sequence: 1 };
            };
            default: "local";
            dropdown: "dropdown_without_none";
            label: "Source";
        },
    >
    sys_id: Typed<
        string
        | number,
        { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
    >
    sys_ui_script: Typed<
        | string
        | ExplicitKey<"sys_ui_script">
        | TableBrand<"sys_ui_script">
        | Record<"sys_ui_script">,
        {
            attributes: { encode_utf8: false };
            label: "UI script";
            referenceTable: "sys_ui_script";
        },
    >
    url: Typed<
        string
        | number,
        { columnType: "url"; label: "JS file URL"; maxLength: 1024 },
    >