Adyen · Schema

ErrorFieldType

PaymentsFinancial ServicesFintech

Properties

Name Type Description
errorCode integer The validation error code.
errorDescription string A description of the validation error.
fieldType object The type of error field.
View JSON Schema on GitHub

JSON Schema

adyen-errorfieldtype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorFieldType",
  "title": "ErrorFieldType",
  "properties": {
    "errorCode": {
      "description": "The validation error code.",
      "format": "int32",
      "type": "integer"
    },
    "errorDescription": {
      "description": "A description of the validation error.",
      "type": "string"
    },
    "fieldType": {
      "description": "The type of error field.",
      "$ref": "#/components/schemas/FieldType"
    }
  },
  "type": "object"
}