User: cris@sartography.com clicked save for playground/cris-tolbert/surprise-party/Invite-schema.json

This commit is contained in:
sartography-automated-committer 2023-10-26 18:50:38 +00:00
parent 60005ad011
commit ab06adac29

View File

@ -1,6 +1,6 @@
{
"title": "Checkbox",
"description": "Can come Saturday?",
"title": "Multiple Choice List",
"description": "Build a multiple choice list with a predefined list of options",
"properties": {
"yes": {
"type": "boolean",
@ -10,6 +10,22 @@
"no": {
"type": "boolean",
"title": "No?",
"default": false}
}
"default": false
},
"multipleChoicesList": {
"type": "array",
"title": "A multiple choices list",
"items": {
"type": "string",
"enum": [
"foo",
"bar",
"fuzz",
"qux"
]
},
"uniqueItems": true
}
},
"type": "object"
}