User: morteza.poudat@matplus.eu clicked save for playground/matplus/morteza-poudat/simple-user-task-schema.json

This commit is contained in:
sartography-automated-committer 2024-02-16 11:08:22 +00:00
parent 8c87f3f72d
commit ef1e6673f0
2 changed files with 31 additions and 8 deletions

View File

@ -1,5 +1,5 @@
{
"firstName": "Chuck",
"first_name": "Chuc",
"first": "Chuck",
"firstName": "Chuck"
"first": "Chuck"
}

View File

@ -1,15 +1,38 @@
{
"title": "Text Field",
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
"title": "A registration form",
"description": "A simple form example.",
"type": "object",
"required": [
"first_name"
"firstName",
"lastName"
],
"properties": {
"first_name": {
"firstName": {
"type": "string",
"title": "First Name",
"default": ""
"title": "First name",
"default": "Chuck"
},
"lastName": {
"type": "string",
"title": "Last name"
},
"age": {
"type": "integer",
"title": "Age"
},
"bio": {
"type": "string",
"title": "Bio"
},
"password": {
"type": "string",
"title": "Password",
"minLength": 3
},
"telephone": {
"type": "string",
"title": "Telephone",
"minLength": 10
}
}
}