Note: you are viewing the development version of Schema.org. See How we work for more details.

CreditCard

A Schema.org Enumeration Type
A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.

Commonly used values:

  • http://purl.org/goodrelations/v1#AmericanExpress
  • http://purl.org/goodrelations/v1#DinersClub
  • http://purl.org/goodrelations/v1#Discover
  • http://purl.org/goodrelations/v1#JCB
  • http://purl.org/goodrelations/v1#MasterCard
  • http://purl.org/goodrelations/v1#VISA

Acknowledgements

Financial Industry Business Ontology project
This element is based on the work of the Financial Industry Business Ontology project (see http://www.fibo.org/schema for details), in support of the W3C Financial Industry Business Ontology Community Group (http://www.fibo.org/community). Many class and property definitions are inspired by or based on http://www.fibo.org.
GoodRelations Vocabulary Classes
This class is derived from the GoodRelations Vocabulary for E-Commerce, created by Martin Hepp. GoodRelations is a data model for sharing e-commerce data on the Web that can be expressed in a variety of syntaxes, including RDFa and HTML5 Microdata. More information about GoodRelations can be found at http://purl.org/goodrelations/.

Examples

Example 1
Copied
Example notes or example HTML without markup.
Wells Fargo Secured Visa® Credit Card
Requires a minimum $300 security deposit.
When you apply, you provide a minimum security deposit of at least $300, or up to $10,000.
Annual fee $25
Annual Percentage Rate (APR) Currently, a variable 18.99% APR on purchases. (These APRs do not apply to cash advances.)
<a href="https://www.wellsfargo.com/credit-cards/secured/terms/">Full terms and conditions</a>
Example encoded as Microdata embedded in HTML.
<div itemscope itemtype="https://schema.org/CreditCard">
    <span itemprop="name">Wells Fargo Secured Visa® Credit Card</span>
    <span itemprop="requiredCollateral">Requires a minimum $300 security deposit.</span>
    <span itemprop="amount" itemscope itemtype="https://schema.org/MonetaryAmount">When you apply, you provide a minimum security deposit of at least
      <span itemprop="currency" content="USD">$</span>
      <span itemprop="minValue">300</span>, or up to $
      <span itemprop="maxValue" content="10000">10,000</span>.
    </span>
    <span itemprop="offers" itemscope itemtype="https://schema.org/Offer">
      <meta itemprop="offeredBy" content="Wells Fargo"/>
      <span itemprop="priceSpecification" itemscope itemtype="https://schema.org/UnitPriceSpecification">Annual fee
        <span itemprop="priceCurrency" content="USD">$</span>
        <span itemprop="price">25</span>
        <span itemprop="referenceQuantity" itemscope itemtype="https://schema.org/QuantitativeValue">
            <meta itemprop="value" content="1"/><meta itemprop="unitCode" content="ANN"/>
        </span>
      </span>
    </span>
    <span>Annual Percentage Rate (APR) Currently, a variable
      <span itemprop="annualPercentageRate">18.99</span>% APR on purchases. (These APRs do not apply to cash advances.)
    </span>
    <a itemprop="feesAndCommissionsSpecification" href="https://www.wellsfargo.com/credit-cards/secured/terms/">Full terms and conditions</a>
</div>
Example encoded as RDFa embedded in HTML.
<div vocab="https://schema.org/" typeof="CreditCard">
    <span property="name">Wells Fargo Secured Visa® Credit Card</span>
    <span property="requiredCollateral">Requires a minimum $300 security deposit.</span>
    <span property="amount" typeof="MonetaryAmount">When you apply, you provide a minimum security deposit of at least
      <span property="currency" content="USD">$</span>
      <span property="minValue">300</span>, or up to $
      <span property="maxValue" content="10000">10,000</span>.
    </span>
    <span property="offers" typeof="Offer">
      <meta property="offeredBy" content="Wells Fargo"/>
      <span property="priceSpecification" typeof="UnitPriceSpecification">Annual fee
        <span property="priceCurrency" content="USD">$</span>
        <span property="price">25</span>
        <span property="referenceQuantity" typeof="QuantitativeValue">
            <meta property="value" content="1"/>
            <meta property="unitCode" content="ANN"/>
        </span>
      </span>
    </span>
    <span>Annual Percentage Rate (APR) Currently, a variable
      <span property="annualPercentageRate">18.99</span>% APR on purchases. (These APRs do not apply to cash advances.)
    </span>
    <a property="feesAndCommissionsSpecification" href="https://www.wellsfargo.com/credit-cards/secured/terms/">Full terms and conditions</a>
</div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "CreditCard",
  "name": "Wells Fargo Secured Visa® Credit Card",
  "requiredCollateral": "Requires a minimum $300 security deposit.",
  "amount": {
      "@type": "MonetaryAmount",
      "minValue": "300",
      "maxValue": "10000",
      "currency": "USD"
  },
  "offers": {
      "@type": "Offer",
      "offeredBy": {
        "@type": "BankOrCreditUnion",
        "name":"Wells Fargo"
      },
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "25",
        "priceCurrency": "USD",
        "referenceQuantity": {
          "@type": "QuantitativeValue",
          "value": "1",
          "unitCode": "ANN"
        }
      }
  },
  "annualPercentageRate": "18.99",
  "feesAndCommissionsSpecification": "https://www.wellsfargo.com/credit-cards/secured/terms/"
}
</script>
Structured representation of the JSON-LD example.