BigCommerce · Schema

productSortOrder

The relative priority of the product among other products inside the category.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
product_id integer The ID of the associated product.
sort_order integer
View JSON Schema on GitHub

JSON Schema

bigcommerce-productsortorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/productSortOrder",
  "title": "productSortOrder",
  "required": [
    "product_id",
    "sort_order"
  ],
  "type": "object",
  "properties": {
    "product_id": {
      "minimum": 1,
      "type": "integer",
      "description": "The ID of the associated product.",
      "example": 99
    },
    "sort_order": {
      "minimum": 0,
      "type": "integer",
      "example": 4
    }
  },
  "description": "The relative priority of the product among other products inside the category.",
  "x-internal": false
}