BigCommerce · Schema

customsInformationRequest

Data about the customs information object.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
product_id integer The product ID to which the customs information data applies.
country_of_origin string The country of manufacture, production, or growth represented in ISO 3166-1 alpha-2 format.
commodity_description string Description that provides information for customs to identify and verify the shapes, physical characteristics, and packaging of each shipment.
international_shipping boolean Flag to determine whether this product will be shipped internationally.
hs_codes object
View JSON Schema on GitHub

JSON Schema

bigcommerce-customsinformation-request-schema.json Raw ↑
{
  "$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"
  ]
}