{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProductRefOrValue", "title": "ProductRefOrValue", "type": "object", "description": "The polymorphic attributes @type, @schemaLocation & @referredType are related to the Product entity and not the ProductRefOrValue class itself", "oneOf": [ { "$ref": "#/components/schemas/Product" }, { "$ref": "#/components/schemas/ProductRef" } ], "discriminator": { "propertyName": "@type", "mapping": { "Product": "#/components/schemas/Product", "ProductRef": "#/components/schemas/ProductRef" } } }