{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountingContactPaymentMethod", "title": "AccountingContactPaymentMethod", "properties": { "default": { "type": "boolean" }, "id": { "type": "string" }, "name": { "type": "string" }, "type": { "enum": [ "ACH", "ALIPAY", "CARD", "GIROPAY", "IDEAL", "OTHER", "PAYPAL", "WIRE", "CHECK" ], "type": "string", "x-speakeasy-unknown-values": "allow" } }, "required": [ "type" ], "type": "object" }