mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 22:25:14 +00:00
28 lines
581 B
JSON
28 lines
581 B
JSON
{
|
|
"title": "Favorite Fruit",
|
|
"type": "object",
|
|
"properties": {
|
|
"favoriteFruit": {
|
|
"title": "Select your favorite fruit",
|
|
"type": "string",
|
|
"oneOf": [
|
|
{
|
|
"const": "None",
|
|
"title": "None from the list"
|
|
},
|
|
{
|
|
"const": "apples",
|
|
"title": "Apples"
|
|
},
|
|
{
|
|
"const": "oranges",
|
|
"title": "Oranges"
|
|
},
|
|
{
|
|
"const": "bananas",
|
|
"title": "Bananas"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |