User: admin@spiffworkflow.org clicked save for examples/0-2-basic-example/norris-schema.json

This commit is contained in:
sartography-automated-committer 2023-09-13 18:24:42 +00:00
parent 8d92669830
commit 1e9c60ef0f
1 changed files with 51 additions and 1 deletions

View File

@ -1 +1,51 @@
{} {
"title": "True/False Questions about Chuck Norris",
"description": "Please place a checkmark next to the questions that are true. You will receive a just a fair reward for your responses.",
"type": "object",
"required":
["pushups", "thanos", "bulletproof" ],
"properties": {
"pushups": {
"type": "boolean",
"title": "When Chuck Norris does a pushup, hes pushing the Earth down.",
"oneOf": [
{
"title": "True",
"const": true
},
{
"title": "False",
"const": false
}
]
},
"thanos": {
"type": "boolean",
"title": "Chuck Norris was given a bloody nose by Thanos the god like villan from the Avengers Movies",
"oneOf": [
{
"title": "True",
"const": true
},
{
"title": "False",
"const": false
}
]
},
"bulletproof": {
"type": "boolean",
"title": "A bulletproof vest wears Chuck Norris for protection.",
"oneOf": [
{
"title": "True",
"const": true
},
{
"title": "False",
"const": false
}
]
}
}
}