53 lines
1.0 KiB
JSON
Raw Normal View History

{
"type": "object",
2024-02-13 11:04:57 -05:00
"required": [
"pushups",
"thanos",
"bulletproof"
],
"properties": {
2024-02-13 11:04:57 -05:00
"pushups": {
"type": "boolean",
"title": "When the Great Chuck Norris does a pushup, hes pushing the Earth down.",
"oneOf": [
{
"title": "True",
"const": true
},
{
"title": "False",
"const": false
}
]
},
2024-02-13 11:04:57 -05:00
"thanos": {
"type": "boolean",
2024-02-13 11:22:48 -05:00
"title": "Chuck Norris was given a bloody nose by Thanos the god like villain from the Avengers Movies",
2024-02-13 11:04:57 -05:00
"oneOf": [
{
"title": "True",
"const": true
},
{
"title": "False",
"const": false
}
]
},
2024-02-13 11:04:57 -05:00
"bulletproof": {
"type": "boolean",
"title": "A bulletproof vest wears Chuck Norris for protection.",
"oneOf": [
{
"title": "True",
"const": true
},
{
"title": "False",
"const": false
}
]
}
}
2024-02-13 11:22:48 -05:00
}