Свойство schema.org ?
Содержание: Описание, Какие должны быть типы, В каких типах используется, Какие имеет подсвойства, Ссылка на источник термина, Примеры использования.
Свойство inDefinedTermSet
в Schema.org используется для связи термина с определенным набором терминов, который называется DefinedTermSet
. Это свойство позволяет указать, к какому конкретному набору относится данный термин, что помогает структурировать информацию и улучшить понимание контекста.
Использование inDefinedTermSet
важно в тех случаях, когда необходимо организовать и классифицировать термины, чтобы они могли быть правильно интерпретированы как людьми, так и машинами. Например, в различных областях знаний или в специализированных темах могут существовать группы терминов, которые имеют особое значение и взаимосвязи. Связывая термин с его набором, мы создаем четкую иерархию и контекст, что упрощает поиск и использование информации.
Таким образом, inDefinedTermSet
помогает обеспечить более точное и структурированное представление данных, что может быть полезно в таких областях, как семантический веб, управление знаниями и контентом, а также в других сферах, где важна точность и однозначность терминологии.
Пример заметки или HTML разметки.
<div>
<div>
<h1><a href="http://openjurist.org/dictionary/Ballentine">Ballentine's Law Dictionary</a></h1>
</div>
<div>
<h2>Dictionary term</h2>
Name: calendar year<br/>
Description: The period from January 1st to December 31st, inclusive, of any year.<br/>
In Dictionary: Ballentine's Law Dictionary
</div>
<div>
<h2>Dictionary term</h2>
Name: schema<br/>
Description: A representation of a plan or theory in the form of an outline or model.<br/>
In Dictionary: Ballentine's Law Dictionary
</div>
</div>
Пример, закодированный в формате Microdata, встроенный в HTML.
<div>
<div itemscope itemtype="https://schema.org/DefinedTermSet">
<link itemprop="additionalType" href="https://schema.org/Book">
<h1><a itemprop="url" href="http://openjurist.org/dictionary/Ballentine"><span itemprop="name">Ballentine's Law Dictionary</span></a></h1>
</div>
<div itemscope itemtype="https://schema.org/DefinedTerm">
<h2>Dictionary term</h2>
<link itemprop="url" href="http://openjurist.org/dictionary/Ballentine/term/calendar-year"/>
Name: <span itemprop="name">calendar year</span><br/>
Description: <span itemprop="description">The period from January 1st to December 31st, inclusive, of any year.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link itemprop="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
<div itemscope itemtype="https://schema.org/DefinedTerm">
<h2>Dictionary term</h2>
<link itemprop="url" href="http://openjurist.org/dictionary/Ballentine/term/schema"/>
Name: <span itemprop="name">schema</span><br/>
Description: <span itemprop="description">A representation of a plan or theory in the form of an outline or model.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link itemprop="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
</div>
Пример, закодированный в формате RDFa, встроенный в HTML.
<div vocab="https://schema.org/">
<div typeof="DefinedTermSet Book">
<h1><a property="url" href="http://openjurist.org/dictionary/Ballentine"><span property="name">Ballentine's Law Dictionary</span></a></h1>
</div>
<div typeof="DefinedTerm">
<h2>Dictionary term</h2>
<link property="url" href="http://openjurist.org/dictionary/Ballentine/term/calendar-year"/>
Name: <span property="name">calendar year</span><br/>
Description: <span property="description">The period from January 1st to December 31st, inclusive, of any year.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link property="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
<div typeof="DefinedTerm">
<h2>Dictionary term</h2>
<link propery="url" href="http://openjurist.org/dictionary/Ballentine/term/schema"/>
Name: <span property="name">schema</span><br/>
Description: <span property="description">A representation of a plan or theory in the form of an outline or model.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link property="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
</div>
Пример, закодированный в формате JSON-LD в теге <script> HTML.
[
{
"@context": "https://schema.org/"
},
{
"@type": ["DefinedTermSet","Book"],
"@id": "http://openjurist.org/dictionary/Ballentine",
"name": "Ballentine's Law Dictionary"
},
{
"@type": "DefinedTerm",
"@id": "http://openjurist.org/dictionary/Ballentine/term/calendar-year",
"name": "calendar year",
"description": "The period from January 1st to December 31st, inclusive, of any year.",
"inDefinedTermSet": "http://openjurist.org/dictionary/Ballentine"
},
{
"@type": "DefinedTerm",
"@id": "http://openjurist.org/dictionary/Ballentine/term/schema",
"name": "schema",
"description": "A representation of a plan or theory in the form of an outline or model.",
"inDefinedTermSet": "http://openjurist.org/dictionary/Ballentine"
}
]
Структурированное представление примера JSON-LD.
Пример заметки или HTML разметки.
<div>
<h1>Occupation Term defined by <a href="http://onetonline.org">O*Net Online</a></h1>
<h2>51-6042.00 - Shoe Machine Operators and Tenders</h2>
Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.
</div>
Пример, закодированный в формате Microdata, встроенный в HTML.
<div itemscope itemtype="https://schema.org/DefinedTerm">
<h1>Occupation Term defined by <a itemprop="inDefinedTermSet" href="http://onetonline.org">O*Net Online</a></h1>
<h2><span itemprop="termCode">51-6042.00</span> - <span itemprop="name">Shoe Machine Operators and Tenders</span></h2>
<span itemprop="description">Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.</span>
</div>
Пример, закодированный в формате RDFa, встроенный в HTML.
<div vocab="https://schema.org/" typeof="DefinedTerm">
<h1>Occupation Term defined by <a property="inDefinedTermSet" href="http://onetonline.org">O*Net Online</a></h1>
<h2><span property="termCode">51-6042.00</span> - <span property="name">Shoe Machine Operators and Tenders</span></h2>
<span property="description">Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.</span>
</div>
Пример, закодированный в формате JSON-LD в теге <script> HTML.
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"name": "Shoe Machine Operators and Tenders",
"termCode": "51-6042.00",
"description": "Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.",
"inDefinedTermSet": "http://onetonline.org"
}
Структурированное представление примера JSON-LD.