PayPal · Schema

Related Identifiers

Identifiers related to a specific resource.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
order_id string Order ID related to the resource.
authorization_id string Authorization ID related to the resource.
capture_id string Capture ID related to the resource.
View JSON Schema on GitHub

JSON Schema

paypal-related-ids-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/related_ids",
  "title": "Related Identifiers",
  "type": "object",
  "description": "Identifiers related to a specific resource.",
  "properties": {
    "order_id": {
      "type": "string",
      "description": "Order ID related to the resource.",
      "minLength": 1,
      "maxLength": 20,
      "pattern": "^[A-Z0-9]+$"
    },
    "authorization_id": {
      "type": "string",
      "description": "Authorization ID related to the resource.",
      "minLength": 1,
      "maxLength": 20,
      "pattern": "^[A-Z0-9]+$"
    },
    "capture_id": {
      "type": "string",
      "description": "Capture ID related to the resource.",
      "minLength": 1,
      "maxLength": 20,
      "pattern": "^[A-Z0-9]+$"
    }
  }
}