yomichan/ext/bg/data/dictionary-kanji-meta-bank-v3-schema.json
2020-02-08 12:28:46 -05:00

25 lines
733 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"description": "Custom metadata for kanji characters.",
"additionalItems": {
"type": "array",
"description": "Metadata about a single kanji character.",
"minItems": 3,
"items": [
{
"type": "string",
"minLength": 1
},
{
"type": "string",
"enum": ["freq"],
"description": "Type of data. \"freq\" corresponds to frequency information."
},
{
"type": ["string", "number"],
"description": "Data for the character."
}
]
}
}