From c2b80b777da54d5417d3f7a7b7b7f35be79376d0 Mon Sep 17 00:00:00 2001 From: Suprith KG Date: Tue, 20 Aug 2024 23:53:11 +0530 Subject: [PATCH] Change to id --- test/from-draft4/to-draft6/ref.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/from-draft4/to-draft6/ref.json b/test/from-draft4/to-draft6/ref.json index 2901c2c..c75fda1 100644 --- a/test/from-draft4/to-draft6/ref.json +++ b/test/from-draft4/to-draft6/ref.json @@ -2,28 +2,28 @@ { "title": "$ref present in schema, with adjacent keywords", "from": { - "$id": "http://example.com", + "id": "http://example.com", "properties": { "foo": { "$ref": "/bar", "type": "string", - "$id": "zoo" + "id": "zoo" }, "bar": { - "$id": "bar" + "id": "bar" } } }, "to": { - "$id": "http://example.com", + "id": "http://example.com", "properties": { "foo": { "$ref": "/bar", "x-type": "string", - "x-$id": "zoo" + "x-id": "zoo" }, "bar": { - "$id": "bar" + "id": "bar" } } }