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

    Variable sc_templateConst

    sc_template: {
        allowWebServiceAccess: true;
        attributes: { domain_master: "cat_item"; update_synch: true };
        display: "name";
        extends: "sys_metadata";
        label: "Catalog Template";
        name: "sc_template";
        schema: {
            active: Typed<boolean, { default: true; label: "Active" }>;
            allow_edit_unlisted_variables: Typed<
                boolean,
                { label: "Allow edit of unlisted variables" },
            >;
            available_for: Typed<
                string
                | string[]
                | Record<"user_criteria">[],
                {
                    attributes: { no_sort: true; slushbucket_ref_no_expand: true };
                    label: "Available for";
                    maxLength: 1024;
                    referenceTable: "user_criteria";
                },
            >;
            cat_item: Typed<
                | string
                | Record<"sc_cat_item">
                | ExplicitKey<"sc_cat_item">
                | TableBrand<"sc_cat_item">,
                {
                    attributes: { encode_utf8: false };
                    label: "Catalog item";
                    referenceQual: "sys_class_name=sc_cat_item_composite_producer";
                    referenceTable: "sc_cat_item";
                },
            >;
            name: Typed<
                string,
                {
                    attributes: {
                        serializer: "com.glide.script.TranslatedTextXMLSerializer";
                    };
                    label: "Name";
                    maxLength: 100;
                },
            >;
            short_description: Typed<
                string,
                {
                    attributes: {
                        serializer: "com.glide.script.TranslatedTextXMLSerializer";
                    };
                    label: "Short description";
                    maxLength: 200;
                },
            >;
            sys_id: Typed<
                string,
                {
                    label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                    primary: true;
                },
            >;
            use_template_scope: Typed<
                boolean,
                { label: "Use template scope for creating records" },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { domain_master: "cat_item"; update_synch: true }
    • Readonlydisplay: "name"
    • Readonlyextends: "sys_metadata"
    • Readonlylabel: "Catalog Template"
    • Readonlyname: "sc_template"
    • Readonlyschema: {
          active: Typed<boolean, { default: true; label: "Active" }>;
          allow_edit_unlisted_variables: Typed<
              boolean,
              { label: "Allow edit of unlisted variables" },
          >;
          available_for: Typed<
              string
              | string[]
              | Record<"user_criteria">[],
              {
                  attributes: { no_sort: true; slushbucket_ref_no_expand: true };
                  label: "Available for";
                  maxLength: 1024;
                  referenceTable: "user_criteria";
              },
          >;
          cat_item: Typed<
              | string
              | Record<"sc_cat_item">
              | ExplicitKey<"sc_cat_item">
              | TableBrand<"sc_cat_item">,
              {
                  attributes: { encode_utf8: false };
                  label: "Catalog item";
                  referenceQual: "sys_class_name=sc_cat_item_composite_producer";
                  referenceTable: "sc_cat_item";
              },
          >;
          name: Typed<
              string,
              {
                  attributes: {
                      serializer: "com.glide.script.TranslatedTextXMLSerializer";
                  };
                  label: "Name";
                  maxLength: 100;
              },
          >;
          short_description: Typed<
              string,
              {
                  attributes: {
                      serializer: "com.glide.script.TranslatedTextXMLSerializer";
                  };
                  label: "Short description";
                  maxLength: 200;
              },
          >;
          sys_id: Typed<
              string,
              {
                  label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                  primary: true;
              },
          >;
          use_template_scope: Typed<
              boolean,
              { label: "Use template scope for creating records" },
          >;
      }