PayPal · Schema

Customer

The details for the customer who funds the payment. For example, the customer's first name, last name, and email address.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
name string The customer's name.
View JSON Schema on GitHub

JSON Schema

paypal-buyer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/buyer",
  "title": "Customer",
  "type": "object",
  "description": "The details for the customer who funds the payment. For example, the customer's first name, last name, and email address.",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2000,
      "pattern": "^[^~!@#$%^*()_{}:|\\t\\n/]+$",
      "description": "The customer's name."
    }
  }
}