Adyen · Schema

Address

Address schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
city string
countryCode string
postalCode string
stateOrProvince string
streetAddress string
streetAddress2 string
View JSON Schema on GitHub

JSON Schema

pos-terminal-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/pos-terminal-address-schema.json",
  "title": "Address",
  "description": "Address schema from Adyen API",
  "type": "object",
  "properties": {
    "city": {
      "type": "string"
    },
    "countryCode": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "stateOrProvince": {
      "type": "string"
    },
    "streetAddress": {
      "type": "string"
    },
    "streetAddress2": {
      "type": "string"
    }
  }
}