{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PurchaseNotificationResponse", "title": "PurchaseNotificationResponse", "type": "object", "properties": { "type": { "$ref": "#/components/schemas/PurchaseType" }, "guild_product_purchase": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/GuildProductPurchaseResponse" } ] } }, "required": [ "type" ] }