微資料是一種規格,可在 HTML 文件中嵌入機器可讀資料。微資料由名稱/值組合 (稱為 items
) 組成,這些組合會根據字彙定義。schema.org 提供常用的標記詞彙集合。
基本語法包含 itemscope
屬性,用於定義項目,以及 itemprop
屬性,用於描述項目的其中一個屬性。類型會使用 itemtype
屬性指定,並可假設所選詞彙中定義的值。舉例來說,schema.org
定義了 http://schema.org/Person
或 http://schema.org/PostalAddress
等類型。
以下範例 (取自 Wikipedia) 說明如何使用微資料描述人物:
<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>
請使用結構定義驗證工具對標記進行偵錯,並根據支援的結構定義驗證標記。