BigCommerce · Schema

adjuster_Full

Adjuster for Complex Rules.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
adjuster string The type of adjuster for either the price or the weight of the variant, when the modifier value is selected on the storefront.
adjuster_value number The numeric amount by which the adjuster will change either the price or the weight of the variant, when the modifier value is selected on the storefront.
View JSON Schema on GitHub

JSON Schema

bigcommerce-adjuster-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/adjuster_Full",
  "title": "adjuster_Full",
  "type": "object",
  "properties": {
    "adjuster": {
      "type": "string",
      "description": "The type of adjuster for either the price or the weight of the variant, when the modifier value is selected on the storefront.\n",
      "nullable": true,
      "enum": [
        "relative",
        "percentage"
      ]
    },
    "adjuster_value": {
      "type": "number",
      "description": "The numeric amount by which the adjuster will change either the price or the weight of the variant, when the modifier value is selected on the storefront.\n",
      "example": 5
    }
  },
  "description": "Adjuster for Complex Rules.",
  "x-internal": false
}