Google이 제안한 기사 구조화 데이터를 살펴본 결과 새로운 필수 및 권장 필드가 있으며 지난 주에는 없었습니다. 여기 링크가 있습니다:
https://developers.google.com/structured-data/rich-snippets/articles
목록의 첫 번째 속성은 다음과 같습니다.
- mainEntityOfPage. @ id (권장)
나는 재산의 가치가 무엇인지 이해하지 못합니까? 이 속성은 무엇입니까? 다음에 대한 링크입니까?
.. 또는 현재 블로그 게시물에 대한 링크 :
그들은 샘플 코드에 이것을 가지고 있습니다 :
<meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="https://google.com/article" />
현재 가지고있는 것은 아직 테스트 도구의 규칙을 준수하지 않습니다. 필요한 모든 속성을 추가하고 동시에 권장 속성을 추가하려고 여전히 바쁩니다.
<div itemscope itemtype="http://schema.org/BlogPosting">
<h1 itemprop="headline">
<a href="http:///www.example.com/blog/1001/my-blog-article" itemprop="url">My Blog Article</a>
</h1>
<p>Written by
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Mase Kind</span>
</span> on
<time itemprop="datePublished" datetime="2015-11-16T15:30:00+02:00">November 16, 2015</time>
<meta itemprop="dateModified" content="2015-12-10T12:29:00+02:00" />
<div itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<div itemprop="logo" itemscope itemtype="http://schema.org/ImageObject"></div>
<meta itemprop="name" content="My Company Name" />
</div>
</p>
<div itemprop="articleBody">
<p>first article body</p>
</div>
</div>
나는 또한 내 문서에 이것을 가지고있다 :
<body itemscope itemtype="http://schema.org/WebPage">
...
</body>
이것은 Google이 제공 한 코드 샘플과 어떤 방식으로 충돌합니까?