{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/transfer-webhooks-transaction-rules-result-structure.json", "description": "TransactionRulesResult schema from Adyen API", "type": "object", "properties": { "advice": { "description": "The advice given by the Risk analysis.", "type": "string" }, "allHardBlockRulesPassed": { "x-addedInVersion": "4", "description": "Indicates whether the transaction passed the evaluation for all hardblock rules", "type": "boolean" }, "score": { "description": "The score of the Risk analysis.", "type": "int32" }, "triggeredTransactionRules": { "x-addedInVersion": "4", "description": "Array containing all the transaction rules that the transaction triggered.", "items": { "$ref": "#/components/schemas/TransactionEventViolation" }, "type": "array" } }, "name": "TransactionRulesResult" }