{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "schema:MonetaryAmountDistribution", "title": "MonetaryAmountDistribution", "description": "A statistical distribution of monetary amounts.", "type": "object", "allOf": [ { "description": "A statistical distribution of values.", "$ref": "schema:QuantitativeValueDistribution" } ], "properties": { "currency": { "description": "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".", "type": "string" } } }