Adyen · Schema

ContactDetails

PaymentsFinancial ServicesFintech

Properties

Name Type Description
address object The address of the account holder.
email 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.
View JSON Schema on GitHub

JSON Schema

adyen-contactdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactDetails",
  "title": "ContactDetails",
  "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"
  ],
  "type": "object"
}