aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/data/dictionary-index-schema.json
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-02-12 19:56:24 -0500
committerGitHub <noreply@github.com>2021-02-12 19:56:24 -0500
commit2b4af57bd764ee07ed1d7db8e2985e34ba7ef8ea (patch)
tree06af52cf528773838c1144a323e74c93ddebdf45 /ext/bg/data/dictionary-index-schema.json
parent37f916171812afe22f1b435d9e06b52af5d8292a (diff)
Move data folder (#1371)
* Move handlebars template files * Move schema files
Diffstat (limited to 'ext/bg/data/dictionary-index-schema.json')
-rw-r--r--ext/bg/data/dictionary-index-schema.json85
1 files changed, 0 insertions, 85 deletions
diff --git a/ext/bg/data/dictionary-index-schema.json b/ext/bg/data/dictionary-index-schema.json
deleted file mode 100644
index 09cff711..00000000
--- a/ext/bg/data/dictionary-index-schema.json
+++ /dev/null
@@ -1,85 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "type": "object",
- "description": "Index file containing information about the data contained in the dictionary.",
- "required": [
- "title",
- "revision"
- ],
- "properties": {
- "title": {
- "type": "string",
- "description": "Title of the dictionary."
- },
- "revision": {
- "type": "string",
- "description": "Revision of the dictionary. This value is only used for displaying information."
- },
- "sequenced": {
- "type": "boolean",
- "default": false,
- "description": "Whether or not this dictionary can be used as the primary dictionary. Primary dictionaries typically contain term/expression definitions."
- },
- "format": {
- "type": "integer",
- "description": "Format of data found in the JSON data files.",
- "enum": [1, 2, 3]
- },
- "version": {
- "type": "integer",
- "description": "Alias for format.",
- "enum": [1, 2, 3]
- },
- "author": {
- "type": "string",
- "description": "Creator of the dictionary."
- },
- "url": {
- "type": "string",
- "description": "URL for the source of the dictionary."
- },
- "description": {
- "type": "string",
- "description": "Description of the dictionary data."
- },
- "attribution": {
- "type": "string",
- "description": "Attribution information for the dictionary data."
- },
- "tagMeta": {
- "type": "object",
- "description": "Tag information for terms and kanji. This object is obsolete and individual tag files should be used instead.",
- "additionalProperties": {
- "type": "object",
- "description": "Information about a single tag. The object key is the name of the tag.",
- "properties": {
- "category": {
- "type": "string",
- "description": "Category for the tag."
- },
- "order": {
- "type": "number",
- "description": "Sorting order for the tag."
- },
- "notes": {
- "type": "string",
- "description": "Notes for the tag."
- },
- "score": {
- "type": "number",
- "description": "Score used to determine popularity. Negative values are more rare and positive values are more frequent. This score is also used to sort search results."
- }
- },
- "additionalProperties": false
- }
- }
- },
- "anyOf": [
- {
- "required": ["format"]
- },
- {
- "required": ["version"]
- }
- ]
-} \ No newline at end of file