Demo example
Let's create a basic form that collects user name with a minimum requirement of 3 characters and return it in a JSON object.
{
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string", "title": "Username", "minLength": 3
}
}
},
"layout": {
"type": "div",
"items": [ { "key": "name" } ]
}
}
Last updated
Was this helpful?