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

    Variable email_access_restrictionConst

    email_access_restriction: {
        allowWebServiceAccess: true;
        audit: true;
        display: "notification";
        extends: "sys_metadata";
        label: "Email Access Restriction";
        name: "email_access_restriction";
        schema: {
            conditions: Typed<
                string,
                {
                    dynamicValueDefinitions: {
                        columnName: "notification.collection";
                        type: "dependent_field";
                    };
                    label: [
                        {
                            hint: "Read access to an email record is granted when conditions evaluate to true against an email's target record";
                            label: "Conditions";
                            language: "en";
                            plural: "Conditions";
                        },
                    ];
                    maxLength: 8000;
                },
            >;
            description: Typed<string, { label: "Description"; maxLength: 1000 }>;
            notification: Typed<
                | string
                | Record<"sysevent_email_action">
                | ExplicitKey<"sysevent_email_action">
                | TableBrand<"sysevent_email_action">,
                { label: "Notification"; referenceTable: "sysevent_email_action" },
            >;
            sys_id: Typed<
                string
                | number,
                { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
            >;
        };
        textIndex: true;
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyaudit: true
    • Readonlydisplay: "notification"
    • Readonlyextends: "sys_metadata"
    • Readonlylabel: "Email Access Restriction"
    • Readonlyname: "email_access_restriction"
    • Readonlyschema: {
          conditions: Typed<
              string,
              {
                  dynamicValueDefinitions: {
                      columnName: "notification.collection";
                      type: "dependent_field";
                  };
                  label: [
                      {
                          hint: "Read access to an email record is granted when conditions evaluate to true against an email's target record";
                          label: "Conditions";
                          language: "en";
                          plural: "Conditions";
                      },
                  ];
                  maxLength: 8000;
              },
          >;
          description: Typed<string, { label: "Description"; maxLength: 1000 }>;
          notification: Typed<
              | string
              | Record<"sysevent_email_action">
              | ExplicitKey<"sysevent_email_action">
              | TableBrand<"sysevent_email_action">,
              { label: "Notification"; referenceTable: "sysevent_email_action" },
          >;
          sys_id: Typed<
              string
              | number,
              { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
          >;
      }
    • ReadonlytextIndex: true