2020-01-26 20:06:42 +00:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
2021-10-15 01:26:53 +00:00
|
|
|
"definitions": {
|
|
|
|
"frequency": {
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"type": ["string", "number"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"value"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"value": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"displayValue": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2020-01-26 20:06:42 +00:00
|
|
|
"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-10-15 01:26:53 +00:00
|
|
|
"$ref": "#/definitions/frequency",
|
2020-01-26 20:06:42 +00:00
|
|
|
"description": "Data for the character."
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|