-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathspt-schema.json
83 lines (76 loc) · 2.33 KB
/
spt-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
79
80
81
82
83
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "JSON Schema for SPT in IBM AI4Code GraphJSON Format",
"description": "Prepared by Geert Janssen <[email protected]>\nCopyright IBM Corporation 2021.",
"type": "object",
"properties": {
"graph": { "$ref": "#/definitions/graph" }
},
"required": [ "graph" ],
"additionalProperties": false,
"definitions": {
"graph": {
"type": "object",
"properties": {
"version" : { "enum": [ "1.0" ] },
"type": { "enum": [ "tree" ] },
"directed": { "enum": [ true ] },
"label": { "type": "string" },
"root": { "enum": [ 0 ] },
"order": { "enum": [ "bfs" ] },
"nodes": {
"type": "array",
"items": { "$ref": "#/definitions/node" }
},
"edges": {
"type": "array",
"items": { "$ref": "#/definitions/edge" }
}
},
"required": [ "version", "type", "directed",
"root", "order", "nodes", "edges" ],
"additionalProperties": false
},
"node": {
"type": "object",
"properties": {
"id": { "$ref": "#/definitions/unsigned" },
"label": { "type": "string" },
"node-type": { "type": "string" },
"type-rule-name": { "type": "string" },
"token_id": { "$ref": "#/definitions/unsigned" },
"line": { "$ref": "#/definitions/unsigned" }
},
"required": [ "id", "label", "node-type", "type-rule-name" ],
"additionalProperties": false
},
"edge": {
"description": "Edge object in an edge list.",
"type": "object",
"properties": {
"id": { "$ref": "#/definitions/unsigned_or_string" },
"label": { "type": "string" },
"between": {
"description": "An ordered pair of 2 node ids.",
"type": "array",
"items": { "$ref": "#/definitions/unsigned" },
"minItems": 2,
"maxItems": 2
}
},
"required": [ "between" ],
"additionalProperties": false
},
"unsigned": {
"description" : "A non-negative integer.",
"type": "integer", "minimum": 0
},
"unsigned_or_string": {
"description" : "A non-negative integer or a string.",
"oneOf": [
{ "type": "integer", "minimum": 0 },
{ "type": "string" }
]
}
}
}