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": "#/components/schemas/ShippingLocation",
"title": "ShippingLocation",
"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"
}
},
"type": "object"
}