JSON Graph Spec is a json format created in 2013 by Byron Ruth.
#2227on PLDB | 11Years Old |
git clone https://github.com/bruth/json-graph-spec
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"
}]
}