InvestmentOrDeposit example

From Financial Industry Business Ontology Community Group

Example for FinancialProduct

TYPES: InvestmentOrDeposit

PRE-MARKUP:

<body>
  <div>
    <h1>Guaranteed Interest Fund</h1>
    <p>This type of secure investment grows your money at a guaranteed rate of interest for a fixed period. It is ideal for investors looking for capital security.</p>
    <div>Amount to be invested $25,000 to $99,999</div>
    <div>Guaranteed interest rate 1.25%</div>
  </div>
</body>

MICRODATA:

  <div itemscope itemtype="http://schema.org/InvestmentOrDeposit">
    <h1 itemprop="name">Guaranteed Interest Fund</h1>
    <p itemprop="description">This type of secure investment grows your money at a guaranteed rate of interest for a fixed period. It is ideal for investors looking for capital security.</p>
    <div itemprop="amount" itemscope itemtype="http://schema.org/MonetaryAmount">Amount to be invested <span itemprop="currency" content="USD">$</span><span itemprop="minValue" content="25000">25,000</span> to $<span itemprop="maxValue" content="99000">99,999</span></div>
    <div>Guaranteed interest rate <span itemprop="interestRate" content="1.25">1.25%</span></div>
  </div>
</body>

RDFA:

<body vocab="http://schema.org/">
  <div typeof="http://schema.org/InvestmentOrDeposit">
    <h1 property="name">Guaranteed Interest Fund</h1>
    <p property="description">This type of secure investment grows your money at a guaranteed rate of interest for a fixed period. It is ideal for investors looking for capital security.</p>
    <div property="amount" typeof="http://schema.org/MonetaryAmount">Amount to be invested <span property="currency" content="USD">$</span><span property="minValue" content="25000">25,000</span> to $<span property="maxValue" content="99000">99,999</span></div>
    <div>Guaranteed interest rate <span property="interestRate" content="1.25">1.25%</span></div>
  </div>
</body>

JSON:

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "InvestmentOrDeposit",
  "name": "Guaranteed Interest Fund",
  "description": "This type of secure investment grows your money at a guaranteed rate of interest for a fixed period. It is ideal for investors looking for capital security.",
  "amount": {
    "@type": "MonetaryAmount",
    "currency": "USD",
    "minValue": "25000",
    "maxValue": "90000"
  },
  "interestRate": "1.25"
}
</script>