Properties
| Name | Type | Description |
|---|---|---|
| amount | number | |
| country_of_origin | string | |
| currency | string | |
| description | string | |
| harmonized_tariff_code | string | |
| quantity | number | |
| sku | string | |
| weight | number | |
| weight_unit | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ShippingCustomsItem",
"title": "ShippingCustomsItem",
"properties": {
"amount": {
"type": "number"
},
"country_of_origin": {
"type": "string"
},
"currency": {
"type": "string"
},
"description": {
"type": "string"
},
"harmonized_tariff_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"sku": {
"type": "string"
},
"weight": {
"type": "number"
},
"weight_unit": {
"enum": [
"g",
"kg",
"oz",
"lb"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
}
},
"type": "object"
}