1
2
3
4
5
6
7
8
9
10
11
{
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"description": {
"title": "Long Description",
"type": "string"
},
Enter to Rename, Shift+Enter to Preview
JSON-Schema
1
2
3
4
5
6
7
8
9
10
11
{
"type": "VerticalLayout",
"elements": [
{
"type": "Control",
"label": "Completed",
"scope": "#/properties/done"
},
{
"type": "Control",
"scope": "#/properties/name"
Enter to Rename, Shift+Enter to Preview
UI-Schema
1
2
3
4
5
6
7
{
"name": "Send email to Adrian",
"description": "Confirm if you have passed the subject\nHereby ...",
"done": true,
"recurrence": "Daily",
"rating": 3
}
Enter to Rename, Shift+Enter to Preview
Data
is a required property
Daily