@mistio/mist-form
Version:
A Webcomponent that renders a form defined by a JSONSchema & an optional UISchema spec
32 lines • 616 B
JSON
{
"jsonSchema": {
"type": "object",
"allOf": [
{
"properties": {
"lorem": {
"type": [
"string",
"boolean"
],
"default": true
}
}
},
{
"properties": {
"lorem": {
"type": "boolean"
},
"ipsum": {
"type": "string"
}
}
}
]
},
"uiSchema": {},
"formData": {
"lorem": true
}
}