2017-02-01 1 views
0

私は許してをArticleの中に入れるのは意味がありますか? ArticleEventと書いたほうが意味がありますか?Schema.org記事の中でイベントが許可され、感知されますか?

例:

<div itemscope itemtype="http://schema.org/Article"> 
... 
<div itemprop="articleBody"> 
    <p> 
     Having largely succeeded in stopping a rout of 
     Libya's rebels, the inchoate coalition attacking 
     Col. Muammar el-Qaddafi's forces remains divided 
     over the ultimate goal — and exit strategy — 
     of what officials acknowledged Thursday would be 
     a military campaign that could last for weeks. 
    </p> 
    <div itemscope itemtype="http://schema.org/EducationEvent"> 
     <meta itemprop="description" content="This is the Eventdescription"> 
     <meta itemprop="startDate" content="2017-02-01T00:00"> 
     <meta itemprop="endDate" content="2017-02-01T00:00"> 
     <meta itemprop="duration" content="0000-00-00T08:00"> 
     <link itemprop="url" content="http://www.google.com" rel="author"/> 
     <a itemprop="url" href="www.google.com"><span itemprop="name" style="display:block;"><strong>Meine Schulung</strong></span></a> 
     <div itemprop="location" itemscope itemtype="http://schema.org/PostalAddress"> 
     <span itemprop="name" style="display:block;"><strong>Schulung GmbH</strong></span> 
      <span itemprop="streetAddress" style="display:block;">myStreet</span> 
      <div> 
       <span itemprop="addressLocality" style="display:block;">Berlin</span>, 
       <span itemprop="addressRegion"style="display:block;">Berlin</span> 
      </div> 
      <span itemprop="postalCode"style="display:block;">1036723</span> 
      <span itemprop="addressCountry"style="display:block;">Germany</span> 
     </div> 
    </div> 
</div> 

答えて

2

あなたは(itempropで)プロパティを使用しない場合、それはどのように巣ミクロ項目を重要ではありません。

プロパティを使用しないため、ArticleEducationEventはどのような方法でも関連付けられていません。

あなたの関係がどうなっているかわかりません。たとえば、EducationEventについてArticleと書く場合は、about property

<div itemscope itemtype="http://schema.org/Article"> 
    <div itemprop="about" itemscope itemtype="http://schema.org/EducationEvent"> 
    </div> 
</div> 
を使用できます。
関連する問題