User: dan@sartography.com clicked save for examples/2-in-depth/events/escalation-events/choose-schema.json

This commit is contained in:
sartography-automated-committer 2024-02-21 05:14:54 +00:00
parent 992f74ea7d
commit bb81af0b2b
2 changed files with 26 additions and 2 deletions

View File

@ -1 +1,21 @@
{}
{
"title": "Multiple Choice List",
"description": "Build a multiple choice list with a predefined list of options",
"type": "object",
"properties": {
"multipleChoicesList": {
"type": "array",
"title": "A multiple choices list",
"items": {
"type": "string",
"enum": [
"foo",
"bar",
"fuzz",
"qux"
]
},
"uniqueItems": true
}
}
}

View File

@ -1 +1,5 @@
{}
{
"multipleChoicesList": {
"ui:widget": "checkboxes"
}
}