Свойство schema.org ?
Содержание: Описание, Обратное свойство, Какие должны быть типы, В каких типах используется, Примеры использования.
Свойство offeredBy
в Schema.org используется для указания организации или человека, который делает предложение о каком-либо товаре или услуге. Это свойство помогает четко обозначить, кто является источником предложения, что может быть полезно для пользователей и поисковых систем.
offeredBy
обычно применяется в контексте структурированных данных на веб-страницах, где представлена информация о товарах, услугах или предложениях. Например, если на сайте размещено предложение о продаже товара, свойство offeredBy
указывает на компанию или индивидуального продавца, который предлагает этот товар. Это помогает создать более ясное представление о том, кто стоит за предложением, что может повысить доверие со стороны потенциальных покупателей.
Использование offeredBy
также улучшает индексирование контента поисковыми системами. Когда поисковые системы понимают, кто предлагает продукт или услугу, это может влиять на отображение информации в результатах поиска, а также на возможность отображения расширенных сниппетов, которые могут включать информацию о продавце.
Таким образом, offeredBy
является важным инструментом для структурирования информации о предложениях на веб-сайтах, что способствует лучшему пониманию контента как пользователями, так и поисковыми системами.
Обратное свойство: makesOffer
Пример заметки или HTML разметки.
<!-- Uses both the "Book" and "Product" item types to support Offer relationships -->
<div>
<h3>Le concerto</h3>
<div>
Bibliographic Details
<table>
<tr>
<th>Main Author: </th>
<td>Ferchault, Guy</td>
</tr>
</table>
</div>
</div>
<div>
Holdings details from Anytown City Library
<table>
<!-- Example of a copy available for loan -->
<tr>
<th>Copy </th>
<td>Available
<div>Barcode: <span>CONC91000937</span></div>
<div>Call number: <span>780 R2</span></div>
<div>Library: <span>Anytown City Library</span></div>
</td>
</tr>
<table>
</div>
Пример, закодированный в формате Microdata, встроенный в HTML.
<!-- Uses both the "Book" and "Product" item types to support Offer relationships -->
<div itemscope itemtype="https://schema.org/Book" itemid="#record">
<link itemprop="additionalType" href="https://schema.org/Product"/>
<h3 itemprop="name">Le concerto</h3>
<div>
Bibliographic Details
<table>
<tr>
<th>Main Author: </th>
<td itemprop="author">Ferchault, Guy</td>
</tr>
</table>
</div>
</div>
<div>
Holdings details from Anytown City Library
<table>
<!-- Example of a copy available for loan -->
<tr itemscope itemtype="https://schema.org/Offer">
<th>Copy </th>
<td>Available
<link itemprop="availability" href="https://schema.org/InStock">
<div>Barcode: <span itemprop="serialNumber">CONC91000937</span></div>
<div>Call number: <span itemprop="sku">780 R2</span></div>
<div>Library: <span itemprop="offeredBy" itemscope itemtype="https://schema.org/Library" itemid="http://library.anytown.gov.uk" >Anytown City Library</span></div>
<link itemprop="businessFunction" href="http://purl.org/goodrelations/v1#LeaseOut">
<link itemprop="itemOffered" href="#record">
</td>
</tr>
</table>
</div>
Пример, закодированный в формате RDFa, встроенный в HTML.
<!-- Uses both the "Book" and "Product" item types to support Offer relationships -->
<div vocab="https://schema.org/" resource="#record" typeof="Book Product">
<h3 property="name">
Le concerto
</h3>
<div>
Bibliographic Details
<table>
<tr>
<th>
Main Author:
</th>
<td property="author">
Ferchault, Guy
</td>
</tr>
</table>
</div>
</div>
<div>
Holdings details from Anytown City Library
<table vocab="https://schema.org/">
<!-- Example of a copy available for loan -->
<tr typeof="Offer">
<th>
Copy
</th>
<td>
Available
<div>
Barcode: <span property="serialNumber">CONC91000937</span>
</div>
<div>
Call number: <span property="sku">780 R2</span>
</div>
<div>
Library: <span property="offeredBy" typeof="Library" resource="http://library.anytown.gov.uk">Anytown City Library</span>
</div>
</td>
</tr>
</table>
</div>
Пример, закодированный в формате JSON-LD в теге <script> HTML.
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@id": "#record",
"@type": "Book",
"additionalType": "Product",
"name": "Le concerto",
"author": "Ferchault, Guy",
"offers":{
"@type": "Offer",
"availability": "https://schema.org/InStock",
"serialNumber": "CONC91000937",
"sku": "780 R2",
"offeredBy": {
"@type": "Library",
"@id": "http://library.anytown.gov.uk",
"name": "Anytown City Library"
},
"businessFunction": "http://purl.org/goodrelations/v1#LeaseOut",
"itemOffered": "#record"
}
}
</script>
Структурированное представление примера JSON-LD.
Пример заметки или HTML разметки.
<!-- A Library Example with Holdings -->
<body>
<h1>In search of Haydn [videorecording] / Phil Grabsky Films.com & Seventh Art Productions in association with Sky Art HD ; filmed, written and directed by Phil Grabsky.</h1>
<h2>Record details</h2>
<ul>
<li><strong>Publisher:</strong>[Brighton, UK] :Seventh Art Productions,[2011]</li>
</ul>
<table>
<tr><td>Subject:</td>
<td>Haydn, Joseph, 1732-1809.<br>Composers > Austria > Biography.<br></td>
</tr>
<tr><td>Genre:</td>
<td>Documentary films.<br></td>
</tr>
</table>
<table>
<tr><th>Location</th><th>Call Number / Copy Notes</th><th>Barcode</th><th>Shelving Location</th><th>Status</th><th>Due Date</th></tr>
<tr>
<td><a href="/eg/opac/library/MRC">Music Resource Centre</a></td>
<td>ML 410 H4 I5 2011</td>
<td>30007008812793</td>
<td>Circulation</td>
<td> </td>
</tr>
</table>
</body>
Пример, закодированный в формате Microdata, встроенный в HTML.
<body itemscope itemtype='https://schema.org/Movie'>
<link itemprop="url" href="#schemarecord"/>
<link itemprop="additionalType" href="https://schema.org/Product"/>
<h1 itemprop="name">In search of Haydn [videorecording] / Phil Grabsky Films.com & Seventh Art Productions in association with Sky Art HD ; filmed, written and directed by Phil Grabsky.</h1>
<h2>Record details</h2>
<ul>
<li><div itemprop="publisher" itemscope itemtype="https://schema.org/Organization"><strong>Publisher:</strong> <span ><span itemprop="location">[Brighton, UK] :</span> <span itemprop="name">Seventh Art Productions,</span></span>
</div>
<span itemprop="datePublished" content="2011-01-01">[2011]</span></li>
</ul>
<table>
<tr><td>Subject:</td>
<td><span itemprop="about">Haydn, Joseph, 1732-1809.<br></span><span itemprop="about">Composers > Austria > Biography.<br></span></td>
</tr>
<tr><td>Genre:</td>
<td><span itemprop="about">Documentary films.<br></span></td>
</tr>
</table>
<table>
<tr><th>Location</th><th>Call Number / Copy Notes</th><th>Barcode</th><th>Shelving Location</th><th>Status</th></tr>
<tr itemprop="offers" itemscope itemtype="https://schema.org/Offer">
<td><a itemprop="offeredBy" itemscope itemtype="https://schema.org/Library" href="/eg/opac/library/MRC"><span itemprop="name">Music Resource Centre</span></a></td>
<td><span itemprop="sku">ML 410 H4 I5 2011</span></td>
<td itemprop="serialNumber">30007008812793</td>
<td itemprop="availableAtOrFrom">Circulation</td>
<td> <link itemprop="businessFunction" href="http://purl.org/goodrelations/v1#LeaseOut">
<meta itemprop="price" content="0.00">
<link itemprop="availability" href="https://schema.org/InStock">
</td>
</tr>
</table>
</body>
Пример, закодированный в формате RDFa, встроенный в HTML.
<body vocab="https://schema.org" typeof='Movie Product' resource="#schemarecord">
<h1 property="name">In search of Haydn [videorecording] / Phil Grabsky Films.com & Seventh Art Productions in association with Sky Art HD ; filmed, written and directed by Phil Grabsky.</h1>
<h2>Record details</h2>
<ul>
<li><strong>Publisher:</strong> <span property="publisher" typeof="Organization"><span property="location">[Brighton, UK] :</span> <span property="name">Seventh Art Productions,</span></span> <span property="datePublished" content="2011-01-01">[2011]</span></li>
</ul>
<table>
<tr><td>Subject:</td>
<td><span property="about">Haydn, Joseph, 1732-1809.<br></span><span property="about">Composers > Austria > Biography.<br></span></td>
</tr>
<tr><td>Genre:</td>
<td><span property="about">Documentary films.<br></span></td>
</tr>
</table>
<table>
<tr><th>Location</th><th>Call Number / Copy Notes</th><th>Barcode</th><th>Shelving Location</th><th>Status</th><th>Due Date</th></tr>
<tr property="offers" typeof="Offer">
<td><a property="offeredBy" typeof="Library" href="/eg/opac/library/MRC"><span property="name">Music Resource Centre</span></a></td>
<td><span property="sku">ML 410 H4 I5 2011</span></td>
<td property="serialNumber">30007008812793</td>
<td property="availableAtOrFrom">Circulation</td>
<td> <link property="businessFunction" href="http://purl.org/goodrelations/v1#LeaseOut">
<meta property="price" content="0.00">
<link property="availability" href="https://schema.org/InStock">
</td>
</tr>
</table>
</body>
Пример, закодированный в формате JSON-LD в теге <script> HTML.
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@graph": [
{
"@id": "https://laurentian.concat.ca/eg/opac/library/MRC",
"@type": "Library",
"name": "Music Resource Centre"
},
{
"@id": "https://laurentian.concat.ca/eg/opac/record/2845929#schemarecord",
"@type": ["Movie","Product"],
"about": [
"Composers > Austria > Biography.",
"Haydn, Joseph, 1732-1809.",
"Documentary films."
],
"datePublished": "2011-01-01",
"name": "In search of Haydn [videorecording] / Phil Grabsky Films.com & Seventh Art Productions in association with Sky Art HD ; filmed, written and directed by Phil Grabsky.",
"offers": {
"@type": "Offer",
"availability": "https://schema.org/InStock",
"businessFunction": "http://purl.org/goodrelations/v1#LeaseOut",
"availableAtOrFrom": "Circulation",
"price": "0.00",
"seller": {
"@id": "https://laurentian.concat.ca/eg/opac/library/MRC"
},
"serialNumber": "30007008812793",
"sku": "ML 410 H4 I5 2011"
},
"publisher": {
"@type": "Organization",
"location": "[Brighton, UK] :",
"name": "Seventh Art Productions,"
}
}
]
}
</script>
Структурированное представление примера JSON-LD.