mirror of
https://github.com/sartography/spiffworkflow-backend.git
synced 2025-02-24 05:18:22 +00:00
19 lines
349 B
JSON
19 lines
349 B
JSON
{
|
|
"title": "Simple form",
|
|
"description": "A simple form example.",
|
|
"type": "object",
|
|
"required": ["name"],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"title": "Name",
|
|
"default": "World"
|
|
},
|
|
"department": {
|
|
"type": "string",
|
|
"title": "Department",
|
|
"enum": ["Finance", "HR", "IT"]
|
|
}
|
|
}
|
|
}
|