PayPal · Schema
Shipping Information
The shipping information.
BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The recipient's name. |
| method | string | The shipping method that is associated with this order. |
| address | object | The shipping address that is associated with this order. |
| secondary_shipping_address | object | The secondary shipping address that is associated with this order. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/shipping_info",
"title": "Shipping Information",
"type": "object",
"description": "The shipping information.",
"properties": {
"name": {
"type": "string",
"description": "The recipient's name.",
"minLength": 1,
"maxLength": 500,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"method": {
"type": "string",
"description": "The shipping method that is associated with this order.",
"minLength": 1,
"maxLength": 500,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"address": {
"$ref": "#/components/schemas/address",
"description": "The shipping address that is associated with this order."
},
"secondary_shipping_address": {
"$ref": "#/components/schemas/address",
"description": "The secondary shipping address that is associated with this order."
}
}
}