2024-07-15 10:51:00 -04:00

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"
}
]
}
}
}