MonetaryAmount
A monetary value with currency specification
2 properties
Schema
Properties
| Property | Type | Mode | Description | Required |
|---|---|---|---|---|
| value | number | Numeric amount Example: | Required | |
| currency | Currency | Currency of the amount (reference to Currency entity) | Required |
Examples
Example 1
{
"@type": "MonetaryAmount",
"value": 1299.99,
"currency": {
"@type": "Currency",
"code": "USD",
"symbol": "$"
}
}Example 2
{
"@type": "MonetaryAmount",
"value": 999.5,
"currency": {
"@type": "Currency",
"code": "EUR",
"symbol": "€"
}
}Example 3
{
"@type": "MonetaryAmount",
"value": 850,
"currency": {
"@type": "Currency",
"code": "GBP",
"symbol": "£"
}
}