Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions schemas/product.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,48 @@
"type": "string"
}
},
"hsCode": {
"description": "HTS or HS code of the product, up to 14 digits",
"type": "string",
"value": {
}
},
"countryOfOrigin": {
"description": "ISO-2 letter country code",
"type": "string",
"value": {
}
},
"eccn": {
"description": "Export Control Classification Number, 5 character alphanumeric, required for exports from the USA",
"type": "string",
"value": {
}
},
"unNumber": {
"description": "Four digit UN number for hazmat materials identification",
"type": "string",
"value": {
}
},
"unPackingGroup": {
"description": "Identifies the degree of danger - values I, II or III",
"type": "string",
"value": {
}
},
"unPackingInstruction": {
"description": "Usually five characters, letters and numbers",
"type": "string",
"value": {
}
},
"nmfc": {
"description": "National Motor Freigth Classification, used in the US only in lieu of UN codes",
"type": "string",
"value": {
}
},
"customFields": {
"description": "Custom Fields - allows for arbitrary key-value pairs to be added to an entity. Useful for storing any custom data that is not covered by the other fields.",
"type": "array",
Expand Down