From 2f67c301d5938b241c2950912a7dedaff761af6a Mon Sep 17 00:00:00 2001 From: William Heinbockel Date: Thu, 28 Jul 2022 12:24:22 -0400 Subject: [PATCH] fix(json-graph-schema_v2.json): Correct node definition Move the additionalProperties JSON Schema property into the parent node type definition. --- json-graph-schema_v2.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/json-graph-schema_v2.json b/json-graph-schema_v2.json index 9ce7399..0eb85d9 100644 --- a/json-graph-schema_v2.json +++ b/json-graph-schema_v2.json @@ -89,10 +89,10 @@ }, "node": { "type": "object", + "additionalProperties": false, "properties": { "label": { "type": "string" }, - "metadata": { "type": "object" }, - "additionalProperties": false + "metadata": { "type": "object" } } }, "edge": {