Properties
| Name | Type | Description |
|---|---|---|
| amount | number | |
| contents_type | string | |
| currency | string | |
| description | string | |
| duties_paid_by | string | |
| items | object | |
| non_delivery_option | string | |
| recipient_eori | string | |
| recipient_tax_number | string | |
| restrictions | object | |
| shipper_eori | string | |
| shipper_tax_number | string | |
| taxes_paid_by | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/property_ShippingShipment_customs",
"title": "property_ShippingShipment_customs",
"description": "Customs information",
"properties": {
"amount": {
"type": "number"
},
"contents_type": {
"enum": [
"MERCHANDISE",
"DOCUMENTS",
"GIFT",
"RETURNED_GOODS",
"SAMPLE",
"OTHER"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"currency": {
"type": "string"
},
"description": {
"type": "string"
},
"duties_paid_by": {
"enum": [
"SENDER",
"RECIPIENT",
"THIRD_PARTY"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"items": {
"$ref": "#/components/schemas/property_ShippingShipment_customs_items"
},
"non_delivery_option": {
"enum": [
"RETURN",
"ABANDON"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"recipient_eori": {
"type": "string"
},
"recipient_tax_number": {
"type": "string"
},
"restrictions": {
"$ref": "#/components/schemas/property_ShippingShipment_customs_restrictions"
},
"shipper_eori": {
"type": "string"
},
"shipper_tax_number": {
"type": "string"
},
"taxes_paid_by": {
"enum": [
"SENDER",
"RECIPIENT",
"THIRD_PARTY"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
}
},
"type": "object"
}