2020-01-26 20:06:42 +00:00
|
|
|
{
|
|
|
|
"$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."
|
|
|
|
},
|
|
|
|
{
|
2021-09-26 15:08:21 +00:00
|
|
|
"type": ["number"],
|
2020-01-26 20:06:42 +00:00
|
|
|
"description": "Data for the character."
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|