100 US Dollars

How do you represent "$100" in the schema of a webpage?

An amount of money is represented by two properties, an amount and a currency.

In our case 100 is the amount. 100 refers to the natural number 100.

In this example, US Dollars is the currency. It refers to the currency of the United States of America. US Dollar amounts are rounded to two decimals. One US Dollar breaks into 100 cents.

Alternate names for 100 US Dollars

The currency symbol for the US dollar is "$". The currency code for the US dollar "USD". Besides the US dollar has some nicknames, such as greenback or buck. This makes a long list of alternate names for 100 US Dollars.

  • $100
  • $100
  • 100 dollars
  • 100 dollars
  • 100 USD
  • 100 bucks
  • 1 hundred
  • 1 hundred dollars

Monetary Amount Schema

        
            {
    "@type": "MonetaryAmount",
    "name": "$100",
    "description": "An amount of $100 (US Dollars)",
    "value": 100,
    "currency": "USD",
    "alternateName": [
        "$100",
        "$100",
        "100 dollars",
        "100 dollars",
        "100 USD",
        "100 bucks",
        "1 hundred",
        "1 hundred dollars"
    ],
    "sameAs": [
        "https://missingentities.com/entities/monetary-amount/usd/100/"
    ]
}
        
    

Schema.org defines a specific schema type for a monetary amount. Its main attributes are currency and value to express a single amount of money.

The value attribute is a number.

The currency attribute uses ISO 4217 currency format as value, e.g. "USD".

How to use the Schema for 100 Dollars?

You can simply copy the schema above and paste it into the JSON-LD code of your schema definition. Use this monetary amount schema only in attributes that allow it, or your schema will be invalid.

Feel free to trim the list of alternate names, if some of these are not used in your context. However, if you use different names, feel free to add them to the list.

Monetary Amount Schema Generator

Go ahead, and generate the monetary amount schema for a different amount:

Contexts

Monetary amounts appear in different use cases throughout business, finance, and commerce.

Price Context

$100 could refer to a price for goods or services.

Payment Context

$100 could refer to a payment rendered for fulfillment of a contract.

Related Entities

You may not look for the schema for a monetary amount alone, but for something that is more of a quantitative value. Here are a few examples of money amounts in relation to different time periods.