diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-11 23:20:36 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-11 23:20:36 -0400 |
commit | ceb12ac41551aca11bc195e5fad9984a28a5e291 (patch) | |
tree | 65516f7a30c7e37af5b9f81dd37c601ea04878a5 /ext/bg/data | |
parent | 82f83970001682018f1f5b595ffdcd13123fed91 (diff) |
Add support for filtering frequency metadata based on readings
Diffstat (limited to 'ext/bg/data')
-rw-r--r-- | ext/bg/data/dictionary-term-meta-bank-v3-schema.json | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/ext/bg/data/dictionary-term-meta-bank-v3-schema.json b/ext/bg/data/dictionary-term-meta-bank-v3-schema.json index 8475db81..ffffb546 100644 --- a/ext/bg/data/dictionary-term-meta-bank-v3-schema.json +++ b/ext/bg/data/dictionary-term-meta-bank-v3-schema.json @@ -26,8 +26,30 @@ {}, {"enum": ["freq"]}, { - "type": ["string", "number"], - "description": "Frequency information for the term or expression." + "oneOf": [ + { + "type": ["string", "number"], + "description": "Frequency information for the term or expression." + }, + { + "type": ["object"], + "required": [ + "reading", + "frequency" + ], + "additionalProperties": false, + "properties": { + "reading": { + "type": "string", + "description": "Reading for the term or expression." + }, + "frequency": { + "type": ["string", "number"], + "description": "Frequency information for the term or expression." + } + } + } + ] } ] }, |