18 lines
371 B
JSON
18 lines
371 B
JSON
{
|
|
"title": "Multiple Choice List",
|
|
"description": "Build a multiple choice list with a predefined list of options",
|
|
"type": "object",
|
|
"properties": {
|
|
"payment_type": {
|
|
"type": "array",
|
|
"title": "Select payment type",
|
|
"items": {
|
|
"type": "string",
|
|
"enum": [
|
|
""
|
|
]
|
|
},
|
|
"uniqueItems": true
|
|
}
|
|
}
|
|
} |