From: Emden R. Gansner Date: Fri, 19 Aug 2016 11:04:25 +0000 (-0400) Subject: Replace cluster with subgraph, as the output will also reflect non-cluster X-Git-Tag: untagged-f6bbc5576feb1e03c4b8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd3b556caf39f78c82208b217e78a4d70c1684e0;p=graphviz Replace cluster with subgraph, as the output will also reflect non-cluster subgraphs. --- 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"