MonetaryAmount

A monetary value with currency specification

2 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
valuenumber

Numeric amount

Example: 1299.99

Required
currencyCurrency

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": "£"
  }
}