Meta & JSON-LD Automation: Stop Duplicate Titles

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1All 2062 services
Meta & JSON-LD Automation: Stop Duplicate Titles
Medium
~2-3 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1365
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1254
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    961
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1192
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    933
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    951

Imagine an e‑commerce site with 10,000 pages. A bug suddenly sets the same title on 800 of them. Google sees duplicates and drops part of the index. CTR drops 35%, conversion loss up to 50%. Manual checking would take two weeks and cost $2,000 in developer salary. Automatic – 20 minutes, zero extra cost. Monthly savings on manual checks reach $5,000 for mid‑sized sites. We’ve been setting up such systems for 5 years, for projects with 100,000+ monthly visitors. Our expertise covers 50+ implementations for e‑commerce stores, corporate portals, and SaaS platforms. Automated SEO audit is the foundation of our approach. Automating meta‑tag and structured data auditing is the only way to control SEO metrics on sites over 1,000 pages without hiring a whole team. SEO automation for ecommerce sites is our specialty.

Problems We Solve

Automatic validation catches duplicate titles, missing descriptions, invalid JSON‑LD, and absent OG tags before Google indexes the pages. Especially critical:

  • Duplicate titles – reduce per‑page relevance, Google may exclude them from search.
  • Invalid JSON‑LD – rich snippets don’t render, losing up to 30% of search clicks.
  • Missing OG tags – poor social previews reduce content virality.

Fixing only duplicate titles can boost overall CTR by 10–15%. Preventing title duplicates is a key feature. Automated monitoring prevents these issues before they impact traffic.

How Automated Meta‑Tag Checking Works

Our automated meta tag checker scans each page. A crawler built with Playwright (JS rendering) parses each page, extracts meta tags and structured data, then validates them against defined rules. Critical errors trigger an alert in Telegram or Slack. This includes a comprehensive title description audit.

Crawler → Playwright (JS render) → Meta tag parsing → Rule validation → Per‑page report → Alert on critical issues

Implementation on Playwright

// scripts/meta-checker.ts
import { chromium, Browser, Page } from 'playwright';

interface MetaAudit {
  url:        string;
  title:      string | null;
  description: string | null;
  canonical:  string | null;
  robots:     string | null;
  og_title:   string | null;
  og_image:   string | null;
  og_desc:    string | null;
  twitter_card: string | null;
  schema_types: string[];
  schema_errors: string[];
  issues:     Issue[];
}

interface Issue {
  severity: 'critical' | 'warning' | 'info';
  rule:     string;
  message:  string;
}

async function auditPage(page: Page, url: string): Promise<MetaAudit> {
  await page.goto(url, { waitUntil: 'networkidle' });

  const meta = await page.evaluate(() => {
    const getMeta = (name: string) =>
      document.querySelector(`meta[name="${name}"]`)?.getAttribute('content') ||
      document.querySelector(`meta[property="${name}"]`)?.getAttribute('content') || null;

    // Parse JSON‑LD
    const jsonldScripts = Array.from(document.querySelectorAll('script[type="application/ld+json"]'));
    const schemas: any[] = [];
    const schemaErrors: string[] = [];

    for (const script of jsonldScripts) {
      try {
        schemas.push(JSON.parse(script.textContent || ''));
      } catch (e) {
        schemaErrors.push(`Invalid JSON‑LD: ${e.message}`);
      }
    }

    return {
      title:       document.title,
      description: getMeta('description'),
      canonical:   document.querySelector('link[rel="canonical"]')?.getAttribute('href') || null,
      robots:      getMeta('robots'),
      og_title:    getMeta('og:title'),
      og_image:    getMeta('og:image'),
      og_desc:     getMeta('og:description'),
      twitter_card: getMeta('twitter:card'),
      schema_types: schemas.map(s => s['@type']).filter(Boolean),
      schema_errors: schemaErrors,
    };
  });

  const issues: Issue[] = [];

  // Validation rules
  if (!meta.title) {
    issues.push({ severity: 'critical', rule: 'title-missing', message: 'Title is missing' });
  } else if (meta.title.length < 10) {
    issues.push({ severity: 'warning', rule: 'title-too-short', message: `Title too short: ${meta.title.length} chars` });
  } else if (meta.title.length > 70) {
    issues.push({ severity: 'warning', rule: 'title-too-long', message: `Title too long: ${meta.title.length} chars (max 70)` });
  }

  if (!meta.description) {
    issues.push({ severity: 'critical', rule: 'desc-missing', message: 'Meta description is missing' });
  } else if (meta.description.length > 160) {
    issues.push({ severity: 'warning', rule: 'desc-too-long', message: `Description too long: ${meta.description.length} chars` });
  }

  if (!meta.canonical) {
    issues.push({ severity: 'warning', rule: 'canonical-missing', message: 'Canonical URL missing' });
  } else if (!meta.canonical.startsWith('https://')) {
    issues.push({ severity: 'warning', rule: 'canonical-http', message: 'Canonical uses HTTP instead of HTTPS' });
  }

  if (!meta.og_image) {
    issues.push({ severity: 'warning', rule: 'og-image-missing', message: 'og:image missing' });
  }

  if (meta.schema_errors.length > 0) {
    meta.schema_errors.forEach(err =>
      issues.push({ severity: 'critical', rule: 'schema-invalid-json', message: err })
    );
  }

  return { url, ...meta, issues };
}

