angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
34 lines (33 loc) • 659 B
JSON
{
"schema": {
"properties": {
"animal": {
"$ref": "#/definitions/animation"
}
},
"definitions": {
"animation": {
"type": "object",
"properties": {
"duration": {
"title": "Duration",
"type": "integer"
},
"stepper": {
"title": "Stepper",
"type": "string"
},
"then": {
"title": "Then",
"type": "array",
"maxItems": 1,
"items": {
"$ref": "#/definitions/animation"
},
"default": []
}
}
}
}
}
}