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

    Variable sys_notification_categoryConst

    sys_notification_category: {
        allowWebServiceAccess: true;
        attributes: { update_synch: true };
        display: "name";
        extends: "sys_metadata";
        label: "Notification Category";
        name: "sys_notification_category";
        schema: {
            name: Typed<
                string,
                {
                    attributes: {
                        serializer: "com.glide.script.TranslatedTextXMLSerializer";
                    };
                    label: "Name";
                    mandatory: true;
                    maxLength: 32;
                    unique: true;
                },
            >;
            short_description: Typed<
                string,
                { label: "Short description"; maxLength: 1000 },
            >;
            sys_id: Typed<
                string,
                {
                    label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                    primary: true;
                },
            >;
        };
        textIndex: true;
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_synch: true }
    • Readonlydisplay: "name"
    • Readonlyextends: "sys_metadata"
    • Readonlylabel: "Notification Category"
    • Readonlyname: "sys_notification_category"
    • Readonlyschema: {
          name: Typed<
              string,
              {
                  attributes: {
                      serializer: "com.glide.script.TranslatedTextXMLSerializer";
                  };
                  label: "Name";
                  mandatory: true;
                  maxLength: 32;
                  unique: true;
              },
          >;
          short_description: Typed<
              string,
              { label: "Short description"; maxLength: 1000 },
          >;
          sys_id: Typed<
              string,
              {
                  label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                  primary: true;
              },
          >;
      }
    • ReadonlytextIndex: true