1{ 2 "$id": "https://spec.openapis.org/oas/3.1/schema-base/2022-10-07", 3 "$schema": "https://json-schema.org/draft/2020-12/schema", 4 5 "description": "The description of OpenAPI v3.1.x documents using the OpenAPI JSON Schema dialect, as defined by https://spec.openapis.org/oas/v3.1.0", 6 7 "$ref": "https://spec.openapis.org/oas/3.1/schema/2022-10-07", 8 "properties": { 9 "jsonSchemaDialect": { "$ref": "#/$defs/dialect" } 10 }, 11 12 "$defs": { 13 "dialect": { "const": "https://spec.openapis.org/oas/3.1/dialect/base" }, 14 15 "schema": { 16 "$dynamicAnchor": "meta", 17 "$ref": "https://spec.openapis.org/oas/3.1/dialect/base", 18 "properties": { 19 "$schema": { "$ref": "#/$defs/dialect" } 20 } 21 } 22 } 23} 24