Bread Classic Cart Structure

Structural representation of a Bread Classic cart.

Type: object Properties: 6 Required: 2
Financial ServicesFintechBuy Now Pay LaterBNPLBread PayPrivate Label CreditCo Brand Credit CardsLoyalty ProgramsMarketingData Driven MarketingPaymentsLendingSavingsPersonal LoansConsumer BankingRetail FinanceFortune 500NYSE BFHComenity BankRebrand

BreadClassicCart is a JSON Structure definition published by Alliance Data Systems (Bread Financial Holdings), describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/2025-09/extended/ meta-schema.

Properties

id currency items tax totalPrice createdAt

Meta-schema: https://json-structure.org/meta/2025-09/extended/

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/2025-09/extended/",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alliance-data-systems/main/json-structure/bread-classic-cart-structure.json",
  "name": "BreadClassicCart",
  "description": "Structural representation of a Bread Classic cart.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "currency": { "type": "string" },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "sku": { "type": "string" },
          "unitPrice": { "type": "int32" },
          "quantity": { "type": "int32" },
          "imageUrl": { "type": "string" }
        }
      }
    },
    "tax": { "type": "int32" },
    "totalPrice": { "type": "int32" },
    "createdAt": { "type": "string" }
  },
  "required": ["currency", "totalPrice"]
}