diff options
Diffstat (limited to 'ext/data/schemas/options-schema.json')
-rw-r--r-- | ext/data/schemas/options-schema.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index d829b392..ad6fb869 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -726,16 +726,21 @@ } }, "dictionaries": { - "type": "object", - "additionalProperties": { + "type": "array", + "items": { "type": "object", "required": [ + "name", "priority", "enabled", "allowSecondarySearches", "definitionsCollapsible" ], "properties": { + "name": { + "type": "string", + "default": "" + }, "priority": { "type": "number", "default": 0 |