Input types

1
 min
Last updated: 
April 21, 2025

Single Line Text Field

Validations

  • Regular Expression - limited to 255 characters - this restricts the format in which the field may be filled in.
    • ^([A-Z0-9-]+[A-Z0-9])$ - suitable for an uppercase SKU containing both letters and numbers separated by a dash, e.g. KISSCUT-1IN-X-1IN. Though just use our SKU type for this.
    • If you find yourself making a really long complicated Regular Expression please contact us as we can help you do it more efficiently

SKU field​

Accepts any uppercase string separated by dashes containing only alphanumeric characters

Examples​

Valid:

  • KISS-CUT
  • KISS-CUT-1X1
  • KISS-CUT-1-X-1

Invalid:

  • KISS-CUT-
  • -KISS-CUT
  • -

Validations

  • Min Length
  • Max Length