Adyen · Schema

AvsAddress

AvsAddress schema from Adyen API

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

test-cards-avs-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/test-cards-avs-address-schema.json",
  "title": "AvsAddress",
  "description": "AvsAddress schema from Adyen API",
  "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"
  ],
  "type": "object"
}