We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Identity verification and KYC pages with WebApplication + Service context, FAQs, and breadcrumbs.
Defines the identity verification portal experience.
Describes the identity verification service and provider.
Answers document requirements, processing time, and data security questions.
Provides navigation context for the verification 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": "WebApplication",
"@id": "https://www.example.com/verify#app",
"name": "Identity Verification Portal",
"description": "Verify your identity to complete account setup.",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Any",
"url": "https://www.example.com/verify"
},
{
"@context": "https://schema.org",
"@type": "Service",
"@id": "https://www.example.com/verify#service",
"name": "Identity Verification Service",
"serviceType": "IdentityVerification",
"provider": { "@type": "Organization", "name": "Northwind Identity" },
"areaServed": { "@type": "Country", "name": "United States" },
"description": "Secure identity checks with document and selfie verification."
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What documents are accepted?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We accept government-issued IDs such as passports and driver licenses."
}
},
{
"@type": "Question",
"name": "How long does verification take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most verifications complete within a few minutes, but some may take up to 24 hours."
}
},
{
"@type": "Question",
"name": "Is my data secure?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Data is encrypted in transit and stored according to compliance standards."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Verify", "item": "https://www.example.com/verify" }
]
}
]If selfie capture is required, mention it in the FAQ answers and portal instructions.
List supported countries in the Service description or FAQ answers and keep them aligned with the UI.