MonetaryAmountDistribution
MonetaryAmountDistribution is a QuantitativeValueDistribution subtype for distributions of monetary amounts. It adds 1 direct property:
currency(Text): ISO 4217 currency code (USD,EUR,GBP).
The canonical use is on JobPosting.baseSalary, on EducationalOccupationalProgram.salaryUponCompletion and trainingSalary, and on WorkBasedProgram.trainingSalary.
Full example of schema.org/MonetaryAmountDistribution json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "MonetaryAmountDistribution",
"name": "Registered electrician annual wage, Pennsylvania (2025)",
"currency": "USD",
"duration": "P1Y",
"percentile10": 46000,
"percentile25": 54000,
"median": 68000,
"percentile75": 82000,
"percentile90": 98000
}
</script>Minimal valid version
The smallest markup that still produces a valid MonetaryAmountDistribution entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "MonetaryAmountDistribution",
"currency": "USD",
"median": 68000
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsJob posting rich result (via JobPosting.baseSalary)primary
Common MonetaryAmountDistribution mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Missing currency
WrongMonetaryAmountDistribution with no currencyRightAlways set currency — the type exists to carry itThe whole point of specialising from QuantitativeValueDistribution is currency; leaving it out collapses back to the parent.
Schema properties in this example
About the example data
The wage distribution for Dunmore's registered electricians (post-apprenticeship).
Comments
Loading comments...