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.
{
"$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
}