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
36
37
38
39
40
|
{
"$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."
},
"version": {
"type": "integer",
"description": "Alias for format."
}
},
"anyOf": [
{
"required": ["format"]
},
{
"required": ["version"]
}
]
}
|