PayPal · Schema

Settle Request

A request to settle a dispute in either the customer's or merchant's favor.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
adjudication_outcome string The outcome of the adjudication.
View JSON Schema on GitHub

JSON Schema

paypal-adjudicate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/adjudicate",
  "title": "Settle Request",
  "type": "object",
  "description": "A request to settle a dispute in either the customer's or merchant's favor.",
  "properties": {
    "adjudication_outcome": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255,
      "pattern": "^[0-9A-Z_]+$",
      "description": "The outcome of the adjudication.",
      "enum": [
        "BUYER_FAVOR",
        "SELLER_FAVOR"
      ]
    }
  },
  "required": [
    "adjudication_outcome"
  ]
}