diff options
Diffstat (limited to 'ext/data/schemas')
-rw-r--r-- | ext/data/schemas/options-schema.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 89e2d361..d829b392 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -732,7 +732,8 @@ "required": [ "priority", "enabled", - "allowSecondarySearches" + "allowSecondarySearches", + "definitionsCollapsible" ], "properties": { "priority": { @@ -746,6 +747,11 @@ "allowSecondarySearches": { "type": "boolean", "default": false + }, + "definitionsCollapsible": { + "type": "string", + "enum": ["not-collapsible", "expanded", "collapsed"], + "default": "not-collapsible" } } } |