{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PurchaseSettingsResponse", "title": "PurchaseSettings", "required": [ "currencyCode", "paymentMethod" ], "type": "object", "properties": { "paymentMethod": { "$ref": "#/components/schemas/PaymentMethodResponse" }, "currencyCode": { "type": "string", "nullable": true } }, "additionalProperties": false }