From cd3b556caf39f78c82208b217e78a4d70c1684e0 Mon Sep 17 00:00:00 2001 From: "Emden R. Gansner" Date: Fri, 19 Aug 2016 07:04:25 -0400 Subject: [PATCH] Replace cluster with subgraph, as the output will also reflect non-cluster subgraphs. --- doc/infosrc/graphviz_json_schema.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/infosrc/graphviz_json_schema.json b/doc/infosrc/graphviz_json_schema.json index 2503e5e87..e77e5db6d 100644 --- a/doc/infosrc/graphviz_json_schema.json +++ b/doc/infosrc/graphviz_json_schema.json @@ -89,7 +89,7 @@ ] }, "metanode": { - "title": "nor or cluster subgraph", + "title": "node or subgraph", "type": "object", "properties": { "_gvid": { @@ -97,28 +97,28 @@ }, "name": { "type": "string", - "description": "The node or cluster name" + "description": "The node or subgraph name" }, "subgraphs": { "type": "array", "items": { "type": "integer" }, - "description": "index of a child cluster" + "description": "index of a child subgraph" }, "nodes": { "type": "array", "items": { "type": "integer" }, - "description": "index of a node in this cluster" + "description": "index of a node in this subgraph" }, "edges": { "type": "array", "items": { "type": "integer" }, - "description": "index of an edge in this cluster" + "description": "index of an edge in this subgraph" }, "_draw_": { "$ref": "#/definitions/drawops" -- 2.40.0