{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/customsInformation_request", "title": "customsInformationRequest", "description": "Data about the customs information object.", "type": "object", "x-internal": false, "properties": { "product_id": { "description": "The product ID to which the customs information data applies.", "type": "integer", "format": "int32", "example": 77 }, "country_of_origin": { "type": "string", "description": "The country of manufacture, production, or growth represented in ISO 3166-1 alpha-2 format.", "example": "US" }, "commodity_description": { "description": "Description that provides information for customs to identify and verify the shapes, physical characteristics, and packaging of each shipment.", "type": "string", "minLength": 0, "maxLength": 100, "example": "Baseball caps" }, "international_shipping": { "description": "Flag to determine whether this product will be shipped internationally.", "type": "boolean", "enum": [ true, false ], "example": true }, "hs_codes": { "$ref": "#/components/schemas/harmonizedSystemCodes" } }, "required": [ "product_id", "country_of_origin", "commodity_description", "international_shipping", "hs_codes" ] }