angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
22 lines (21 loc) • 420 B
JSON
{
"schema": {
"language": {
"type": "array",
"title": "Best language",
"items": {
"type": "string",
"enum": [ "JavaScript", "Python", "PHP", "Java", "C++", "other" ]
}
}
},
"form": [ {
"key": "language",
"type": "checkboxbuttons",
"activeClass": "btn-success"
}, {
"title": "Submit",
"type": "submit"
} ],
"value": {"language": "Python"}
}