LoanOrCredit example
Appearance
Example for LoanOrCredit
TYPES: LoanOrCredit
PRE-MARKUP:
<div>
Wells Fargo GraduateSM Student Loan
You'll have up to 15 years to repay the loan.
Competitive Annual Percentage Rate (APR)
Variable interest rates range from 3.22% APR (with discount) to 8.74% APR (without discount).
Fixed interest rates range from 6.36% APR (with discount) to 10.61% APR (without discount).
The lifetime limit for this loan combined with all other education-related debt is $180,000 for law and business, and $120,000 for other fields of study.
</div>
MICRODATA:
<!-- Wells Fargo GraduateSM Student Loan -->
<div itemscope itemtype="http://schema.org/LoanOrCredit">
<span itemprop="name">Wells Fargo GraduateSM Student Loan</span>
You'll have up to
<div itemprop="loanTerm" itemscope itemtype="http://schema.org/QuantitativeValue">
<span itemprop="value" content="15">15</span>
<span itemprop="unitCode" content="ANN">years</span>
</div>
to repay the loan.
Competitive Annual Percentage Rate (APR)
<div itemprop="annualPercentageRate" itemscope itemtype="http://schema.org/QuantitativeValue">
<span itemprop="name">Variable interest rates</span>
range from
<span itemprop="minValue" content="3.22">3.22%</span> APR (with discount) to
<span itemprop="maxValue" content="8.74">8.74%</span> APR (without discount).
</div>
<div itemprop="annualPercentageRate" itemscope itemtype="http://schema.org/QuantitativeValue">
<span itemprop="name">Fixed interest rates</span>
range from
<span itemprop="minValue" content="6.36">6.36%</span> APR (with discount) to
<span itemprop="maxValue" content="10.61">10.61%</span> APR (without discount).
</div>
The lifetime limit for this loan combined with all other education-related debt is
<div itemprop="amount" itemscope itemtype="http://schema.org/MonetaryAmount">
<span itemprop="currency" content="USD">$</span>
<span itemprop="value" content="180000">180,000</span>
<span itemprop="name">for law and business</span>,
</div>
and
<div itemprop="amount" itemscope itemtype="http://schema.org/MonetaryAmount">
<span itemprop="currency" content="USD">$</span>
<span itemprop="value" content="120000">120,000</span>
<span itemprop="name">for other fields of study</span>.
</div>
</div>
RDFA:
<!-- Wells Fargo GraduateSM Student Loan -->
<div vocab="http://schema.org/" typeof="LoanOrCredit">
<span property="name">Wells Fargo GraduateSM Student Loan</span>
You'll have up to
<div property="loanTerm" typeof="QuantitativeValue">
<span property="value" content="15">15</span>
<span property="unitCode" content="ANN">years</span>
</div>
to repay the loan.
Competitive Annual Percentage Rate (APR)
<div property="annualPercentageRate" typeof="QuantitativeValue">
<span property="name">Variable interest rates</span>
range from
<span property="minValue" content="3.22">3.22%</span> APR (with discount) to
<span property="maxValue" content="8.74">8.74%</span> APR (without discount).
</div>
<div property="annualPercentageRate" typeof="QuantitativeValue">
<span property="name">Fixed interest rates</span>
range from
<span property="minValue" content="6.36">6.36%</span> APR (with discount) to
<span property="maxValue" content="10.61">10.61%</span> APR (without discount).
</div>
The lifetime limit for this loan combined with all other education-related debt is
<div property="amount" typeof="MonetaryAmount">
<span property="currency" content="USD">$</span>
<span property="value" content="180000">180,000</span>
<span property="name">for law and business</span>,
</div>
and
<div property="amount" typeof="MonetaryAmount">
<span property="currency" content="USD">$</span>
<span property="value" content="120000">120,000</span>
<span property="name">for other fields of study</span>.
</div>
</div>
JSON:
<source lang="html4strict">
<script type="application/ld+json"> { "@context":"http://schema.org", "@type":"LoanOrCredit", "name":"Wells Fargo GraduateSM Student Loan", "loanTerm":{
"@type":"QuantitativeValue", "value":"15", "unitCode": "ANN"
}, "annualPercentageRate":[
{
"@type":"QuantitativeValue",
"name": "variable interest rates",
"minValue":"3.22",
"maxValue":"8.74"
},
{
"@type":"QuantitativeValue",
"name": "fixed interest rates",
"minValue":"6.36",
"maxValue":"10.61"
}
],
"amount":[
{
"@type": "MonetaryAmount",
"name":"debt for law and business",
"value":"180000",
"currency":"USD"
},
{
"@type": "MonetaryAmount",
"name":"debt for other fields of study than law and business",
"value":"120000",
"currency":"USD"
}
]
} </script>