PayPal · Schema

Seller Protection

The level of protection offered as defined by [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection).

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
status string Indicates whether the transaction is eligible for seller protection. For information, see [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection).
dispute_categories array An array of conditions that are covered for the transaction.
View JSON Schema on GitHub

JSON Schema

paypal-seller-protection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/seller_protection",
  "title": "Seller Protection",
  "type": "object",
  "description": "The level of protection offered as defined by [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection).",
  "properties": {
    "status": {
      "type": "string",
      "description": "Indicates whether the transaction is eligible for seller protection. For information, see [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection).",
      "readOnly": true,
      "enum": [
        "ELIGIBLE",
        "PARTIALLY_ELIGIBLE",
        "NOT_ELIGIBLE"
      ]
    },
    "dispute_categories": {
      "type": "array",
      "description": "An array of conditions that are covered for the transaction.",
      "items": {
        "type": "string",
        "description": "The condition that is covered for the transaction.",
        "enum": [
          "ITEM_NOT_RECEIVED",
          "UNAUTHORIZED_TRANSACTION"
        ]
      },
      "readOnly": true
    }
  }
}