UNPKG

angular2-json-schema-form

Version:
42 lines (41 loc) 749 B
{ "schema": { "friends": { "type": "array", "maxItems": 3, "items": { "type": "object", "title": "Friend", "properties": { "nick": { "type": "string", "title": "Nickname" }, "animals": { "type": "array", "maxItems": 2, "items": { "type": "string", "title": "Animal name" } } } } } }, "form": [ { "type": "tabarray", "items": { "type": "section", "items": [ "friends[].nick", { "type": "array", "items": [ "friends[].animals[]" ] } ] } } ] }