@servicenow/sdk - v4.4.1
    Preparing search index...
    sys_scope: {
        extends: "sys_package";
        name: "sys_scope";
        schema: {
            can_edit_in_studio: Typed<
                boolean,
                { default: true; label: "Can Edit Application in Studio" },
            >;
            js_level: Typed<
                "es_latest"
                | "traditional"
                | "helsinki_es5",
                {
                    choices: {
                        es_latest: { label: "es_latest" };
                        helsinki_es5: { label: "helsinki_es5" };
                        traditional: { label: "traditional" };
                    };
                    default: "es_latest";
                    label: "JavaScript Mode";
                },
            >;
            logo: Typed<string, {}>;
            private: Typed<boolean, { default: false }>;
            restrict_table_access: Typed<boolean, { default: false }>;
            runtime_access_tracking: Typed<
                "tracking"
                | "permissive",
                {
                    choices: {
                        permissive: { label: "permissive" };
                        tracking: { label: "tracking" };
                    };
                    dropdown: "dropdown_with_none";
                },
            >;
            scope: Typed<string, { maxLength: 18 }>;
            scoped_administration: Typed<
                boolean,
                { default: false; label: "Application administration" },
            >;
            short_description: Typed<string, {}>;
            template: Typed<string, {}>;
            vendor: Typed<string, {}>;
            vendor_prefix: Typed<string, {}>;
        };
    }

    Type Declaration

    • Readonlyextends: "sys_package"
    • Readonlyname: "sys_scope"
    • Readonlyschema: {
          can_edit_in_studio: Typed<
              boolean,
              { default: true; label: "Can Edit Application in Studio" },
          >;
          js_level: Typed<
              "es_latest"
              | "traditional"
              | "helsinki_es5",
              {
                  choices: {
                      es_latest: { label: "es_latest" };
                      helsinki_es5: { label: "helsinki_es5" };
                      traditional: { label: "traditional" };
                  };
                  default: "es_latest";
                  label: "JavaScript Mode";
              },
          >;
          logo: Typed<string, {}>;
          private: Typed<boolean, { default: false }>;
          restrict_table_access: Typed<boolean, { default: false }>;
          runtime_access_tracking: Typed<
              "tracking"
              | "permissive",
              {
                  choices: {
                      permissive: { label: "permissive" };
                      tracking: { label: "tracking" };
                  };
                  dropdown: "dropdown_with_none";
              },
          >;
          scope: Typed<string, { maxLength: 18 }>;
          scoped_administration: Typed<
              boolean,
              { default: false; label: "Application administration" },
          >;
          short_description: Typed<string, {}>;
          template: Typed<string, {}>;
          vendor: Typed<string, {}>;
          vendor_prefix: Typed<string, {}>;
      }