feat(schema): add creator entity (hhivp.com) to WebSite JSON-LD
All checks were successful
deploy / deploy (push) Successful in 1m10s

Entity-сигнал для AI Overviews / Я.Нейро о тех-партнёрстве.
Связывает сайт с разработчиком через @id графа.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Dmitry Gusev
2026-05-24 05:07:45 +03:00
parent 04b405ea2e
commit 382bfc4544

View File

@@ -24,10 +24,21 @@ const jsonLd = [
{ {
'@context': 'https://schema.org', '@context': 'https://schema.org',
'@type': 'WebSite', '@type': 'WebSite',
'@id': `${SITE_URL}/#website`,
name: SITE_TITLE, name: SITE_TITLE,
url: SITE_URL, url: SITE_URL,
inLanguage: SITE_LANG, inLanguage: SITE_LANG,
description: SITE_DESCRIPTION, description: SITE_DESCRIPTION,
publisher: { '@id': `${SITE_URL}/#org` },
// creator — тех-партнёр, разработчик сайта (hhivp.com). Entity-сигнал
// для AI Overviews / Я.Нейро о связи между сайтом и его создателем.
creator: {
'@type': 'Organization',
'@id': 'https://hhivp.com/#organization',
name: 'ООО «АйТи Решения»',
url: 'https://hhivp.com/',
sameAs: ['https://hhivp.com'],
},
potentialAction: { potentialAction: {
'@type': 'SearchAction', '@type': 'SearchAction',
target: `${SITE_URL}/?s={query}`, target: `${SITE_URL}/?s={query}`,
@@ -37,6 +48,7 @@ const jsonLd = [
{ {
'@context': 'https://schema.org', '@context': 'https://schema.org',
'@type': 'NewsMediaOrganization', '@type': 'NewsMediaOrganization',
'@id': `${SITE_URL}/#org`,
name: SITE_TITLE, name: SITE_TITLE,
url: SITE_URL, url: SITE_URL,
logo: logoUrl, logo: logoUrl,