diff options
Diffstat (limited to 'ext/data/schemas/dictionary-term-meta-bank-v3-schema.json')
-rw-r--r-- | ext/data/schemas/dictionary-term-meta-bank-v3-schema.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json b/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json index 6483ce01..8eb9d343 100644 --- a/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json +++ b/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json @@ -85,6 +85,40 @@ "description": "Mora position of the pitch accent downstep. A value of 0 indicates that the word does not have a downstep (heiban).", "minimum": 0 }, + "nasal": { + "oneOf": [ + { + "type": "integer", + "description": "Position of a mora with nasal sound.", + "minimum": 0 + }, + { + "type": "array", + "description": "Positions of morae with nasal sound.", + "items": { + "type": "integer", + "minimum": 0 + } + } + ] + }, + "devoice": { + "oneOf": [ + { + "type": "integer", + "description": "Position of a mora with devoiced sound.", + "minimum": 0 + }, + { + "type": "array", + "description": "Positions of morae with devoiced sound.", + "items": { + "type": "integer", + "minimum": 0 + } + } + ] + }, "tags": { "type": "array", "description": "List of tags for this pitch accent.", |