BlueprintInputValidations

Validations for a blueprint input field.
  • required
    Whether the input is required.
  • pattern
    Regex pattern the input must match.
  • minLength
    Minimum length of the input string.
  • maxLength
    Maximum length of the input string.
  • lengthEqual
    Exact length the input string must be.
  • greaterThan
    The input must be greater than this value.
  • greaterThanOrEqual
    The input must be greater than or equal to this value.
  • lessThan
    The input must be less than this value.
  • lessThanOrEqual
    The input must be less than or equal to this value.
  • notEqual
    The input must not be equal to this value.
  • step
    The input must be a multiple of this value.