PayPal · Schema

Store Information

The store information.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
store_id string The ID of a store for a merchant in the system of record.
terminal_id string The terminal ID for the checkout stand in a merchant store.
View JSON Schema on GitHub

JSON Schema

paypal-store-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/store_info",
  "title": "Store Information",
  "type": "object",
  "description": "The store information.",
  "properties": {
    "store_id": {
      "type": "string",
      "description": "The ID of a store for a merchant in the system of record.",
      "minLength": 1,
      "maxLength": 100,
      "pattern": "^[a-zA-Z0-9]*$"
    },
    "terminal_id": {
      "type": "string",
      "description": "The terminal ID for the checkout stand in a merchant store.",
      "minLength": 1,
      "maxLength": 60,
      "pattern": "^[a-zA-Z0-9]*$"
    }
  }
}