In Schema.org, I do not understand the difference between name and headline. I try to apply it to a page that there is only a blog post. In this case, what would be the name and the headline?
I tried the Google tool google.com/webmasters/markup-helper/ and I selected the h1 of the post as the name.
Then I go to the testing tool: https://search.google.com/structured-data/testing-tool and it gives me an error in red:
A value for the headline field is required
So, it seems that I can not ignore one of them.
What is the name and headline in a blog post?
<div itemscope itemtype="http://schema.org/Article" class="entrada">
<img itemprop="image" class="imatge" src="../externs/img/1.png">
<h1 itemprop="name" class="titol_post">Title of the post</h1>
<div itemprop="datePublished" content="2016-01-07" class="data"></div>
<div itemprop="articleBody" class="text">
<p>This is the body of the post</p>
</div>
<span itemprop="author" itemscope itemtype="http://schema.org/Person"><h2 itemprop="name">NM.</h2></span>
</div><!-- end esquema Article -->
itempropattribute is, semantically, the same as if using multiple elements (each with its ownitemprop), repeating the value. -- So whenever two or more properties (of the same entity) would have the same value, you can use them together in oneitemprop. – unor Aug 18 '16 at 16:28