@servicenow/sdk - v4.4.1
    Preparing search index...
    interface sys_ui_macro {
        active: Typed<boolean, { default: true; label: "Active" }>;
        category: Typed<
            string,
            { default: "general"; dropdown: "dropdown_with_none"; label: "Category" },
        >;
        description: Typed<string, { label: "Description"; maxLength: 4000 }>;
        media_type: Typed<string, { label: "Media type" }>;
        name: Typed<string, { label: "Name"; mandatory: true; maxLength: 100 }>;
        scoped_name: Typed<
            string,
            {
                label: [
                    {
                        hint: "Contains the name field prefixed with the application scope if applicable.";
                        label: "API Name";
                        language: "en";
                        plural: "API Names";
                    },
                ];
                maxLength: 100;
                readOnly: true;
            },
        >;
        sys_id: Typed<
            string,
            {
                label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                primary: true;
            },
        >;
        xml: Typed<
            string
            | number,
            {
                columnType: "xml";
                default: "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<j:jelly trim=\"false\" xmlns:j=\"jelly:core\" xmlns:g=\"glide\" xmlns:j2=\"null\" xmlns:g2=\"null\">\n\n</j:jelly>";
                label: [
                    {
                        hint: "Must be in XML format";
                        label: "XML";
                        language: "en";
                        plural: "XMLs";
                    },
                ];
                maxLength: 65000;
                xmlView: true;
            },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active: Typed<boolean, { default: true; label: "Active" }>
    category: Typed<
        string,
        { default: "general"; dropdown: "dropdown_with_none"; label: "Category" },
    >
    description: Typed<string, { label: "Description"; maxLength: 4000 }>
    media_type: Typed<string, { label: "Media type" }>
    name: Typed<string, { label: "Name"; mandatory: true; maxLength: 100 }>
    scoped_name: Typed<
        string,
        {
            label: [
                {
                    hint: "Contains the name field prefixed with the application scope if applicable.";
                    label: "API Name";
                    language: "en";
                    plural: "API Names";
                },
            ];
            maxLength: 100;
            readOnly: true;
        },
    >
    sys_id: Typed<
        string,
        {
            label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
            primary: true;
        },
    >
    xml: Typed<
        string
        | number,
        {
            columnType: "xml";
            default: "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<j:jelly trim=\"false\" xmlns:j=\"jelly:core\" xmlns:g=\"glide\" xmlns:j2=\"null\" xmlns:g2=\"null\">\n\n</j:jelly>";
            label: [
                {
                    hint: "Must be in XML format";
                    label: "XML";
                    language: "en";
                    plural: "XMLs";
                },
            ];
            maxLength: 65000;
            xmlView: true;
        },
    >