We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Credit card benefits pages with FinancialProduct context, offers, FAQs, and breadcrumbs.
Defines the credit card product and issuer details.
Highlights the annual fee or promotional offer tied to the card.
Answers eligibility, fee timing, and redemption questions.
Provides navigation context for the benefits page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "FinancialProduct",
"@id": "https://www.example.com/cards/rewards#product",
"name": "Northwind Rewards Card",
"description": "Travel rewards credit card with points on airfare, dining, and hotels.",
"url": "https://www.example.com/cards/rewards",
"provider": { "@type": "Organization", "name": "Northwind Bank" },
"feesAndCommissionsSpecification": "Annual fee applies. See terms for full fee schedule.",
"interestRate": "21.99%"
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/cards/rewards#annual-fee",
"name": "Annual Fee",
"description": "Annual membership fee billed after account opening and each anniversary.",
"price": "95.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/cards/rewards#fees",
"priceSpecification": {
"@type": "UnitPriceSpecification",
"price": "95.00",
"priceCurrency": "USD",
"unitText": "per year"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Is there a foreign transaction fee?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. The card does not charge foreign transaction fees on international purchases."
}
},
{
"@type": "Question",
"name": "When is the annual fee charged?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The annual fee is charged when the account is opened and again each year on the anniversary."
}
},
{
"@type": "Question",
"name": "How do I redeem rewards?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Rewards can be redeemed online for travel bookings, statement credits, or gift cards."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Credit Cards", "item": "https://www.example.com/cards" },
{ "@type": "ListItem", "position": 3, "name": "Northwind Rewards Card", "item": "https://www.example.com/cards/rewards" }
]
}
]If APR is visible on the page, add interestRate or annualPercentageRate to mirror the disclosed range.
Yes. Use an additional Offer or add the bonus details to the FinancialProduct description.