{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/checkout-api-gift_card.json", "title": "gift_card", "description": "Gift Card payment configuration", "type": "object", "properties": { "capture_now": { "type": "boolean", "description": "True - transaction will be sent as authCapture and automatically captured.
False - transaction will be sent as auth and only authorized. NOT CAPTURED.
If you don't have any value in the capture_now parameter, at the moment of the call the value will be set as TRUE.", "default": true }, "card": { "$ref": "#/components/schemas/GiftCardCardConfig" } } }