Example 1: Basic example

todo: some description

{
"number1": 99,
"boolean1": true,
"boolean2": false
}

Example 2: String input

todo: some description

{
"string6": "sample value exists",
"string7": "sample 3",
"string5": "TODO"
}

Example 3: Numeric input

todo: some description

{
"number6": 123,
"number5": 99,
"number7": 20
}

Example 4: boolean input (checkbox)

todo: some description

{
"boolean4": true,
"boolean1": false,
"boolean2": false,
"boolean3": true
}

Example 5: text input (textarea)

todo: some description

{
  "text6": "Excepteur do ut amet duis duis officia incididunt commodo exercitation laborum qui. Do adipisicing tempor sint voluptate pariatur tempor. Dolore amet irure ut quis aliqua eiusmod. Ullamco occaecat elit incididunt aliquip consectetur veniam deserunt ad nisi excepteur consectetur consequat.",
  "text5": "Some preset text"
}

Example 6: select

todo: some description

{
"select6": "4",
"select10": "-1",
"select5": "3",
"select8": "5"
}

[Hash] Example 1: nested object

todo: some desc

Object 1
{
"object1": {
"count": 5,
"is_visible": true
}
}

[Hash] Example 2: typed object

Should allow to select object type

{
"type": "line"
}

[Hash] Example 3: typed object with value & defaults

TODO: some description

{
"type": "combo",
"title": "lorem ipsum dolor sit amet",
"count": "123456789",
"is_visible": true
}

[List] Example 1: simple list

todo: some description

List 1
{
"list1": [
{
"title": "Some title",
"count": 1,
"is_visible": true
},
{
"title": "Some other title",
"count": 999,
"is_visible": false
}
]
}

[List] Example 2: fixed simple list

todo: some description

List 1
{
"list1": [
{
"title": "Some default title",
"count": 5,
"is_visible": true
},
{
"count": -99,
"is_visible": false
}
]
}

[List] Example 3: deep nesting

todo: some description

object
level2
level3
{
"object": [
{
"level2": [
{
"level3": [
{
"text": "item 1"
},
{
"text": "item 2"
}
]
}
]
}
]
}

[List] Example 4: typed list

todo: some description

items
Combo 2
Combo 2
{
"items": [
{
"value": "Some predefined line",
"type": "line"
},
{
"title": "Some predefined line 1",
"description": "Example description",
"type": "combo2"
},
{
"title": "Some predefined line",
"type": "combo2"
}
]
}

[Complex] Example: 1

Witch multiple objects & lists & with existing value

Object 1
List 1
List 2
List 3
{
"string1": "dsadsadas",
"number1": "12",
"boolean1": false,
"boolean2": true,
"select2": "2-2",
"select3": "3-2",
"text1": "todo",
"text2": "some",
"object1": {
"title": "obobobobobo!!!",
"count": "4",
"is_visible": true
},
"list2": [
{
"title": "dsasdadsa",
"count": 10,
"is_visible": true,
"type": "hash"
},
{
"value": "SOme else",
"type": "title"
}
],
"list3": [
{
"value": "Some Title 1",
"type": "textline"
},
{
"value": "Some Description 2",
"type": "textline"
},
{
"title": "Item 123456789",
"count": 555555,
"is_visible": true,
"type": "item"
},
{
"title": "Item 2",
"count": "99",
"is_visible": true,
"type": "item"
},
{
"title": "Item 3",
"count": 5,
"is_visible": false,
"type": "item"
}
]
}