angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
29 lines (28 loc) • 659 B
JSON
{
"schema": {
"shortmood": {
"type": "string",
"title": "Mood of the day",
"description": "Describe how you feel in short",
"default": "happy",
"required": true
},
"longmood": {
"type": "string",
"title": "Mood of the day",
"description": "Describe how you feel with a rather long adjective-like series of words"
}
},
"form": [
"shortmood",
{
"key": "longmood",
"prepend": "I feel",
"append": "today",
"notitle": true,
"htmlClass": "usermood",
"fieldHtmlClass": "input-xxlarge",
"placeholder": "incredibly and admirably great"
}
]
}