55 lines
1.1 KiB
JSON
Raw Normal View History

{
"title": "Auto Complete",
"description": "Connect a field to a data store to auto-complete entered values.",
"type": "object",
"required": [
"firstName",
"thanos",
"bulletproof"
],
"properties": {
"pushups": {
"type": "boolean",
"title": "When THE 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
}
]
},
}
}