angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
23 lines (22 loc) • 376 B
JSON
{
"schema": {
"reminders": {
"type": "array",
"title": "Reminders",
"items": {
"type": "array",
"title": "Task List",
"items": {
"type": "string"
}
}
}
},
"value": {
"reminders": [
[ "Buy clothes", "Pick up kids" ],
[ "Call John", "Send email" ],
[ "Wash car" ]
]
}
}