Schema.org / JSON-LD Structured Data Setup

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.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Setting up Structured Data (Schema.org / JSON-LD) for a Website

Structured data helps search engines understand page content and display rich results: rating stars, prices, breadcrumbs, question answers.

Formats: JSON-LD vs Microdata vs RDFa

JSON-LD — Google's recommended format. Placed in a <script> tag in <head>, not mixed with HTML, easily managed via JavaScript.

Microdata — attributes directly in HTML tags. Harder to maintain when markup changes.

RDFa — similar to Microdata, less common.

Use JSON-LD.

Basic JSON-LD Structure

<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "WebSite",
    "name": "Website Name",
    "url": "https://example.ru",
    "potentialAction": {
        "@type": "SearchAction",
        "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://example.ru/search?q={search_term_string}"
        },
        "query-input": "required name=search_term_string"
    }
}
</script>

Multiple Schemas on One Page

On a product page, multiple schemas are often needed:

<script type="application/ld+json">
[
    {
        "@context": "https://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://example.ru" },
            { "@type": "ListItem", "position": 2, "name": "Electronics", "item": "https://example.ru/electronics" },
            { "@type": "ListItem", "position": 3, "name": "Smartphones" }
        ]
    },
    {
        "@context": "https://schema.org",
        "@type": "Product",
        "name": "iPhone 15 Pro",
        "offers": { "@type": "Offer", "price": "89990", "priceCurrency": "RUB" }
    }
]
</script>

Implementation in Laravel/Blade

// Component x-schema-json
@props(['data'])
<script type="application/ld+json">{!! json_encode($data, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT) !!}</script>

// Usage in template
<x-schema-json :data="[
    '@context' => 'https://schema.org',
    '@type'    => 'Product',
    'name'     => $product->name,
    'offers'   => ['@type' => 'Offer', 'price' => $product->price_formatted]
]" />

Implementation in React/Next.js

export function JsonLd({ data }) {
    return (
        <script
            type="application/ld+json"
            dangerouslySetInnerHTML={{ __html: JSON.stringify(data) }}
        />
    );
}

// Usage
<JsonLd data={{
    '@context': 'https://schema.org',
    '@type': 'Article',
    headline: article.title,
    datePublished: article.publishedAt,
    author: { '@type': 'Person', name: article.author.name }
}} />

Popular Schema.org Types

Type Application Rich Result
Product Products Stars, price
Article Articles, news Title, date
BreadcrumbList Breadcrumbs Path in snippet
FAQPage Questions/answers Accordion in results
Organization Organization Knowledge Panel
LocalBusiness Local business Maps, hours
Event Events Date, location
Review Reviews Stars
JobPosting Job vacancies Job card

Validation

Setup timeline: 1–2 days for basic types (Product, BreadcrumbList, Organization, Article).