{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProductSpecificationStateChangeEvent", "title": "ProductSpecificationStateChangeEvent", "allOf": [ { "$ref": "#/components/schemas/Event" }, { "type": "object", "description": "ProductSpecificationStateChangeEvent generic structure", "properties": { "event": { "$ref": "#/components/schemas/ProductSpecificationStateChangeEventPayload" } } } ], "discriminator": { "propertyName": "@type", "mapping": { "ProductSpecificationStateChangeEvent": "#/components/schemas/ProductSpecificationStateChangeEvent" } } }