mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-22 16:38:10 +00:00
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
||
"title": "Text Field",
|
||
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
|
||
"type": "object",
|
||
"required": [
|
||
"firstName",
|
||
"thanos",
|
||
"bulletproof"
|
||
],
|
||
"properties": {
|
||
"pushups": {
|
||
"type": "boolean",
|
||
"title": "When THE 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 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
|
||
}
|
||
]
|
||
},
|
||
"firstName": {
|
||
"type": "string",
|
||
"title": "First name",
|
||
"default": "Chuck"
|
||
}
|
||
}
|
||
} |