sample-process-models/misc/qa/forms/test-text-area-2/test-text-area-2-schema.json

18 lines
334 B
JSON
Raw Normal View History

2024-07-15 10:51:00 -04:00
{
"title": "Text Area",
"description": "A larger resizable area to enter longer text.",
"type": "object",
"properties": {
"hobbies": {
"type": "string",
"title": "Your Hobbies"
},
"experience": {
"type": "string",
"title": "Your Experience"
}
},
"required": [
"experience"
]
}