Adyen · Schema

FraudCheckResult

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountScore integer The fraud score generated by the risk check.
checkId integer The ID of the risk check.
name string The name of the risk check.
View JSON Schema on GitHub

JSON Schema

adyen-fraudcheckresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FraudCheckResult",
  "title": "FraudCheckResult",
  "properties": {
    "accountScore": {
      "description": "The fraud score generated by the risk check.",
      "format": "int32",
      "type": "integer"
    },
    "checkId": {
      "description": "The ID of the risk check.",
      "format": "int32",
      "type": "integer"
    },
    "name": {
      "description": "The name of the risk check.",
      "type": "string"
    }
  },
  "required": [
    "checkId",
    "name",
    "accountScore"
  ],
  "type": "object"
}