PayPal · Schema

Business type information

The type and subtype of the business.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
type object Type of business entity like corporation, sole prop, governmental.
subtype object The sub classification of the business type.
View JSON Schema on GitHub

JSON Schema

paypal-business-type-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/business_type_info",
  "title": "Business type information",
  "type": "object",
  "description": "The type and subtype of the business.",
  "properties": {
    "type": {
      "description": "Type of business entity like corporation, sole prop, governmental.",
      "$ref": "#/components/schemas/business_type"
    },
    "subtype": {
      "description": "The sub classification of the business type.",
      "$ref": "#/components/schemas/business_sub_type"
    }
  }
}