mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 14:58:11 +00:00
53 lines
1.0 KiB
JSON
53 lines
1.0 KiB
JSON
|
{
|
|||
|
"type": "object",
|
|||
|
"required": [
|
|||
|
"pushups",
|
|||
|
"thanos",
|
|||
|
"bulletproof"
|
|||
|
],
|
|||
|
"properties": {
|
|||
|
"pushups": {
|
|||
|
"type": "boolean",
|
|||
|
"title": "When the Great Chuck Norris does a pushup, he’s 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 villain 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
|
|||
|
}
|
|||
|
]
|
|||
|
}
|
|||
|
}
|
|||
|
}
|