Adyen · Schema
ShippingLocation
ShippingLocation schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| address | object | The address details of the shipping location. |
| contact | object | The contact details for the shipping location. |
| id | string | The unique identifier of the shipping location, for use as `shippingLocationId` when creating an order. |
| name | string | The unique name of the shipping location. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-shipping-location-schema.json",
"title": "ShippingLocation",
"description": "ShippingLocation schema from Adyen API",
"type": "object",
"properties": {
"address": {
"description": "The address details of the shipping location.",
"$ref": "#/components/schemas/Address"
},
"contact": {
"description": "The contact details for the shipping location.",
"$ref": "#/components/schemas/Contact"
},
"id": {
"description": "The unique identifier of the shipping location, for use as `shippingLocationId` when creating an order.",
"type": "string"
},
"name": {
"description": "The unique name of the shipping location.",
"type": "string"
}
}
}