We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
City permit application pages with Service + WebApplication context, FAQs, and breadcrumbs.
Describes the permit service offered by the city.
Defines the online permit application form.
Answers eligibility, processing time, and document questions.
Provides navigation context for the permit 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/permits/parking#service",
"name": "Residential Parking Permit",
"serviceType": "CityPermit",
"description": "Apply for a residential parking permit for your neighborhood.",
"provider": { "@type": "Organization", "name": "City of Northwind" },
"areaServed": { "@type": "AdministrativeArea", "name": "Northwind" },
"url": "https://www.example.com/permits/parking"
},
{
"@context": "https://schema.org",
"@type": "WebApplication",
"@id": "https://www.example.com/permits/parking/apply#app",
"name": "Parking Permit Application",
"description": "Submit your parking permit application online.",
"applicationCategory": "GovernmentApplication",
"operatingSystem": "Any",
"url": "https://www.example.com/permits/parking/apply"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What documents are required?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Proof of residency, vehicle registration, and a valid ID are required."
}
},
{
"@type": "Question",
"name": "How long does approval take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most permits are approved within 5–7 business days."
}
},
{
"@type": "Question",
"name": "Is there an application fee?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The fee is listed on the application page and varies by permit type."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Permits", "item": "https://www.example.com/permits" },
{ "@type": "ListItem", "position": 3, "name": "Parking Permit", "item": "https://www.example.com/permits/parking" }
]
}
]If multiple permit types are offered, create separate pages or Service entries for each type.
List fees in page copy and ensure any Offer or pricing references match the visible amounts.