DifferentCurrenciesRestriction schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
Name
Type
Description
operation
string
Defines how the condition must be evaluated.
value
boolean
Checks the currency of the payment against the currency of the payment instrument. Possible values: - **true**: The currency of the payment is different from the currency of the payment instrument. -
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-different-currencies-restriction-schema.json",
"title": "DifferentCurrenciesRestriction",
"description": "DifferentCurrenciesRestriction schema from Adyen API",
"type": "object",
"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"
]
}