{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentReceipt", "title": "PaymentReceipt", "type": "object", "description": "If the payment receipts are printed by the Sale system and the POI or the Sale does not implement the Print exchange (Basic profile). Customer or Merchant payment receipt.", "properties": { "DocumentQualifier": { "$ref": "#/components/schemas/DocumentQualifier" }, "IntegratedPrintFlag": { "type": "boolean", "description": "Type of the print integrated to other prints." }, "RequiredSignatureFlag": { "type": "boolean", "default": false, "description": "Indicate that the cardholder payment receipt requires a physical signature by the Customer." }, "OutputContent": { "$ref": "#/components/schemas/OutputContent" } }, "required": [ "DocumentQualifier", "OutputContent" ] }