{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/notification-webhooks-transaction-rules-result-schema.json",
"title": "TransactionRulesResult",
"description": "TransactionRulesResult schema from Adyen API",
"properties": {
"allRulesPassed": {
"description": "Indicates whether the transaction passed the evaluation for all transaction rules.",
"type": "boolean"
},
"failedTransactionRules": {
"description": "Array containing all the transaction rules that the transaction violated. This list is only sent when `allRulesPassed` is **false**.",
"items": {
"$ref": "#/components/schemas/TransactionEventViolation"
},
"type": "array"
}
},
"type": "object"
}