Adyen · Schema

FraudResult

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountScore integer The total fraud score generated by the risk checks.
results array The result of the individual risk checks.
View JSON Schema on GitHub

JSON Schema

adyen-fraudresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FraudResult",
  "title": "FraudResult",
  "properties": {
    "accountScore": {
      "description": "The total fraud score generated by the risk checks.",
      "format": "int32",
      "type": "integer"
    },
    "results": {
      "description": "The result of the individual risk checks.",
      "items": {
        "$ref": "#/components/schemas/FraudCheckResult"
      },
      "type": "array"
    }
  },
  "required": [
    "accountScore"
  ],
  "type": "object"
}