angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
32 lines (31 loc) • 618 B
JSON
{
"schema": {
"choice": {
"type": "string",
"enum": [ "text", "cat" ]
},
"text": {
"type": "string",
"title": "Text"
},
"category": {
"type": "string",
"title": "Category",
"enum": [ "Geography", "Entertainment",
"History", "Arts", "Science", "Sports" ]
}
},
"form": [ {
"type": "selectfieldset",
"key": "choice",
"title": "Make a choice",
"titleMap": {
"text": "Search by text",
"cat": "Search by category"
},
"items": [ "text", "category" ]
}, {
"type": "submit",
"value": "Submit"
} ]
}