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

    Variable dl_definition_rel_matchConst

    dl_definition_rel_match: {
        allowWebServiceAccess: true;
        attributes: { update_synch: true };
        display: "matcher_table_field";
        extends: "sys_metadata";
        extensible: true;
        label: "Matcher Field Definitions";
        name: "dl_definition_rel_match";
        schema: {
            dl_definition: Typed<
                | string
                | Record<"dl_definition">
                | ExplicitKey<"dl_definition">
                | TableBrand<"dl_definition">,
                {
                    attributes: { encode_utf8: false };
                    cascadeRule: "delete";
                    label: "Data Lookup";
                    referenceTable: "dl_definition";
                },
            >;
            exact_match: Typed<
                boolean,
                {
                    default: false;
                    label: [
                        {
                            hint: "If checked, only exact matches apply. (E.g. Matcher fields that contain no data will not match against a record whose corresponding field contains data).";
                            label: "Exact lookup match";
                            plural: "Exact lookup matches";
                        },
                    ];
                },
            >;
            matcher_table: Typed<
                string,
                {
                    default: "javascript:parent.matcher_table";
                    label: "Matcher table";
                    maxLength: 80;
                    readOnly: true;
                    readOnlyOption: "instance_configured";
                },
            >;
            matcher_table_field: Typed<
                string,
                {
                    dependent: "matcher_table";
                    label: [
                        {
                            hint: "Specifies the field in the matching table";
                            label: "Matcher table field";
                            plural: "Matcher table fields";
                        },
                    ];
                    mandatory: true;
                },
            >;
            source_table: Typed<
                string,
                {
                    default: "javascript:parent.source_table";
                    label: "Source table";
                    maxLength: 80;
                    readOnly: true;
                    readOnlyOption: "instance_configured";
                },
            >;
            source_table_field: Typed<
                string,
                {
                    dependent: "source_table";
                    label: [
                        {
                            hint: "Specifies the field in the source table";
                            label: "Source table field";
                            plural: "Source table fields";
                        },
                    ];
                    mandatory: true;
                },
            >;
            sys_id: Typed<
                string,
                { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_synch: true }
    • Readonlydisplay: "matcher_table_field"
    • Readonlyextends: "sys_metadata"
    • Readonlyextensible: true
    • Readonlylabel: "Matcher Field Definitions"
    • Readonlyname: "dl_definition_rel_match"
    • Readonlyschema: {
          dl_definition: Typed<
              | string
              | Record<"dl_definition">
              | ExplicitKey<"dl_definition">
              | TableBrand<"dl_definition">,
              {
                  attributes: { encode_utf8: false };
                  cascadeRule: "delete";
                  label: "Data Lookup";
                  referenceTable: "dl_definition";
              },
          >;
          exact_match: Typed<
              boolean,
              {
                  default: false;
                  label: [
                      {
                          hint: "If checked, only exact matches apply. (E.g. Matcher fields that contain no data will not match against a record whose corresponding field contains data).";
                          label: "Exact lookup match";
                          plural: "Exact lookup matches";
                      },
                  ];
              },
          >;
          matcher_table: Typed<
              string,
              {
                  default: "javascript:parent.matcher_table";
                  label: "Matcher table";
                  maxLength: 80;
                  readOnly: true;
                  readOnlyOption: "instance_configured";
              },
          >;
          matcher_table_field: Typed<
              string,
              {
                  dependent: "matcher_table";
                  label: [
                      {
                          hint: "Specifies the field in the matching table";
                          label: "Matcher table field";
                          plural: "Matcher table fields";
                      },
                  ];
                  mandatory: true;
              },
          >;
          source_table: Typed<
              string,
              {
                  default: "javascript:parent.source_table";
                  label: "Source table";
                  maxLength: 80;
                  readOnly: true;
                  readOnlyOption: "instance_configured";
              },
          >;
          source_table_field: Typed<
              string,
              {
                  dependent: "source_table";
                  label: [
                      {
                          hint: "Specifies the field in the source table";
                          label: "Source table field";
                          plural: "Source table fields";
                      },
                  ];
                  mandatory: true;
              },
          >;
          sys_id: Typed<
              string,
              { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
          >;
      }