BigCommerce · Schema

AvailablePriceFilter

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id string
name string
price_range_max number
price_range_min number
type string
View JSON Schema on GitHub

JSON Schema

bigcommerce-availablepricefilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvailablePriceFilter",
  "title": "AvailablePriceFilter",
  "description": "",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "price_range_max": {
      "type": "number"
    },
    "price_range_min": {
      "type": "number"
    },
    "type": {
      "type": "string",
      "enum": [
        "price"
      ]
    }
  },
  "x-internal": false
}