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

    Variable wf_workflowConst

    wf_workflow: {
        allowWebServiceAccess: true;
        attributes: {
            has_variables: true;
            uninstall_handler: "global.UninstallWorkflow";
            update_synch: false;
        };
        extends: "sys_metadata";
        label: "Workflow";
        name: "wf_workflow";
        schema: {
            access: Typed<
                string,
                {
                    default: "public";
                    dropdown: "dropdown_without_none";
                    label: "Accessible from";
                },
            >;
            description: Typed<string, { label: "Description"; maxLength: 4000 }>;
            name: Typed<string, { label: "Name"; maxLength: 100; readOnly: true }>;
            preview: Typed<
                string
                | number,
                {
                    attributes: { pdf_cell_type: "image" };
                    columnType: "user_image";
                    label: "Preview";
                },
            >;
            sys_domain: Typed<
                Record<"domain">
                | "global",
                {
                    default: "global";
                    label: [
                        {
                            hint: "Domain to which the workflow belongs";
                            label: "Domain";
                            language: "en";
                            plural: "Domains";
                        },
                    ];
                },
            >;
            sys_domain_path: Typed<
                string,
                {
                    attributes: { case_sensitive: true };
                    default: "/";
                    label: "Domain Path";
                },
            >;
            sys_id: Typed<
                string,
                {
                    label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                    primary: true;
                },
            >;
            sys_overrides: Typed<
                | string
                | Record<"wf_workflow">
                | ExplicitKey<"wf_workflow">
                | TableBrand<"wf_workflow">,
                {
                    attributes: { encode_utf8: false };
                    label: "Sys overrides";
                    referenceTable: "wf_workflow";
                },
            >;
            table: Typed<
                keyof Tables,
                {
                    attributes: {
                        allow_public: true;
                        allow_tables: "global";
                        base_start: true;
                    };
                    label: [
                        {
                            hint: "Table which workflow will be initialized on";
                            label: "Table";
                            language: "en";
                            plural: "Tables";
                        },
                    ];
                    readOnly: true;
                },
            >;
            template: Typed<
                boolean,
                {
                    default: false;
                    label: [
                        {
                            hint: "Indicates this is a cloneable template, and cannot be executed";
                            label: "Template";
                            language: "en";
                            plural: "Templates";
                        },
                    ];
                },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: {
          has_variables: true;
          uninstall_handler: "global.UninstallWorkflow";
          update_synch: false;
      }
    • Readonlyextends: "sys_metadata"
    • Readonlylabel: "Workflow"
    • Readonlyname: "wf_workflow"
    • Readonlyschema: {
          access: Typed<
              string,
              {
                  default: "public";
                  dropdown: "dropdown_without_none";
                  label: "Accessible from";
              },
          >;
          description: Typed<string, { label: "Description"; maxLength: 4000 }>;
          name: Typed<string, { label: "Name"; maxLength: 100; readOnly: true }>;
          preview: Typed<
              string
              | number,
              {
                  attributes: { pdf_cell_type: "image" };
                  columnType: "user_image";
                  label: "Preview";
              },
          >;
          sys_domain: Typed<
              Record<"domain">
              | "global",
              {
                  default: "global";
                  label: [
                      {
                          hint: "Domain to which the workflow belongs";
                          label: "Domain";
                          language: "en";
                          plural: "Domains";
                      },
                  ];
              },
          >;
          sys_domain_path: Typed<
              string,
              {
                  attributes: { case_sensitive: true };
                  default: "/";
                  label: "Domain Path";
              },
          >;
          sys_id: Typed<
              string,
              {
                  label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                  primary: true;
              },
          >;
          sys_overrides: Typed<
              | string
              | Record<"wf_workflow">
              | ExplicitKey<"wf_workflow">
              | TableBrand<"wf_workflow">,
              {
                  attributes: { encode_utf8: false };
                  label: "Sys overrides";
                  referenceTable: "wf_workflow";
              },
          >;
          table: Typed<
              keyof Tables,
              {
                  attributes: {
                      allow_public: true;
                      allow_tables: "global";
                      base_start: true;
                  };
                  label: [
                      {
                          hint: "Table which workflow will be initialized on";
                          label: "Table";
                          language: "en";
                          plural: "Tables";
                      },
                  ];
                  readOnly: true;
              },
          >;
          template: Typed<
              boolean,
              {
                  default: false;
                  label: [
                      {
                          hint: "Indicates this is a cloneable template, and cannot be executed";
                          label: "Template";
                          language: "en";
                          plural: "Templates";
                      },
                  ];
              },
          >;
      }