Is there way to enter a max length of an input type field?

Jessie Cisneros:
Is there way to enter a max length of an input type field?


Andrew Dam:
Can add the key maxlength to set the max length.

For example:

{
                "inputType": "text",
                "label": "My Input",
                "maxlength": 5,
                "model": "field1",
                "styleClasses": "col-md-3",
                "type": "input"
            }

Jessie Cisneros:
Thank you! That did it!