{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CardPaymentPositiveNotificationResult", "type": "object", "properties": { "error": { "type": "string", "example": "0", "description": "Error code" }, "message": { "type": "string", "description": "Description of error", "example": "Correct Transaction" }, "cardInfoData": { "type": "object", "description": "Detailed information about the card", "allOf": [ { "$ref": "#/components/schemas/CardPaymentPositiveNotificationCardInfoData" } ] } } }