Adyen · Schema

AvsAddress

PaymentsFinancial ServicesFintech

Properties

Name Type Description
streetAddress string The street and house number of the address. Example: 1 Infinite Loop, Cupertino.
zip string The zip or post code of the address. Example: CA 95014
View JSON Schema on GitHub

JSON Schema

adyen-avsaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvsAddress",
  "title": "AvsAddress",
  "properties": {
    "streetAddress": {
      "description": "The street and house number of the address.\n\nExample: 1 Infinite Loop, Cupertino.",
      "type": "string"
    },
    "zip": {
      "description": "The zip or post code of the address.\n\nExample: CA 95014",
      "type": "string"
    }
  },
  "required": [
    "streetAddress"
  ]
}