The minimum, maximum, and limitations of input items are described in the Schema Object.
For number/integer/string, data type definitions can be subdivided using the format
field.
Here's a simple example:
schema:
type:object
properties:
comment:
type:string
minimum —0# Minimum 0 characters
maximum : 10 # up to 10 characters
updateAt:
type:string
format:date# Date format according to RFC 3339
© 2024 OneMinuteCode. All rights reserved.