InvestmentOrDeposit
InvestmentOrDeposit is a FinancialProduct subtype for any investable / depositable product. Direct property: amount (MonetaryAmount or Number — the amount invested). Parent of BrokerageAccount, DepositAccount, InvestmentFund.
Full example of schema.org/InvestmentOrDeposit 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": "InvestmentOrDeposit",
"name": "Dunmore Foundation 12-month CD",
"amount": { "@type": "MonetaryAmount", "value": 50000, "currency": "DKK" },
"interestRate": 3.75,
"provider": { "@type": "BankOrCreditUnion", "name": "Danmarks Sparekasse" }
}
</script>Minimal valid version
The smallest markup that still produces a valid InvestmentOrDeposit 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": "InvestmentOrDeposit",
"name": "Example fund",
"amount": { "@type": "MonetaryAmount", "value": 1000, "currency": "USD" }
}
</script>Google rich results this unlocks
InvestmentOrDeposit is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). InvestmentOrDeposit becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common InvestmentOrDeposit 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
amount as bare number
Wrong"amount": 50000RightMonetaryAmount with value + currencyCurrency isn't inferable; always structure amount as MonetaryAmount.
Schema properties in this example
Also mentioned in 1 other example
InvestmentOrDeposit also appears in DepositAccount. See the full InvestmentOrDeposit schema page for every reference.
About the example data
Dunmore Foundation's high-yield savings vehicle in the Xoo Code financial-product catalogue.
Comments
Loading comments...