We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Application status portals with Service + WebPage context, FAQs, and breadcrumb navigation.
Defines the application status page and its purpose.
Represents the application status service and access URL.
Answers questions about review stages, updates, and support.
Provides navigation context for the application status 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": "WebPage",
"@id": "https://www.example.com/careers/application-status#page",
"name": "Application Status",
"url": "https://www.example.com/careers/application-status",
"description": "Check the status of your application and view next steps."
},
{
"@context": "https://schema.org",
"@type": "Service",
"@id": "https://www.example.com/careers/application-status#service",
"name": "Job Application Status Portal",
"serviceType": "Candidate Application Tracking",
"description": "Secure portal for applicants to track review progress and interview scheduling.",
"provider": { "@type": "Organization", "name": "Northwind Labs" },
"offers": {
"@type": "Offer",
"url": "https://www.example.com/careers/application-status/login",
"availability": "https://schema.org/InStock"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How often is my status updated?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Statuses are updated within 3 business days after each review stage."
}
},
{
"@type": "Question",
"name": "What does “Under Review” mean?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Your application is being evaluated by the hiring team and no action is needed."
}
},
{
"@type": "Question",
"name": "Who can I contact for help?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Use the support link in the portal to reach the recruiting team."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Careers", "item": "https://www.example.com/careers" },
{ "@type": "ListItem", "position": 3, "name": "Application Status", "item": "https://www.example.com/careers/application-status" }
]
}
]Yes. Match stage names and timing with what applicants see in the portal UI.
Yes. Use an Offer with a login URL so the access path is explicit.