-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathgraph-schema-alt.json
111 lines (104 loc) · 3.28 KB
/
graph-schema-alt.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Alternate JSON Schema for IBM AI4Code GraphJSON Format",
"description": "Prepared by Geert Janssen <[email protected]>\nCopyright IBM Corporation 2020.",
"type": "object",
"properties": {
"graph": { "$ref": "#/definitions/graph" }
},
"required": [ "graph" ],
"additionalProperties": true,
"definitions": {
"graph": {
"type": "object",
"properties": {
"version" : { "enum": [ "1.0" ] },
"type": {
"description": "Indication of type, e.g. tree or dag.",
"type": "string"
},
"directed": { "type": "boolean" },
"label": { "type": "string" },
"root": {
"description": "Indication of the root node for a tree (or dag?).",
"$ref": "#/definitions/unsigned_or_string"
},
"order": { "enum": [ "none", "topological", "reverse-topological",
"dfs", "bfs" ] },
"metadata": { "type": "object" },
"nodes": {
"description": "Mandatory node list.",
"type": "array",
"items": { "$ref": "#/definitions/node" }
},
"edges": {
"description": "Optional edge list.",
"type": "array",
"items": { "$ref": "#/definitions/edge" }
}
},
"required": [ "version", "directed", "nodes" ],
"additionalProperties": true
},
"node": {
"type": "object",
"properties": {
"id": { "$ref": "#/definitions/unsigned_or_string" },
"label": { "type": "string" },
"edges": {
"description": "Optional adjacency-style notation.",
"type": "array",
"items": { "$ref": "#/definitions/adjacency_edge" }
},
"metadata": { "type": "object" }
},
"required": [ "id" ],
"additionalProperties": true
},
"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 nodes.",
"type": "array",
"items": { "$ref": "#/definitions/unsigned_or_string" },
"minItems": 2,
"maxItems": 2
},
"metadata": { "type": "object" }
},
"required": [ "between" ],
"additionalProperties": true
},
"adjacency_edge": {
"description": "Edge in a node adjacency list.",
"oneOf": [
{ "description": "An array of node ids.",
"$ref": "#/definitions/unsigned_or_string"
},
{
"description": "An array of edge objects.",
"type": "object",
"properties": {
"id": { "$ref": "#/definitions/unsigned_or_string" },
"label": { "type": "string" },
"on": { "$ref": "#/definitions/unsigned_or_string" },
"metadata": { "type": "object" }
},
"required": [ "on" ],
"additionalProperties": true
}
]
},
"unsigned_or_string": {
"description" : "A non-negative integer or a string.",
"oneOf": [
{ "type": "integer", "minimum": 0 },
{ "type": "string" }
]
}
}
}