PayPal · Schema

cobranded card object

Details about the merchant cobranded card used for order purchase.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
labels array Array of labels for the cobranded card.
payee object Merchant associated with the purchase.
amount object Amount that was charged to the cobranded card.
View JSON Schema on GitHub

JSON Schema

paypal-cobranded-card-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/cobranded_card",
  "title": "cobranded card object",
  "type": "object",
  "description": "Details about the merchant cobranded card used for order purchase.",
  "properties": {
    "labels": {
      "type": "array",
      "description": "Array of labels for the cobranded card.",
      "minItems": 1,
      "maxItems": 25,
      "items": {
        "type": "string",
        "description": "Label for the cobranded card.",
        "minLength": 1,
        "maxLength": 256
      }
    },
    "payee": {
      "description": "Merchant associated with the purchase.",
      "$ref": "#/components/schemas/payee_base"
    },
    "amount": {
      "description": "Amount that was charged to the cobranded card.",
      "$ref": "#/components/schemas/money"
    }
  }
}