18 lines
308 B
JSON
Raw Normal View History

{
"title": "Select Payment Type",
"type": "object",
"properties": {
"payment_type": {
"type": "array",
"title": "Select Payment type",
"items": {
"type": "string",
"enum": [
"cc",
"venmo"
]
},
"uniqueItems": true
}
}
}