PayPal · Schema

Accept Claim Response Options

The allowed response options when the merchant is accepting the claim.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
accept_claim_types array The types of refund the merchant can provide the customer.
View JSON Schema on GitHub

JSON Schema

paypal-accept-claim-response-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/accept_claim_response_options",
  "title": "Accept Claim Response Options",
  "type": "object",
  "description": "The allowed response options when the merchant is accepting the claim.",
  "properties": {
    "accept_claim_types": {
      "type": "array",
      "description": "The types of refund the merchant can provide the customer.",
      "minItems": 1,
      "maxItems": 10,
      "items": {
        "$ref": "#/components/schemas/accept_claim_type"
      }
    }
  }
}