FinancialProduct example

From Financial Industry Business Ontology Community Group

Example for FinancialProduct

TYPES: FinancialProduct

PRE-MARKUP:

<body>
    <h1>Life Insurance</h1>
    <div>
      <h3>Term Life Insurance</h3>
      <p>For most people, the primary reason to purchase life insurance is to help provide for dependents in the case of your death and the resulting loss of income. To determine a coverage amount, estimate what your family members would need after you’re gone to meet immediate, ongoing, and future financial obligations including funeral, rent or mortgage, other every day bills, college, and retirement.</p>
      <div>Coverage amounts $100,000 - $1,000,000</div>
      <div>Available through <a href="http://www.icinsure.com/acce/">Life Insurance Central</a></div>
    </div>
    <div>
      <h3>Simplified Term Life</h3>
      <div>Coverage amounts $50,000 - $250,000</div>
      <div>Available through <a href="https://www.prudential.com/personal/life-insurance">Prudential Financial</a></div>
    </div>
</body>

MICRODATA:

<body>
    <h1>Life Insurance</h1>
    <div itemscope itemtype="http://schema.org/FinancialProduct">
      <h3 itemprop="name">Term Life Insurance</h3>
      <p itemprop="description">For most people, the primary reason to purchase life insurance is to help provide for dependents in the case of your death and the resulting loss of income. To determine a coverage amount, estimate what your family members would need after you’re gone to meet immediate, ongoing, and future financial obligations including funeral, rent or mortgage, other every day bills, college, and retirement.</p>
      <div itemprop="amount" itemscope itemtype="http://schema.org/MonetaryAmount">Coverage amounts <span itemprop="currency" content="USD">$</span><span itemprop="minValue" content="100000">100,000</span> - $<span itemprop="maxValue" content="1000000">1,000,000</span></div>
      <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">Available through <a itemprop="offeredBy" href="http://www.icinsure.com/acce/">Life Insurance Central</a></div>
    </div>
</body>

RDFA:

<body vocab="http://schema.org/">
    <h1>Life Insurance</h1>
    <div typeof="FinancialProduct">
      <h3 property="name">Term Life Insurance</h3>
      <p property="description">For most people, the primary reason to purchase life insurance is to help provide for dependents in the case of your death and the resulting loss of income. To determine a coverage amount, estimate what your family members would need after you’re gone to meet immediate, ongoing, and future financial obligations including funeral, rent or mortgage, other every day bills, college, and retirement.</p>
      <div property="amount" typeof="MonetaryAmount">Coverage amounts <span property="currency" content="USD">$</span><span property="minValue" content="100000">100,000</span> - $<span property="maxValue" content="1000000">1,000,000</span></div>
      <div property="offers" typeof="Offer">Available through <a property="offeredBy" href="http://www.icinsure.com/acce/">Life Insurance Central</a></div>
    </div>
</body>

JSON:

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "FinancialProduct",
  "name": "Term Life Insurance",
  "description": "For most people, the primary reason to purchase life insurance is to help provide for dependents in the case of your death and the resulting loss of income. To determine a coverage amount, estimate what your family members would need after you’re gone to meet immediate, ongoing, and future financial obligations including funeral, rent or mortgage, other every day bills, college, and retirement.",
  "amount": {
    "@type": "MonetaryAmount",
    "currency": "USD",
    "minValue": "100000",
    "maxValue": "1000000"
  },
  "offers": {
    "@type": "Offer",
    "offeredBy": "http://www.icinsure.com/acce/"
  }
}
</script>