{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DifferentCurrenciesRestriction", "title": "DifferentCurrenciesRestriction", "properties": { "operation": { "description": "Defines how the condition must be evaluated.", "type": "string" }, "value": { "description": "Checks the currency of the payment against the currency of the payment instrument.\n\nPossible values:\n\n- **true**: The currency of the payment is different from the currency of the payment instrument.\n\n- **false**: The currencies are the same.\n\n", "type": "boolean" } }, "required": [ "operation" ], "type": "object" }