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

    Variable dl_matcherConst

    dl_matcher: {
        allowWebServiceAccess: true;
        attributes: { update_synch: true };
        display: "order";
        extends: "sys_metadata";
        extensible: true;
        label: "Data Lookup Matcher Rules";
        name: "dl_matcher";
        schema: {
            active: Typed<
                boolean,
                {
                    default: true;
                    label: [
                        {
                            hint: "Specifies whether or not this data lookup rule should be used.";
                            label: "Active";
                            plural: "Active";
                        },
                    ];
                },
            >;
            order: Typed<
                number,
                {
                    default: "100";
                    label: [
                        {
                            hint: "For matching conditions a lower order is matched against first.";
                            label: "Order";
                            plural: "Orders";
                        },
                    ];
                },
            >;
            sys_id: Typed<
                string,
                { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_synch: true }
    • Readonlydisplay: "order"
    • Readonlyextends: "sys_metadata"
    • Readonlyextensible: true
    • Readonlylabel: "Data Lookup Matcher Rules"
    • Readonlyname: "dl_matcher"
    • Readonlyschema: {
          active: Typed<
              boolean,
              {
                  default: true;
                  label: [
                      {
                          hint: "Specifies whether or not this data lookup rule should be used.";
                          label: "Active";
                          plural: "Active";
                      },
                  ];
              },
          >;
          order: Typed<
              number,
              {
                  default: "100";
                  label: [
                      {
                          hint: "For matching conditions a lower order is matched against first.";
                          label: "Order";
                          plural: "Orders";
                      },
                  ];
              },
          >;
          sys_id: Typed<
              string,
              { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
          >;
      }