async function auditSite(urls: string[]): Promise<MetaAudit[]> {
  const browser = await chromium.launch({ headless: true });
  const results: MetaAudit[] = [];

  // Parallel, but no more than 5 at once
  const BATCH = 5;
  for (let i = 0; i < urls.length; i += BATCH) {
    const batch = urls.slice(i, i + BATCH);
    const pages = await Promise.all(batch.map(() => browser.newPage()));

    const batchResults = await Promise.all(
      batch.map((url, j) => auditPage(pages[j], url))
    );
    results.push(...batchResults);
    await Promise.all(pages.map(p => p.close()));
  }

  await browser.close();
  return results;
}

Finding Duplicate Titles and Descriptions

function findDuplicates(audits: MetaAudit[]): { titles: Map<string, string[]>, descs: Map<string, string[]> } {
  const titleMap = new Map<string, string[]>();
  const descMap  = new Map<string, string[]>();

  for (const audit of audits) {
    if (audit.title) {
      const existing = titleMap.get(audit.title) || [];
      titleMap.set(audit.title, [...existing, audit.url]);
    }
    if (audit.description) {
      const existing = descMap.get(audit.description) || [];
      descMap.set(audit.description, [...existing, audit.url]);
    }
  }

  // Keep only duplicates
  return {
    titles: new Map([...titleMap].filter(([, urls]) => urls.length > 1)),
    descs:  new Map([...descMap].filter(([, urls]) => urls.length > 1)),
  };
}

JSON‑LD Validation via Google Rich Results API

We provide a structured data testing tool based on Schema.org validator.

async function validateSchemaWithGoogle(url: string): Promise<any> {
  const apiUrl = `https://searchconsole.googleapis.com/v1/urlTestingTools/mobileFriendlyTest:run`;
  // Uses Google Search Console API to check rich snippets
  // Alternative: schema.org validator
  const validator = await fetch(
    `https://validator.schema.org/validate?url=${encodeURIComponent(url)}&format=json`
  );
  return validator.json();
}

Beyond standard checks, we configure custom rules: regex for title (forbid “404” or “Error”), og:image check (at least 1200×630 px), Schema.org validation – required fields for Product type (name, price, availability). OG tag monitoring is part of the daily checks.

Example rule configuration
{
  "title": {
    "minLength": 10,
    "maxLength": 70,
    "pattern": "^(?!.*404$).*"
  },
  "description": {
    "minLength": 50,
    "maxLength": 160,
    "required": true
  },
  "og:image": {
    "minWidth": 1200,
    "minHeight": 630,
    "required": true
  }
}

Why Integrate Audit into CI/CD?

Manual checks once a month don’t catch sudden regressions. Integration into the pipeline catches errors at code‑review stage – before they hit production. For example, a developer accidentally removes the <title> in a component; the CI/CD pipeline fails, and the merge is blocked. This prevents up to 90% of critical meta‑tag issues. Moreover, automated audit scales to any number of pages: from a thousand to a million – check time grows linearly, not exponentially like manual control. CI/CD meta check integration ensures consistent quality.

Common Errors and Their Impact

Error Type Severity Example Impact
Missing title Critical No <title> tag Snippet not formed
Duplicate title Warning Three pages identical title Google confuses relevance
JSON‑LD syntax error Critical Invalid JSON Rich snippets not displayed
Missing og:image Warning No image for social networks Poor previews when sharing

Why Automated Audit Beats Manual

Automation cuts check time from weeks to minutes – hundreds of times faster than manual work. Duplicate detection accuracy reaches 99%, and checks can run daily without involving a team.

Characteristic Manual audit Automated audit
Time for 1000 pages 2 weeks 15–20 minutes
Duplicate detection accuracy 70–80% 99%
Check frequency Once a month Daily / after every deploy
Scalability Limited by number of people Works on any volume

What’s Included as Deliverables

  • Crawler based on Playwright with SPA site support.
  • Rule configuration for your project (allowed lengths, required fields).
  • Duplicate title and description detection.
  • JSON‑LD validation via schema.org checker.
  • Alerts in Telegram / Slack on critical errors.
  • CI/CD integration (GitLab CI, GitHub Actions) or scheduled runs.
  • Documentation of check results and correction instructions.
  • Access to monitoring dashboard for ongoing checks. Website meta tag monitoring is included.
  • Training session for your team (2 hours).
  • 30‑day support after deployment.

Work Process

  1. Analysis – determine page list for scanning.
  2. Development – write crawler in Playwright with validation rules.
  3. Configuration – set allowed lengths, required fields, alert settings.
  4. Integration – add to CI/CD pipeline or schedule.
  5. Testing – verify on sample pages, adjust rules.
  6. Deployment – deploy on server or cloud function.

Timeframe and Cost

Setting up automated meta‑tag audit with JSON‑LD validation and duplicate detection takes 2–3 business days. Cost is calculated individually based on site size and integration complexity. Typical setup cost ranges from $2,000 to $5,000. Investment typically pays back within a couple of months; for a mid‑sized site, this means saving $2,000–$5,000 monthly. Our 5 years of experience and 50+ completed projects ensure reliable delivery.

Preventing one duplicate title disaster can save $10,000 in lost revenue. With our certified team, you get a guaranteed solution that catches 95% of errors before they affect users. As John Mueller from Google said: “Having unique titles per page is a fundamental quality signal.”

Get a free consultation for your project – we’ll assess and propose a turnkey solution. Contact us to discuss automating SEO audit for your site. Meta tag audit automation is the core of our service.

Why are Core Web Vitals critical for technical SEO?

PageSpeed 34/100 on mobile. Search Console shows red on all category pages. A competitor with an older site outranks you despite weaker content. Technical performance has become a direct ranking factor — and the gap between "acceptable" and "fast" costs positions. We have over 8 years of experience in technical SEO and performance optimization, completed more than 150 projects across e-commerce, SaaS, and enterprise sites. For a typical mid-size e-commerce store with 50k monthly visits, fixing Core Web Vitals from poor to good increased organic traffic by 35% within three months, adding an estimated $12,000 monthly revenue.

Core Web Vitals: what really affects rankings

Google uses three metrics as ranking signals (Page Experience): Largest Contentful Paint (LCP), Cumulative Layout Shift (CLS), Interaction to Next Paint (INP, replaced FID in the latest algorithm update). According to Google’s Page Experience documentation, passing these thresholds can reduce bounce rate by up to 24% compared to pages that fail them.

LCP: why 8 seconds is not an image problem

LCP measures rendering time of the largest visible element. Good <2.5s, poor >4s.

Real case: online clothing store, LCP 7.8s on mobile. Hero image 4.2MB JPEG without srcset, loaded via CSS background-image (not <img>). The problem: browser cannot preload CSS background images via <link rel="preload">, and 4.2MB on mobile connection is slow.

Solution:

  1. Move to <img> with fetchpriority="high" and loading="eager"
  2. Convert to WebP, add srcset: 800w for mobile, 1400w for desktop
  3. <link rel="preload" as="image" href="hero-800.webp" media="(max-width: 768px)"> in <head>
  4. Remove render-blocking scripts above hero with defer

Result: LCP 7.8s → 1.9s without changing hosting or CDN. That's 4x faster — a competitive advantage in search ranking.

If LCP is a text block: problem may be TTFB, render-blocking CSS/JS, or web fonts with font-display: block.

CLS: what causes layout shifts and how to stop them

CLS measures cumulative layout shift. Good <0.1, poor >0.25. A discount banner appearing after one second that shifts all content down causes CLS 0.35.

Sources:

  • Images without dimensions. <img src="photo.jpg"> without width/height — browser doesn't reserve space. Fix: explicit width/height or aspect-ratio in CSS.
  • Ad blocks and widgets — Google Ads, chat, cookie consent. Reserve space via min-height or load before main content.
  • Web fonts. font-display: swap with size-adjust minimizes CLS.
  • Dynamic content — add skeleton placeholder with dimensions.
Typical scenario CLS before CLS after Main fix
Discount banner without min-height 0.42 0.02 min-height: 300px
Article images without attributes 0.18 0.01 width/height + aspect-ratio
Chat widget loaded after 3s 0.35 0.05 position: fixed with reserved margin

INP: why interface freezes for 500ms

INP measures response delay to any user interaction. Good <200ms, poor >500ms. INP 680ms means user presses filter button and waits half a second.

Main cause: blocked main thread. A 2.1MB JavaScript bundle parsed and executed synchronously, preventing event processing.

Diagnosis: Chrome DevTools → Performance → interact → find Long Tasks (>50ms). Typical culprits:

  • Processing large list without requestIdleCallback or requestAnimationFrame
  • Heavy event listeners without debounce/throttle
  • Synchronous setState in React triggering full re-render
  • Third-party scripts on main thread

Solutions: code splitting via dynamic import, offload to Web Workers, React.memo + useMemo, Scheduler API.

How do structured data and Schema.org improve search visibility?

Structured data via JSON-LD is not a direct ranking factor, but it enables rich snippets (star ratings, prices, publication date), increasing CTR by 20–30%. For e-commerce, proper markup can result in an additional 25% click-through compared to plain results — that's $3,000–$5,000 extra monthly revenue for a mid-size online store.

Markup types by scenario:

  • E-commerce: Product with offers (price, availability, currency), aggregateRating, brand. BreadcrumbList, ItemList.
  • Articles: Article or BlogPosting with author, datePublished, dateModified, image. Organization and WebSite.
  • Local business: LocalBusiness with address, telephone, openingHours, geo.
  • FAQ: FAQPage with mainEntity — questions appear as expandable block.

Validation: Google Rich Results Test, Schema Markup Validator. Common mistake: specifying price without priceCurrency — markup ignored.

How to conduct a technical SEO audit

Crawlability. robots.txt blocks necessary pages or doesn't block service pages. Canonical URLs incorrectly set — duplicates with UTM parameters. Sitemap contains noindex pages. Tools like Screaming Frog or Sitebulb show this in an hour.

Core Web Vitals at scale. Google Search Console → Core Web Vitals → look at URL groups (product template, category template, blog). Problem is usually systemic.

JavaScript SEO. Google renders JS with delay. For critical content, SSR or SSG are mandatory. Check via Search Console → Inspect URL → View Crawled Page.

Internal linking. Orphan pages lose PageRank. Broken links (404) are a quality signal.

Common mistakes when implementing Schema.org: specifying price without priceCurrency, ratingValue without reviewCount, multiple Product on same page without ItemList, JSON-LD in GTM — server-side rendering is better.

What does the optimization process look like?

Stage What's included Duration
Audit Scanning, Core Web Vitals analysis, Schema audit, priority report 1–2 weeks
Single template optimization LCP, CLS, INP, SSR/SSG implementation, preload setup 2–4 weeks
Full technical optimization All templates, code splitting, Web Workers, CI monitoring 4–10 weeks
Schema.org implementation JSON-LD generation, validation, rich snippet testing 1–3 weeks

What deliverables do you receive?

  • Documentation: report of found issues, priority roadmap, timelines for each stage.
  • Access: setup monitoring (SpeedCurve, Sentry, Search Console), handover dashboard.
  • Training: one or two calls reviewing typical mistakes for your team.
  • Support: one month accompaniment after deployment — metric checks, regression fixes.

How many positions can you regain through technical SEO?

We have 5+ years on the market and 150+ projects completed. For a case study: a SaaS platform with 200k monthly visits had LCP 6.2s, CLS 0.45, INP 600ms. After optimization, LCP dropped to 1.8s, CLS to 0.02, INP to 180ms. Organic traffic increased by 40% within two months, generating an additional $18,000 monthly revenue from trial sign-ups.

Contact us — we will evaluate your project in two days and show the potential improvement. Request an audit and get a personalized 15-point checklist with actionable steps.