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

    Variable sys_hub_flow_blockConst

    sys_hub_flow_block: {
        extends: "sys_metadata";
        name: "sys_hub_flow_block";
        schema: {
            label_cache: Typed<
                string,
                {
                    active: true;
                    dropdown: "none";
                    label: "Label Cache";
                    mandatory: false;
                    maxLength: 8000;
                    read_only: false;
                },
            >;
            name: Typed<
                string,
                {
                    active: true;
                    dropdown: "none";
                    label: "Name";
                    mandatory: true;
                    maxLength: 255;
                    read_only: false;
                },
            >;
            sys_domain: Typed<
                Record<"domain">
                | "global",
                {
                    active: true;
                    default: "global";
                    label: "Domain";
                    mandatory: false;
                    read_only: false;
                },
            >;
            sys_domain_path: Typed<
                string,
                {
                    active: true;
                    default: "/";
                    label: "Domain Path";
                    mandatory: false;
                    read_only: false;
                },
            >;
            sys_id: Typed<
                string
                | number,
                {
                    active: true;
                    column_type: "GUID";
                    label: "Sys ID";
                    mandatory: false;
                    read_only: false;
                },
            >;
            sys_overrides: Typed<
                | string
                | Record<"sys_hub_flow_block">
                | ExplicitKey<"sys_hub_flow_block">
                | TableBrand<"sys_hub_flow_block">,
                {
                    active: true;
                    label: "Sys overrides";
                    mandatory: false;
                    read_only: false;
                    referenceTable: "sys_hub_flow_block";
                },
            >;
        };
    } = ...

    Type Declaration

    • Readonlyextends: "sys_metadata"
    • Readonlyname: "sys_hub_flow_block"
    • Readonlyschema: {
          label_cache: Typed<
              string,
              {
                  active: true;
                  dropdown: "none";
                  label: "Label Cache";
                  mandatory: false;
                  maxLength: 8000;
                  read_only: false;
              },
          >;
          name: Typed<
              string,
              {
                  active: true;
                  dropdown: "none";
                  label: "Name";
                  mandatory: true;
                  maxLength: 255;
                  read_only: false;
              },
          >;
          sys_domain: Typed<
              Record<"domain">
              | "global",
              {
                  active: true;
                  default: "global";
                  label: "Domain";
                  mandatory: false;
                  read_only: false;
              },
          >;
          sys_domain_path: Typed<
              string,
              {
                  active: true;
                  default: "/";
                  label: "Domain Path";
                  mandatory: false;
                  read_only: false;
              },
          >;
          sys_id: Typed<
              string
              | number,
              {
                  active: true;
                  column_type: "GUID";
                  label: "Sys ID";
                  mandatory: false;
                  read_only: false;
              },
          >;
          sys_overrides: Typed<
              | string
              | Record<"sys_hub_flow_block">
              | ExplicitKey<"sys_hub_flow_block">
              | TableBrand<"sys_hub_flow_block">,
              {
                  active: true;
                  label: "Sys overrides";
                  mandatory: false;
                  read_only: false;
                  referenceTable: "sys_hub_flow_block";
              },
          >;
      }