angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
29 lines (28 loc) • 417 B
JSON
{
"schema": {
"comment": {
"type": "string",
"title": "Comment"
},
"name": {
"type": "string",
"title": "Name"
},
"age": {
"type": "number",
"title": "Age"
}
},
"form": [ {
"key": "comment",
"type": "textarea"
}, {
"type": "fieldset",
"title": "Author",
"expandable": true,
"items": [
"name",
"age"
]
} ]
}