angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
26 lines (25 loc) • 461 B
JSON
{
"schema": {
"thoughts": {
"type": "array",
"title": "Thoughts",
"items": {
"type": "string",
"title": "A thought",
"default": "Grmpf"
}
}
},
"form": [ {
"type": "tabarray",
"items": [ {
"type": "section",
"legend": "{{idx}}. {{value}}",
"items": [ {
"key": "thoughts[]",
"title": "Thought {{idx}}",
"valueInLegend": true
} ]
} ]
} ]
}