-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign_schema.json
78 lines (78 loc) · 1.79 KB
/
sign_schema.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"title": "Cuneiform sign",
"description": "A json object describing a cuneiform sign",
"type": "object",
"properties": {
"codepoint": {
"description": "The Unicode codepoint",
"type": "string"
},
"name": {
"description": "The name of the cuneiform sign",
"type": "string"
},
"glyph": {
"description": "The cuneiform symbol(s) and period(s), if no periods are specified all are assumed.",
"type": "array",
"items": {
"type": "object",
"properties": {
"glyph": {
"description": "Unicode glyph",
"type": "string"
},
"periods": {
"description": "Period(s) associated with glyph",
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
}
},
"required": [
"glyph"
]
},
"minItems": 1,
"uniqueItems": true
},
"value": {
"description": "The cuneiform value(s) and period(s), if not periods are specified all are assumed.",
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"description": "Value",
"type": "string"
},
"periods": {
"description": "Period(s) associated with value",
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
}
},
"required": [
"value"
]
},
"minItems": 1,
"uniqueItems": true
},
"notes": {
"type": "string"
}
},
"required": [
"codepoint",
"name",
"glyph",
"value"
]
}