Commit 619bbd67 authored by Rafael Monnerat's avatar Rafael Monnerat

Update software/simpledemo/instance-input-schema.json

parent a6f2fe34
......@@ -20,19 +20,28 @@
"simple string C"
],
"default": "simple string A"
},
"simple-string-textarea": {
"title": "Example of Simple String with TextArea",
"description": "Example of Simple String with TextArea",
"type": "string",
"textarea": true,
"default": "Simple string "
},
"simple-integer": {
"title": "Example of Simple Integer",
"description": "Example of Simple Integer",
"type": "integer",
"default": 1
},
"simple-integer-with-enum": {
"title": "Example of Simple Integer with enum",
"description": "Example of Simple Integer with enum",
"type": "integer",
"default": 1,
"enum": [
1,
2,
3,
5,
7,
11,
13,
17
]
},
"simple-numeric-integer": {
"title": "Example of Simple Numeric as integer",
......@@ -45,12 +54,6 @@
"description": "Example of Simple Numeric as float",
"type": "number",
"default": 1.5
},
"simple-array": {
"title": "Example of Simple Array",
"description": "Example of Simple Array",
"type": "array",
"default": []
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment