What structured data is and why it matters
The most visible benefit: rich results. A FAQ page with FAQPage schema can show question-and-answer dropdowns directly in Google search results. A product page with Product + Review schema can show star ratings and prices. A local business with LocalBusiness schema can show opening hours in search results. These rich results improve click-through rates more clicks from the same ranking position.
The schema types every Mumbai website needs
Schema Type 1: Organisation (homepage and key pages)
Tells Google about your business as an entity not just as a website, but as an organisation with a name, address, phone, website, logo, and social profiles.
`json { "@context": "https://schema.org", "@type": "Organization", "name": "Perceptra", "url": "https://www.perceptra.in", "logo": "https://www.perceptra.in/assets/perceptra-logo.png", "address": { "@type": "PostalAddress", "streetAddress": "Solaris 2, Office 312, Off Saki Vihar Road", "addressLocality": "Powai", "addressRegion": "Maharashtra", "postalCode": "400072", "addressCountry": "IN" }, "telephone": "+91 79770 36723", "email": "hello@perceptra.in" } `
Schema Type 2: LocalBusiness (for businesses with a physical location)
A superset of Organisation that adds business-specific properties: opening hours, price range, and business category. This is what enables Google to show your hours in search results.
`json { "@context": "https://schema.org", "@type": "LocalBusiness", "name": "Perceptra", "openingHoursSpecification": [ { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"], "opens": "10:00", "closes": "19:00" } ] } `
Schema Type 3: BlogPosting (blog posts and articles)
Tells Google the page is an article with a specific author, publication date, and headline. Enables article rich results and supports EEAT signals.
`json { "@context": "https://schema.org", "@type": "BlogPosting", "headline": "Technical SEO Audit Cost and Scope", "author": {"@type": "Person", "name": "Aamir Khan"}, "datePublished": "2025-08-15", "dateModified": "2025-08-15", "publisher": {"@type": "Organization", "name": "Perceptra"} } `
Schema Type 4: FAQPage (pages with FAQ sections)
Enables the FAQ rich result question and answer dropdowns appearing directly in search results. Very high click-through rate impact.
`json { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What is technical SEO?", "acceptedAnswer": { "@type": "Answer", "text": "Technical SEO is making sure Google can find, read, load, and trust your website..." } } ] } `
Schema Type 5: BreadcrumbList (all pages in a hierarchy)
Shows the page's location in your site hierarchy directly in search results "Home > Services > Technical SEO" improving click-through rate and helping Google understand site structure.
Ready to take the next step?
Let Perceptra scope the right approach for your business.
Book a Free Strategy Session ?How to implement schema markup
Add JSON-LD schema in a tag in the of your HTML. JSON-LD is Google's preferred format it is separate from your visible content and does not require HTML attribute changes.
Test your implementation with Google's Rich Results Test (search.google.com/test/rich-results) before deploying.
Frequently asked questions
Does schema markup directly improve rankings? Not directly schema is not a direct ranking signal. But rich results (star ratings, FAQ dropdowns, price displays) improve click-through rates from search results, which is an indirect ranking signal. More importantly, rich results increase traffic from the same ranking position.
Do we need a developer to add schema? For adding JSON-LD to a static HTML site: no it is copy-paste. For WordPress: plugins like Rank Math or Yoast handle most common schema types automatically. For custom-built sites with complex schema requirements: developer involvement is typically needed.
Can we add the wrong schema type and be penalised? Yes Google penalises "misleading structured data" marking up content as a review or FAQ when the page does not actually contain those elements. Only add schema types that accurately represent the content on the page.