angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
40 lines (39 loc) • 698 B
JSON
{
"schema": {
"friends": {
"type": "array",
"items": {
"type": "object",
"title": "Friend",
"properties": {
"nick": {
"type": "string",
"title": "Nickname"
},
"animals": {
"type": "array",
"items": {
"type": "string",
"title": "Animal name"
}
}
}
}
}
},
"form": [ {
"type": "array",
"items": {
"type": "section",
"items": [
"friends[].nick",
{
"type": "array",
"items": [
"friends[].animals[]"
]
}
]
}
} ]
}