A Product reference
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProductRef", "title": "ProductRef", "type": "object", "description": "A Product reference", "allOf": [ { "$ref": "#/components/schemas/Extensible" }, { "$ref": "#/components/schemas/EntityRef" } ], "discriminator": { "propertyName": "@type", "mapping": { "ProductRef": "#/components/schemas/ProductRef" } } }