Skip to content

jsongraph/json-graph-specification

Repository files navigation

json-graph-specification

A proposal for representing graph structures in JSON.

Run tests

Changes

Jan 2020 - Updated to Version 2 by Travis Giggy

  • Major change - nodes changed from a Array/List to a Map/Dictionary
  • Minor changes - updated JSONSchema reference, added the top-level id attribute back
  • Cleaned up the JSONSchema definitions taking advantage of updates to JSONSchema

Jan 2021 - Updated with hypergraph support by mohawk2

  • Added hyperedges to specification

Design principles

  • Document graph structure
  • Use meaningful property names that reflect the semantic type of the value.
  • Property names should not be excessively long.
  • Property names should be plural when value is an array.
  • Properties that allow a null value can be omitted.
  • Define a JSON graph schema for content validation purposes.

Structure Overview (Version 2)

nodes object

A nodes object/Map represents nodes in a graph. Each key in the nodes object is the unique identifier for the node. The node object is the value the Map key.

node object properties

  • label property provides a text display for an object. Its value is defined as a JSON string.
  • metadata property allows for custom data on an object. Its values is defined as a JSON object.

edge array

Edges are an array of objects, each of which represents an edge in the graph.

edge properties

  • source property references the key value of the source [node object](#node object). Its value is defined as a JSON string.
  • relation property provides the interaction between source and target nodes. Its value is defined as a JSON string.
  • target property references the key value of the target node object. Its value is defined as a JSON string.
  • directed property provides the edge mode (e.g. directed or undirected). Its value is JSON true for directed and JSON false for undirected. The edge direction is determined by graph.directed property if not present.
  • metadata property allows for custom data on an object. Its values is defined as a JSON object.

hyperedge array

Hyperedges are either undirected - i.e. a set of nodes - or directed with a set of source nodes, and a set of target nodes

hyperedge properties

  • nodes property is an array of key values of nodes from the nodes array
  • source property is an array of the key values of the source nodes.
  • relation property provides the interaction between source and target nodes. Its value is defined as a JSON string.
  • target property is an array of the key values of the target nodes.
  • metadata property allows for custom data on an object. Its values is defined as a JSON object.

graph object

A graph object represents a single conceptual graph.

graph properties

  • id (optional) property provides an identifier for this graph object
  • type property provides a classification for an object. Its value is defined as a JSON string.
  • label property provides a text display for an object. Its value is defined as a JSON string.
  • directed property provides the graph mode (e.g. directed or undirected). Its value is JSON true for directed and JSON false for undirected. This property default to JSON true indicating a directed graph.
  • nodes property provides the nodes in the graph. Its value is an Map/Dictionary of node objects - the Map key being the node identifier.
  • edges property provides the edges in the graph. Its value is an array of edge objects.
  • hyperedges property provides the hyperedges in the graph. Its value is an array of hyperedge objects.
  • metadata property allows for custom data on an object. Its values is defined as a JSON object.

Current restriction on having one of edges, undirected hyperedges or directed hyperedges. If this is not a useful restriction, please post a use case in the Issues.

graphs object

A graphs object groups zero or more graph objects into one JSON document.

  • The graphs object is defined as a JSON array.

Examples

Additional examples

empty single graph

{
  "graph": {}
}

empty multi graph

{
  "graphs": []
}

nodes-only single graph

{
  "graph": {
    "nodes": {
      "A": {},
      "B": {}
    }
  }
}

nodes/edges single graph

{
  "graph": {
    "nodes": {
      "A": {},
      "B": {}
    },
    "edges": [
      {
        "source": "A",
        "target": "B"
      }
    ]
  }
}

hyperedges single graph

{
  "graph": {
    "nodes": {
      "A": {},
      "B": {}
    },
    "hyperedges": [
      {
        "nodes": ["A", "B"],
        "relation": "associated",
        "metadata": {}
      }
    ]
  }
}

complete single graph

{
  "graph": {
    "directed": false,
    "type": "graph type",
    "label": "graph label",
    "metadata": {
      "user-defined": "values"
    },
    "nodes": {
      "0": {
        "label": "node label(0)",
        "metadata": {
          "type": "node type",
          "user-defined": "values"
        }
      },
      "1": {
        "label": "node label(1)",
        "metadata": {
          "type": "node type",
          "user-defined": "values"
        }
      }
    },
    "edges": [
      {
        "source": "0",
        "relation": "edge relationship",
        "target": "1",
        "directed": false,
        "label": "edge label",
        "metadata": {
          "user-defined": "values"
        }
      }
    ]
  }
}

complete multi graph

{
  "graphs": [
    {
      "directed": true,
      "type": "graph type",
      "label": "graph label",
      "metadata": {
        "user-defined": "values"
      },
      "nodes": {
        "0": {
          "label": "node label(0)",
          "metadata": {
            "type": "node type",
            "user-defined": "values"
          }
        },
        "1": {
          "label": "node label(1)",
          "metadata": {
            "type": "node type",
            "user-defined": "values"
          }
        }
      },
      "edges": [
        {
          "source": "0",
          "relation": "edge relationship",
          "target": "1",
          "directed": true,
          "label": "edge label",
          "metadata": {
            "user-defined": "values"
          }
        }
      ]
    },
    {
      "directed": true,
      "type": "graph type",
      "label": "graph label",
      "metadata": {
        "user-defined": "values"
      },
      "nodes": {
        "0": {
          "label": "node label(0)",
          "metadata": {
            "user-defined": "values"
          }
        },
        "1": {
          "label": "node label(1)",
          "metadata": {
            "user-defined": "values"
          }
        }
      },
      "edges": [
        {
          "source": "1",
          "relation": "edge relationship",
          "target": "0",
          "directed": true,
          "label": "edge label",
          "metadata": {
            "user-defined": "values"
          }
        }
      ]
    }
  ]
}

Schema

The JSON graph schema(version 2) is provided for the json graph format.

Media Type

The media type to describe JSON Graph Format is application/vnd.jgf+json. The approach to use a media type suffix like +json is described by RFC 6839.

In addition to the media type a profile media type parameter MUST be set to a URL that dereferences to the JSON schema for JSON Graph Format. The expected usage of the profile media type parameter is defined by RFC 6906. For example to communicate plain JSON Graph Format content the Content-Type header could be set as:

Content-Type: application/vnd.jgf+json

A child schema of JSON Graph Format can communicate its JSON schema using additional profile media type parameters. Each profile media type parameter MUST dereference a JSON schema. For example the BEL JSON Graph Format could be communicated as:

Content-Type: application/vnd.jgf+json;
          profile=http://jsongraphformat.info/schema.json;
          profile=http://jsongraphformat.info/child-schemas/bel-json-graph.schema.json

NPM support

You can import the schema into your JS projects by installing it via NPM and requiring it.

npm install --save json-graph-specification
var JSONGraph = require('json-graph-specification')

Clients

  1. jay-gee-eff - An npm package for manipulating JGF files in nodejs.
  2. jay-gee-eff-for-web - An npm package for using JGF graphs with OOP in the web, i.e. web browsers, without capabilities of file handling, but a fully fledged JGF feature set.

Project Tests

See TESTING.

Related Standards {#links}

Graph data in JSON is usually modelled in application-specific ad-hoc formats. In addition there are several text-based graph formats:

and XML-based graph formats:

  • Directed Graph Markup Language (DGML)
  • Graph Exchange XML Format (GEXF)
  • Graph eXchange Language (GXL)
  • GraphML
  • DotML (XML representation of DOT)
  • XGMML (XML representation of GML)

Several semi-standardized JSON-based graph formats are found in applications, for instance Cytoscape JSON. Simple graphs can also be expressed in CSV format.

Links