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

    Variable sc_ordered_item_linkConst

    sc_ordered_item_link: {
        allowWebServiceAccess: true;
        attributes: { update_synch: true };
        extends: "sys_metadata";
        label: "Ordered Item Link";
        name: "sc_ordered_item_link";
        schema: {
            link_text: Typed<string, { label: "Link text"; maxLength: 100 }>;
            link_url: Typed<string, { label: "Link URL"; maxLength: 255 }>;
            name: Typed<
                string,
                {
                    label: [
                        {
                            hint: "Name of this link for reference";
                            label: "Name";
                            language: "en";
                            plural: "Names";
                        },
                    ];
                    maxLength: 100;
                },
            >;
            sys_id: Typed<
                string,
                {
                    label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                    primary: true;
                },
            >;
            target: Typed<
                "internal"
                | "_blank",
                {
                    choices: {
                        _blank: { label: "New Window/Tab"; sequence: 2 };
                        internal: { label: "Within Catalog"; sequence: 1 };
                    };
                    default: "_blank";
                    dropdown: "dropdown_without_none";
                    label: "Target";
                },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_synch: true }
    • Readonlyextends: "sys_metadata"
    • Readonlylabel: "Ordered Item Link"
    • Readonlyname: "sc_ordered_item_link"
    • Readonlyschema: {
          link_text: Typed<string, { label: "Link text"; maxLength: 100 }>;
          link_url: Typed<string, { label: "Link URL"; maxLength: 255 }>;
          name: Typed<
              string,
              {
                  label: [
                      {
                          hint: "Name of this link for reference";
                          label: "Name";
                          language: "en";
                          plural: "Names";
                      },
                  ];
                  maxLength: 100;
              },
          >;
          sys_id: Typed<
              string,
              {
                  label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                  primary: true;
              },
          >;
          target: Typed<
              "internal"
              | "_blank",
              {
                  choices: {
                      _blank: { label: "New Window/Tab"; sequence: 2 };
                      internal: { label: "Within Catalog"; sequence: 1 };
                  };
                  default: "_blank";
                  dropdown: "dropdown_without_none";
                  label: "Target";
              },
          >;
      }