BigCommerce · Schema

default_product_sort

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
default_product_sort string Determines how the products are sorted on category page load.
View JSON Schema on GitHub

JSON Schema

bigcommerce-default-product-sort-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/default_product_sort",
  "title": "default_product_sort",
  "type": "object",
  "properties": {
    "default_product_sort": {
      "type": "string",
      "description": "Determines how the products are sorted on category page load.\n",
      "enum": [
        "use_store_settings",
        "featured",
        "newest",
        "best_selling",
        "alpha_asc",
        "alpha_desc",
        "avg_customer_review",
        "price_asc",
        "price_desc"
      ]
    }
  }
}