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

    Variable sys_ui_moduleConst

    sys_ui_module: {
        extends: "sys_metadata";
        name: "sys_ui_module";
        schema: {
            active: Typed<boolean, { default: true }>;
            application: Typed<
                | string
                | Record<"sys_ui_application">
                | ExplicitKey<"sys_ui_application">
                | TableBrand<"sys_ui_application">,
                { referenceTable: "sys_ui_application" },
            >;
            name: Typed<string, {}>;
            order: Typed<number, {}>;
            path: Typed<string, { maxLength: 3500 }>;
            path_relative_to_root: Typed<boolean, { default: false }>;
            roles: Typed<string, {}>;
            table: Typed<keyof Tables, {}>;
            uncancelable: Typed<boolean, { default: false }>;
            view_name: Typed<string, {}>;
        };
    } = ...

    Type Declaration

    • Readonlyextends: "sys_metadata"
    • Readonlyname: "sys_ui_module"
    • Readonlyschema: {
          active: Typed<boolean, { default: true }>;
          application: Typed<
              | string
              | Record<"sys_ui_application">
              | ExplicitKey<"sys_ui_application">
              | TableBrand<"sys_ui_application">,
              { referenceTable: "sys_ui_application" },
          >;
          name: Typed<string, {}>;
          order: Typed<number, {}>;
          path: Typed<string, { maxLength: 3500 }>;
          path_relative_to_root: Typed<boolean, { default: false }>;
          roles: Typed<string, {}>;
          table: Typed<keyof Tables, {}>;
          uncancelable: Typed<boolean, { default: false }>;
          view_name: Typed<string, {}>;
      }