---
title: SellingPlanPriceAdjustmentValue - Storefront API
description: >-
  Represents by how much the price of a variant associated with a selling plan
  is adjusted. Each variant can have up to two price adjustments.
api_version: 2025-07
api_name: storefront
type: union
api_type: graphql
source_url:
  html: >-
    https://shopify.dev/docs/api/storefront/2025-07/unions/SellingPlanPriceAdjustmentValue
  md: >-
    https://shopify.dev/docs/api/storefront/2025-07/unions/SellingPlanPriceAdjustmentValue.md
---

# Selling​Plan​Price​Adjustment​Value

union

Requires `unauthenticated_read_selling_plans` access scope.

Represents by how much the price of a variant associated with a selling plan is adjusted. Each variant can have up to two price adjustments.

## Possible types

* [Selling​Plan​Fixed​Amount​Price​Adjustment](https://shopify.dev/docs/api/storefront/2025-07/objects/SellingPlanFixedAmountPriceAdjustment)

  OBJECT

  A fixed amount that's deducted from the original variant price. For example, $10.00 off.

  * adjustment​Amount

    [Money​V2!](https://shopify.dev/docs/api/storefront/2025-07/objects/MoneyV2)

    non-null

    The money value of the price adjustment.

* [Selling​Plan​Fixed​Price​Adjustment](https://shopify.dev/docs/api/storefront/2025-07/objects/SellingPlanFixedPriceAdjustment)

  OBJECT

  A fixed price adjustment for a variant that's purchased with a selling plan.

  * price

    [Money​V2!](https://shopify.dev/docs/api/storefront/2025-07/objects/MoneyV2)

    non-null

    A new price of the variant when it's purchased with the selling plan.

* [Selling​Plan​Percentage​Price​Adjustment](https://shopify.dev/docs/api/storefront/2025-07/objects/SellingPlanPercentagePriceAdjustment)

  OBJECT

  A percentage amount that's deducted from the original variant price. For example, 10% off.

  * adjustment​Percentage

    [Float!](https://shopify.dev/docs/api/storefront/2025-07/scalars/Float)

    non-null

    The percentage value of the price adjustment.

***

## Fields with this union

* [Selling​Plan​Price​Adjustment.adjustmentValue](https://shopify.dev/docs/api/storefront/2025-07/objects/SellingPlanPriceAdjustment#field-SellingPlanPriceAdjustment.fields.adjustmentValue)

  OBJECT

  Represents by how much the price of a variant associated with a selling plan is adjusted. Each variant can have up to two price adjustments. If a variant has multiple price adjustments, then the first price adjustment applies when the variant is initially purchased. The second price adjustment applies after a certain number of orders (specified by the `orderCount` field) are made. If a selling plan doesn't have any price adjustments, then the unadjusted price of the variant is the effective price.

***

```graphql
union SellingPlanPriceAdjustmentValue = SellingPlanFixedAmountPriceAdjustment | SellingPlanFixedPriceAdjustment | SellingPlanPercentagePriceAdjustment
```
