PayPal · Schema

Processing Instruction

The instruction to process an order.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks
View JSON Schema on GitHub

JSON Schema

paypal-processing-instruction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/processing_instruction",
  "title": "Processing Instruction",
  "type": "string",
  "description": "The instruction to process an order.",
  "default": "NO_INSTRUCTION",
  "minLength": 1,
  "maxLength": 36,
  "pattern": "^[0-9A-Z_]+$",
  "enum": [
    "ORDER_COMPLETE_ON_PAYMENT_APPROVAL",
    "NO_INSTRUCTION"
  ]
}