Properties
| Name | Type | Description |
|---|---|---|
| result | string | The result of the check. Possible values: - **valid**: The validation was successful. - **invalid**: The validation failed. - **notValidated**: The validation was not performed because some services w |
| type | string | Type of check. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ValidationResult",
"title": "ValidationResult",
"properties": {
"result": {
"description": "The result of the check.\n\nPossible values:\n\n- **valid**: The validation was successful.\n\n- **invalid**: The validation failed.\n\n- **notValidated**: The validation was not performed because some services were unreachable or Adyen does not have the information needed to perform the check.\n\n- **notApplicable**: The validation is not applicable.",
"type": "string"
},
"type": {
"description": "Type of check.",
"type": "string"
}
}
}