We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Loan pre-qualification pages with Service + Offer details, FAQs, and breadcrumb navigation.
Describes the loan pre-qualification service, provider, and area served.
Expresses the pre-qualification offer terms, price/fees, and CTA URL.
Answers eligibility, credit impact, timelines, and document questions.
Provides navigation context to the pre-qualification 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": "Service",
"@id": "https://www.example.com/loans/prequal#service",
"name": "Personal Loan Pre-Qualification",
"serviceType": "LoanPrequalification",
"description": "Check your rate without impacting credit. Get a pre-qualification decision in minutes.",
"provider": {
"@type": "Organization",
"name": "Harbor Lending",
"url": "https://www.example.com",
"logo": "https://www.example.com/assets/logo.svg",
"address": {
"@type": "PostalAddress",
"addressCountry": "US"
}
},
"areaServed": { "@type": "AdministrativeArea", "name": "United States" },
"offers": { "@id": "https://www.example.com/loans/prequal#offer" }
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/loans/prequal#offer",
"name": "Pre-Qualification Offer",
"price": "0.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/loans/prequal#start",
"category": "LoanPrequalification",
"description": "No-impact credit check with rate ranges provided instantly."
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Does pre-qualification impact my credit score?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. We use a soft inquiry for pre-qualification. A hard pull occurs only after you accept an offer."
}
},
{
"@type": "Question",
"name": "How long does it take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most applicants see rate ranges in under 2 minutes. Final approval can take 1–2 business days."
}
},
{
"@type": "Question",
"name": "What documents are required?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Government ID and proof of income. We may request bank statements for verification."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Loans", "item": "https://www.example.com/loans" },
{ "@type": "ListItem", "position": 3, "name": "Pre-Qualification", "item": "https://www.example.com/loans/prequal" }
]
}
]Yes. Use one Service per loan type with distinct @id values and link each to its corresponding Offer.
Set price to 0.00 if no fee is displayed and keep availability/url aligned to the visible CTA.