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

    Variable sys_ui_macroConst

    sys_ui_macro: {
        allowWebServiceAccess: true;
        attributes: { no_table_trace: true; update_synch: true };
        audit: true;
        extends: "sys_metadata";
        extensible: true;
        label: "Macro";
        name: "sys_ui_macro";
        schema: {
            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;
                },
            >;
        };
        textIndex: true;
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { no_table_trace: true; update_synch: true }
    • Readonlyaudit: true
    • Readonlyextends: "sys_metadata"
    • Readonlyextensible: true
    • Readonlylabel: "Macro"
    • Readonlyname: "sys_ui_macro"
    • Readonlyschema: {
          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;
              },
          >;
      }
    • ReadonlytextIndex: true