PayPal · Schema

BIC

The business identification code (BIC). In payments systems, a BIC is used to identify a specific business, most commonly a bank.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks
View JSON Schema on GitHub

JSON Schema

paypal-bic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/bic",
  "title": "BIC",
  "type": "string",
  "description": "The business identification code (BIC). In payments systems, a BIC is used to identify a specific business, most commonly a bank.",
  "minLength": 8,
  "maxLength": 11,
  "pattern": "^[A-Z-a-z0-9]{4}[A-Z-a-z]{2}[A-Z-a-z0-9]{2}([A-Z-a-z0-9]{3})?$"
}