PayPal · Schema

Business industry

The category, subcategory and MCC code of the business.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
category string The customer's business category code. PayPal uses industry standard seller category codes.
mcc_code string The customer's business seller category code. PayPal uses industry standard seller category codes.
subcategory string The customer's business subcategory code. PayPal uses industry standard seller subcategory codes.
View JSON Schema on GitHub

JSON Schema

paypal-business-industry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/business_industry",
  "title": "Business industry",
  "type": "object",
  "description": "The category, subcategory and MCC code of the business.",
  "properties": {
    "category": {
      "type": "string",
      "description": "The customer's business category code. PayPal uses industry standard seller category codes.",
      "pattern": "^\\d+$",
      "minLength": 1,
      "maxLength": 20
    },
    "mcc_code": {
      "type": "string",
      "description": "The customer's business seller category code. PayPal uses industry standard seller category codes.",
      "pattern": "^\\d+$",
      "minLength": 1,
      "maxLength": 20
    },
    "subcategory": {
      "type": "string",
      "description": "The customer's business subcategory code. PayPal uses industry standard seller subcategory codes.",
      "pattern": "^\\d+$",
      "minLength": 1,
      "maxLength": 20
    }
  },
  "required": [
    "category",
    "mcc_code",
    "subcategory"
  ]
}