yomichan/ext/data/schemas/dictionary-kanji-bank-v1-schema.json

33 lines
1.2 KiB
JSON
Raw Normal View History

2020-01-26 20:06:42 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"description": "Data file containing kanji information.",
"items": {
2020-01-26 20:06:42 +00:00
"type": "array",
"description": "Information about a single kanji character.",
"minItems": 4,
"items": [
{
"type": "string",
"description": "Kanji character.",
"minLength": 1
},
{
"type": "string",
"description": "String of space-separated onyomi readings for the kanji character. An empty string is treated as no readings."
},
{
"type": "string",
"description": "String of space-separated kunyomi readings for the kanji character. An empty string is treated as no readings."
},
{
"type": "string",
"description": "String of space-separated tags for the kanji character. An empty string is treated as no tags."
}
],
"additionalItems": {
"type": "string",
"description": "A meaning for the kanji character."
}
}
}