Validations for a blueprint input field.
- requiredWhether the input is required.
- patternRegex pattern the input must match.
- minLengthMinimum length of the input string.
- maxLengthMaximum length of the input string.
- lengthEqualExact length the input string must be.
- greaterThanThe input must be greater than this value.
- greaterThanOrEqualThe input must be greater than or equal to this value.
- lessThanThe input must be less than this value.
- lessThanOrEqualThe input must be less than or equal to this value.
- notEqualThe input must not be equal to this value.
- stepThe input must be a multiple of this value.