{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BillDeskDetails", "title": "BillDesk", "additionalProperties": false, "properties": { "checkoutAttemptId": { "x-addedInVersion": "68", "description": "The checkout attempt identifier.", "type": "string" }, "issuer": { "description": "The issuer id of the shopper's selected bank.", "type": "string" }, "type": { "description": "**billdesk**", "enum": [ "billdesk_online", "billdesk_wallet" ], "type": "string" } }, "required": [ "type", "issuer" ], "type": "object" }