diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-17 19:46:08 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 12:09:34 -0500 |
commit | 62d4f68412687fc27340f3807258d09d1a6c4b10 (patch) | |
tree | c595d3d44f36fc6cb862600e0e4671697320aeed | |
parent | 086fefc9215b0b4d2a63ad371b1e3302f32d725b (diff) |
Define old tagMeta format in index file
-rw-r--r-- | ext/bg/data/dictionary-index-schema.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ext/bg/data/dictionary-index-schema.json b/ext/bg/data/dictionary-index-schema.json index 9865fcc1..fa1a696b 100644 --- a/ext/bg/data/dictionary-index-schema.json +++ b/ext/bg/data/dictionary-index-schema.json @@ -27,6 +27,33 @@ "version": { "type": "integer", "description": "Alias for format." + }, + "tagMeta": { + "type": "object", + "description": "Tag information for terms and kanji. This object is obsolete and individual tag files should be used instead.", + "additionalProperties": { + "type": "object", + "description": "Information about a single tag. The object key is the name of the tag.", + "properties": { + "category": { + "type": "string", + "description": "Category for the tag." + }, + "order": { + "type": "number", + "description": "Sorting order for the tag." + }, + "notes": { + "type": "string", + "description": "Notes for the tag." + }, + "score": { + "type": "number", + "description": "Score used to determine popularity. Negative values are more rare and positive values are more frequent. This score is also used to sort search results." + } + }, + "additionalProperties": false + } } }, "anyOf": [ |