微資料
的規格,可在 HTML 文件中嵌入機器可讀取的資料。微資料包含根據詞彙定義的名稱/值組合 (稱為 items
)。schema.org 提供一系列常用的標記詞彙。
基本語法包含用來定義項目的 itemscope
屬性,以及用來描述其中一項屬性的 itemprop
屬性。類型使用 itemtype
屬性指定,並會假設在所選詞彙中定義的值。舉例來說,schema.org
定義了 http://schema.org/Person
或 http://schema.org/PostalAddress
等類型。
以下範例 (來自維基百科) 說明如何使用微資料來描述人物:
<section itemscope itemtype="http://schema.org/Person">
Hello, my name is
<span itemprop="name">John Doe</span>,
I am a
<span itemprop="jobTitle">Graduate research assistant</span>
at the
<span itemprop="affiliation">University of Dreams</span>
My friends call me
<span itemprop="additionalName">Johnny</span>
You can visit my homepage at
<a href="http://www.example.com.com" itemprop="url">www.example.com</a>
<section itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
I live at
<span itemprop="streetAddress">1234 Peach Drive</span>
<span itemprop="addressLocality">Warner Robins</span>
<span itemprop="addressRegion">Georgia</span>.
</section>
</section>
您可以使用結構定義驗證工具工具對標記進行偵錯,並根據支援的結構定義進行驗證。