BreadPayPlatformAddress

Postal address used for billing or shipping on a Bread Pay buyer or transaction.

Financial ServicesFintechBuy Now Pay LaterBNPLBread PayPrivate Label CreditCo Brand Credit CardsLoyalty ProgramsMarketingData Driven MarketingPaymentsLendingSavingsPersonal LoansConsumer BankingRetail FinanceFortune 500NYSE BFHComenity BankRebrand

Properties

Name Type Description
address1 string
address2 string
locality string
region string
postalCode string
country string
View JSON Schema on GitHub

JSON Schema

bread-pay-platform-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alliance-data-systems/main/json-schema/bread-pay-platform-address-schema.json",
  "title": "BreadPayPlatformAddress",
  "description": "Postal address used for billing or shipping on a Bread Pay buyer or transaction.",
  "type": "object",
  "properties": {
    "address1": { "type": "string" },
    "address2": { "type": "string" },
    "locality": { "type": "string" },
    "region": { "type": "string" },
    "postalCode": { "type": "string" },
    "country": { "type": "string", "minLength": 2, "maxLength": 2 }
  }
}