{
"$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"
}