2015-01-12 52 views
0

某人如何將模式應用於已完成項目的列表,例如由建築公司完成的項目列表。將RDFa應用於列表已完成項目的位置

比方說,你有被完成的項目,包括信息,如日期,地點,描述一個列表等

我不知道這是否是必然認爲是CreativeWork或廣場。我正在考慮使用一般的ItemList/Item屬性,但不確定它是否有很多值。所以說了這一點,誰會希望這是有益的或值得申請?

編輯:

爲了詳細說明,這裏是一些代碼與問題對應:

<section class="work-listing"> 
    <h1>List of completed projects</h1> 

    <article class="completed-work" vocab="http://schema.org/" typeof="????"> 
     <h2 property="name">The Empire State Building</h2> 
     <ul> 
      <li><strong>Location</strong> New York, New York</li> 
      <li><strong>Completed</strong> 2010</li> 
      <li><strong>Architect</strong> William F. Lamb</li> 
     </ul> 
     <p property="about">The Empire State Building is a 103-story skyscraper located in Midtown Manhattan, New York City.</p> 
    </article> 

    <article class="completed-work" vocab="http://schema.org/" typeof="??">...</article> 
</section> 

我已經考慮了以下幾點:

  • 項目
  • 文章
  • 創意工作
  • 事件

我覺得這種情況對每一類調用這些一點點,但不會完全被歸類爲其中任何一個。我也很難寫出如何寫出項目的一些細節,因爲這將取決於父母的決定。

此外,我知道我在上面的例子中使用了ESB,但真正的項目並不會真正落入HistoricalLandmarkorBuilding。

謝謝!

回答

0

對於任何人都好奇,我結束了創造性工作會:

<article class="completed-work" vocab="http://schema.org/" typeof="CreativeWork"> 
     <h2 property="name">The Empire State Building</h2> 
     <ul> 
      <li><strong>Location</strong> <span property="contentLocation">New York, New York</li> 
      <li><strong>Completed</strong> <span property="dateCreated">2010</span></li> 
      <li><strong>Architect</strong> <span property="creator">William F. Lamb</span></li> 
     </ul> 
     <p property="description">The Empire State Building is a 103-story skyscraper located in Midtown Manhattan, New York City.</p> 
    </article> 
相關問題