Ordoro · Schema
Customs Line Schema
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| country | string | |
| description | string | |
| quantity | integer | |
| value | number | Dollar value of customs line |
| weight | number | Weight of customs line in ounces |
| harmonization_code | string | The 6 character international nomenclature for the classification of products |
| sku | string | |
| unit_of_measure | string | |
| url | string | |
| harmonization_code_country | string | The country of harmonization_code |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-customs_line-schema.json",
"title": "Customs Line Schema",
"type": "object",
"additionalProperties": false,
"properties": {
"country": {
"type": "string"
},
"description": {
"type": "string"
},
"quantity": {
"type": "integer"
},
"value": {
"description": "Dollar value of customs line",
"format": "double",
"type": "number"
},
"weight": {
"description": "Weight of customs line in ounces",
"type": "number"
},
"harmonization_code": {
"description": "The 6 character international nomenclature for the classification of products",
"type": "string"
},
"sku": {
"type": "string"
},
"unit_of_measure": {
"type": "string"
},
"url": {
"type": "string"
},
"harmonization_code_country": {
"description": "The country of harmonization_code",
"type": "string"
}
},
"required": [
"description",
"quantity",
"value",
"weight",
"country"
]
}