diff --git a/pages/understanding-json-schema/structuring.md b/pages/understanding-json-schema/structuring.md index 00ff27ff2..5a5c68c04 100644 --- a/pages/understanding-json-schema/structuring.md +++ b/pages/understanding-json-schema/structuring.md @@ -515,7 +515,7 @@ example bundled into a Compound Schema Document. "$defs": { "address": { - "$id": "/schemas/address", + "$id": "https://example.com/schemas/customer", "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", @@ -565,3 +565,8 @@ In Draft 4-7, a subschema `$id` is just a base URI change and not only allowed at the root of a Schema Resource, all schemas bundled using subschema `$id` must use the same dialect. + + +In Draft 2020-12, support for changing dialects in an embedded schema + (using `$schema` with a different value than the parent schema) was added. +