added testing schema

This commit is contained in:
iLLiCiTiT 2020-08-07 11:59:11 +02:00
parent d6a998d953
commit ca94850499
2 changed files with 34 additions and 0 deletions

View file

@ -6,6 +6,7 @@
{
"type": "schema",
"children": [
"test_project_schema",
"ftrack_projects_gui_schema",
"plugins_gui_schema"
]

View file

@ -0,0 +1,33 @@
{
"key": "test_inputs",
"type": "dict-expanding",
"label": "Test inputs",
"is_group": true,
"children": [
{
"key": "boolean",
"type": "boolean",
"label": "Boolean"
}, {
"key": "test_singleline",
"type": "text-singleline",
"label": "Text singleline"
}, {
"key": "test_multiline",
"type": "text-multiline",
"label": "Text multiline"
}, {
"key": "raw_json",
"type": "raw-json",
"label": "Raw json"
}, {
"key": "int",
"type": "int",
"label": "Int"
}, {
"key": "float",
"type": "float",
"label": "Float"
}
]
}