PriceTypeEnumeration
A Schema.org Enumeration Type
Usage:
< 1K Domains
Based on monthly aggregations from Google's web index.
(Google - August 2026)
This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
- Canonical URL: https://schema.org/PriceTypeEnumeration
- Check for open issues.
Enumerates different price types, for example list price, invoice price, and sale price.
Instances of
PriceTypeEnumeration may appear as a value for the following properties
| Property | On Types | Description |
|---|---|---|
| priceType |
CompoundPriceSpecification or UnitPriceSpecification |
Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the priceType property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or, a UN/EDIFACT 5387 code, or as a free form text string for price types that are not already predefined in PriceTypeEnumeration. |
Enumeration members
Source
https://github.com/schemaorg/schemaorg/issues/2712
Examples
Example 1
Copied
Example notes or example HTML without markup.
This example demonstrates a comprehensive electronics product (a fictional smart drone). It showcases how to group technical specifications using `valueGroup` on `PropertyValue`, display safety information using `consumerNotice`, link related accessories using `isOftenBoughtWith`, and model pricing and shipping constraints using `MaximumRetailPrice`, `itemPopularity`, and `minimumOrderValue`.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "AeroQuad Pro Smart Drone",
"description": "A high-performance quadcopter drone with 4K camera and obstacle avoidance.",
"brand": {
"@type": "Brand",
"name": "AeroTech"
},
"image": "https://example.com/images/aeroquad-pro.jpg",
"consumerNotice": {
"@type": "TextObject",
"name": "CHOKING_HAZARD",
"text": "WARNING: Choking Hazard - Small parts. Not for children under 3 years. This product must be registered with the FAA before flight."
},
"isOftenBoughtWith": [
{
"@type": "Product",
"name": "AeroQuad Replacement Propellers (4-Pack)",
"sku": "AQ-PROP-4PK"
},
{
"@type": "Product",
"name": "AeroQuad High-Capacity Battery",
"sku": "AQ-BATT-HC"
}
],
"specification": [
{
"@type": "PropertyValue",
"valueGroup": "Camera Specs",
"name": "Video Resolution",
"value": "4K at 60fps"
},
{
"@type": "PropertyValue",
"valueGroup": "Camera Specs",
"name": "Sensor Type",
"value": "1-inch CMOS"
},
{
"@type": "PropertyValue",
"valueGroup": "Flight Performance",
"name": "Max Flight Time",
"value": "35 minutes"
},
{
"@type": "PropertyValue",
"valueGroup": "Flight Performance",
"name": "Max Speed",
"value": "45 mph"
}
],
"offers": {
"@type": "Offer",
"price": "799.00",
"priceCurrency": "USD",
"itemCondition": "https://schema.org/NewCondition",
"availability": "https://schema.org/InStock",
"itemPopularity": {
"@type": "QuantitativeValue",
"value": 54,
"minValue": 1,
"maxValue": 347,
"name": "Category Popularity Rank"
},
"priceSpecification": [
{
"@type": "UnitPriceSpecification",
"priceType": "https://schema.org/MaximumRetailPrice",
"price": "899.00",
"priceCurrency": "USD"
},
{
"@type": "UnitPriceSpecification",
"price": "799.00",
"priceCurrency": "USD"
}
],
"shippingDetails": {
"@type": "OfferShippingDetails",
"provider": {
"@type": "Organization",
"name": "Acme Fast Freight"
},
"shippingDestination": {
"@type": "DefinedRegion",
"addressCountry": "US"
},
"shippingRate": {
"@type": "ShippingRateSettings",
"shippingRate": {
"@type": "MonetaryAmount",
"value": "0.00",
"currency": "USD"
},
"minimumOrderValue": {
"@type": "PriceSpecification",
"price": "50.00",
"priceCurrency": "USD"
}
}
}
}
}
</script>
Structured representation of the JSON-LD example.