diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 14:34:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-22 14:34:20 -0500 |
commit | f3c4b0e1e14cbdfb86c692e89144c762801b2339 (patch) | |
tree | e7e77fca7b151c1f9a17ab5a1314589a5578dd28 /ext/bg/data/dictionary-index-schema.json | |
parent | 0e31139734efd51799efcb6357c074059c78858d (diff) | |
parent | a2b72dd3ab4a560d4549aa52912fcb9cd9f275ab (diff) |
Merge pull request #369 from toasted-nutbread/dictionary-validation
Dictionary validation
Diffstat (limited to 'ext/bg/data/dictionary-index-schema.json')
-rw-r--r-- | ext/bg/data/dictionary-index-schema.json | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/ext/bg/data/dictionary-index-schema.json b/ext/bg/data/dictionary-index-schema.json index 9865fcc1..9311f14c 100644 --- a/ext/bg/data/dictionary-index-schema.json +++ b/ext/bg/data/dictionary-index-schema.json @@ -22,11 +22,40 @@ }, "format": { "type": "integer", - "description": "Format of data found in the JSON data files." + "description": "Format of data found in the JSON data files.", + "enum": [1, 2, 3] }, "version": { "type": "integer", - "description": "Alias for format." + "description": "Alias for format.", + "enum": [1, 2, 3] + }, + "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": [ |