WooCommerce · JSON Structure

Woocommerce Store Api Store Product Price Structure

Formatted price information for a product or variation.

Type: object Properties: 10
eCommerceOpen SourceOrdersProductsWordPress

StoreProductPrice is a JSON Structure definition published by WooCommerce, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

price regular_price sale_price price_range currency_code currency_symbol currency_decimal_separator currency_thousand_separator currency_prefix currency_suffix

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/woocommerce/refs/heads/main/json-structure/woocommerce-store-api-store-product-price-structure.json",
  "name": "StoreProductPrice",
  "description": "Formatted price information for a product or variation.",
  "type": "object",
  "properties": {
    "price": {
      "type": "string",
      "description": "Current price as a formatted string with currency symbol.",
      "example": "string-value"
    },
    "regular_price": {
      "type": "string",
      "description": "Regular price as a formatted string.",
      "example": "string-value"
    },
    "sale_price": {
      "type": "string",
      "description": "Sale price as a formatted string (empty when not on sale).",
      "example": "string-value"
    },
    "price_range": {
      "type": "object",
      "description": "Price range for variable products.",
      "nullable": true,
      "properties": {
        "min_amount": {
          "type": "string",
          "description": "Minimum variation price."
        },
        "max_amount": {
          "type": "string",
          "description": "Maximum variation price."
        }
      },
      "example": {
        "min_amount": "string-value",
        "max_amount": "string-value"
      }
    },
    "currency_code": {
      "type": "string",
      "description": "ISO 4217 currency code.",
      "example": "string-value"
    },
    "currency_symbol": {
      "type": "string",
      "description": "Currency symbol.",
      "example": "string-value"
    },
    "currency_decimal_separator": {
      "type": "string",
      "description": "Decimal separator character.",
      "example": "string-value"
    },
    "currency_thousand_separator": {
      "type": "string",
      "description": "Thousands separator character.",
      "example": "string-value"
    },
    "currency_prefix": {
      "type": "string",
      "description": "Currency prefix (e.g. $).",
      "example": "string-value"
    },
    "currency_suffix": {
      "type": "string",
      "description": "Currency suffix.",
      "example": "string-value"
    }
  }
}