From 36b195f25cfd69208ad1f19136cb43f7deef4eb8 Mon Sep 17 00:00:00 2001 From: Ethan Date: Fri, 2 Feb 2024 12:19:32 -0800 Subject: [PATCH] Update validation output format schema `nested` to `details` https://github.com/json-schema-org/json-schema-spec/issues/1347 https://github.com/json-schema-org/json-schema-spec/pull/1351 --- output/schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/output/schema.json b/output/schema.json index 8487a290..b4cc9cec 100644 --- a/output/schema.json +++ b/output/schema.json @@ -24,7 +24,7 @@ "type": "string", "format": "json-pointer" }, - "nested": { + "details": { "$ref": "#/$defs/outputUnitArray" }, "annotations": { @@ -84,11 +84,11 @@ "list": { "properties": { "valid": { "type": "boolean" }, - "nested": { + "details": { "$ref": "#/$defs/outputUnitArray" } }, - "required": [ "valid", "nested" ] + "required": [ "valid", "details" ] }, "hierarchical": { "$ref": "#/$defs/outputUnit" } }