Synctera · Schema

Address

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
address_line_1 string
address_line_2 string
city string
country_code string
postal_code string
state string
View JSON Schema on GitHub

JSON Schema

synctera-address2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/address2",
  "title": "Address",
  "properties": {
    "address_line_1": {
      "type": "string"
    },
    "address_line_2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "country_code": {
      "type": "string"
    },
    "postal_code": {
      "type": "string"
    },
    "state": {
      "type": "string"
    }
  },
  "type": "object"
}