sample-process-models/misc/qa/forms/test-checkbox-2/checkbox-test-2-schema.json
2024-07-15 10:51:00 -04:00

27 lines
554 B
JSON

{
"title": "Test Checkbox Tooltip",
"description": "Testing Checkbox tooltip.",
"properties": {
"checkbox1": {
"type": "boolean",
"title": "Done?",
"default": false,
"description": "Check box 1 description"
},
"firstName": {
"type": "string",
"title": "First name",
"default": "Chuck"
},
"checkbox2": {
"type": "boolean",
"title": "Check 2",
"description": "Check box 2 description"
}
},
"type": "object",
"required": [
"firstName",
"checkbox2"
]
}