18 lines
375 B
JSON
Raw Normal View History

{
"title": "Multiple Choice List",
"description": "Build a multiple choice list with a predefined list of options",
"type": "object",
"properties": {
"payment_type": {
"type": "array",
"title": "A multiple choices list",
"items": {
"type": "string",
"enum": [
""
]
},
"uniqueItems": true
}
}
}