{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/payments-fraud-result-structure.json", "description": "FraudResult schema from Adyen API", "type": "object", "properties": { "accountScore": { "description": "The total fraud score generated by the risk checks.", "type": "int32" }, "results": { "description": "The result of the individual risk checks.", "items": { "$ref": "#/components/schemas/FraudCheckResultWrapper" }, "type": "array" } }, "required": [ "accountScore" ], "name": "FraudResult" }