1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
"$id": "dictionaryTagBankV3",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"description": "Data file containing tag information for terms and kanji.",
"items": {
"type": "array",
"description": "Information about a single tag.",
"minItems": 5,
"maxItems": 5,
"additionalItems": false,
"items": [
{
"type": "string",
"description": "Tag name."
},
{
"type": "string",
"description": "Category for the tag."
},
{
"type": "number",
"description": "Sorting order for the tag."
},
{
"type": "string",
"description": "Notes for the tag."
},
{
"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."
}
]
}
}
|