JSON Graph Spec is a json format created in 2013 by Byron Ruth.
#1391on PLDB | 10Years Old | 17Users |
0Books | 0Papers |
JSON specification for representing a graph structure
{
"nodes": [{
"labels": ["Origin"],
"props": {
"name": "file.csv",
"uri": "csv:///path/to/file.csv"
},
"match": ["uri"]
}, {
"labels": ["Element"],
"props": {
"name": "ArtistId",
"uri": "csv:///path/to/file.csv/ArtistId"
},
"match": ["uri"]
}],
"rels": [{
"start": 0,
"end": 1,
"type": "CONTAINS"
}]
}