@mistio/mist-form
Version:
A Webcomponent that renders a form defined by a JSONSchema & an optional UISchema spec
22 lines • 403 B
JSON
{
"jsonSchema": {
"title": "Examples",
"description": "A text field with example values.",
"type": "object",
"properties": {
"browser": {
"type": "string",
"title": "Browser",
"examples": [
"Firefox",
"Chrome",
"Opera",
"Vivaldi",
"Safari"
]
}
}
},
"uiSchema": {},
"formData": {}
}