{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.bolt.com/schemas/payment-method-klarna-account", "title": "Klarna Account Payment Method", "type": "object", "required": [ ".tag", "return_url" ], "properties": { ".tag": { "type": "string", "enum": [ "klarna_account" ], "example": "klarna_account" }, "return_url": { "type": "string", "description": "Return URL to return to after payment completion in Klarna.", "format": "url", "writeOnly": true, "example": "https://www.example.com/handle_klarna_account_success" } } }