diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-09-26 11:08:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 11:08:21 -0400 |
commit | c15683d206c3bcfbaa1fa81f1c57836a34974e83 (patch) | |
tree | a409bf77fe6df6e4f5a217424ea4d687c7cfe958 /ext/data/schemas/dictionary-term-meta-bank-v3-schema.json | |
parent | 9899727d7d53caed4c5b5e68176f7ed7f90a9438 (diff) |
Ensure frequency values are always numbers (#1943)
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 | 4 |
1 files changed, 2 insertions, 2 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 8eb9d343..206e7152 100644 --- a/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json +++ b/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json @@ -28,7 +28,7 @@ { "oneOf": [ { - "type": ["string", "number"], + "type": ["number"], "description": "Frequency information for the term." }, { @@ -44,7 +44,7 @@ "description": "Reading for the term." }, "frequency": { - "type": ["string", "number"], + "type": ["number"], "description": "Frequency information for the term." } } |