PayPal · Schema

Offer

The merchant-proposed offer for a dispute.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
buyer_requested_amount object The customer-requested refund for this dispute.
seller_offered_amount object The merchant-offered refund for this dispute.
offer_type object
history array An array of history information for an offer.
View JSON Schema on GitHub

JSON Schema

paypal-offer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/offer",
  "title": "Offer",
  "type": "object",
  "description": "The merchant-proposed offer for a dispute.",
  "properties": {
    "buyer_requested_amount": {
      "description": "The customer-requested refund for this dispute.",
      "$ref": "#/components/schemas/money"
    },
    "seller_offered_amount": {
      "description": "The merchant-offered refund for this dispute.",
      "$ref": "#/components/schemas/money"
    },
    "offer_type": {
      "$ref": "#/components/schemas/offer_type"
    },
    "history": {
      "type": "array",
      "minItems": 1,
      "maxItems": 1000,
      "description": "An array of history information for an offer.",
      "items": {
        "$ref": "#/components/schemas/offer_history"
      }
    }
  }
}