forked from yoheinakajima/prettygraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknowledge_graph_schema.json
More file actions
63 lines (63 loc) · 1.59 KB
/
knowledge_graph_schema.json
File metadata and controls
63 lines (63 loc) · 1.59 KB
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
{
"name": "knowledge_graph",
"schema": {
"type": "object",
"properties": {
"nodes": {
"type": "array",
"description": "A collection of nodes, each representing an entity identified in the input.",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the node."
},
"label": {
"type": "string",
"description": "Label for the node, derived from the input."
}
},
"required": [
"id",
"label"
],
"additionalProperties": false
}
},
"edges": {
"type": "array",
"description": "A collection of edges, each representing a relationship between nodes.",
"items": {
"type": "object",
"properties": {
"source": {
"type": "string",
"description": "The id of the source node."
},
"target": {
"type": "string",
"description": "The id of the target node."
},
"label": {
"type": "string",
"description": "Label for the edge, derived from the input."
}
},
"required": [
"source",
"target",
"label"
],
"additionalProperties": false
}
}
},
"required": [
"nodes",
"edges"
],
"additionalProperties": false
},
"strict": true
}