mirror of
https://github.com/sartography/spiffworkflow-backend.git
synced 2025-02-24 13:28:31 +00:00
24 lines
388 B
JSON
24 lines
388 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"
|
|
]
|
|
}
|
|
}
|
|
} |