Adyen · Schema
ContactDetails
ContactDetails schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| address | object | The address of the account holder. |
| string | The email address of the account holder. | |
| phone | object | The phone number of the account holder. |
| webAddress | string | The URL of the account holder's website. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-contact-details-schema.json",
"title": "ContactDetails",
"description": "ContactDetails schema from Adyen API",
"type": "object",
"properties": {
"address": {
"description": "The address of the account holder.",
"$ref": "#/components/schemas/Address"
},
"email": {
"description": "The email address of the account holder.",
"type": "string"
},
"phone": {
"description": "The phone number of the account holder.",
"$ref": "#/components/schemas/Phone"
},
"webAddress": {
"description": "The URL of the account holder's website.",
"type": "string"
}
},
"required": [
"email",
"phone",
"address"
]
}