I'm working with microdata and I want to use the keywords for a creativework. The schema specifies that it should be text but do I put each keyword in a separate element with itemprop="keywords" or do I put them all in one keywords element. If I put them all in one element do I use commas as a separator?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

You should create an itemprop element for each keyword as follows:

<div itemscope itemtype="http://schema.org/CreativeWork">
  <span itemprop="name">Resistance 3: Fall of Man</span>
  by <span itemprop="author">Sony</span>.
  Keywords:
  <a href="/tags/game/"><span itemprop="keywords">Game</span></a>,
  <a href="/tags/adult/"><span itemprop="keywords">Adult</span></a>
</div>
link|improve this answer
feedback

I was trying to understand more about microdata here: http://html5doctor.com/microdata/#multiple-properties

schema.org really needs more and better examples. Why didn't they markup their website or their blog? That would have helped a lot. Didn't they think people would get somewhat confused and would have looked at how they'd have done it to their own site?

link|improve this answer
this would work if keywords had a sub schema, as it is keywords support just text. It would look as if you saw the example with members, and this works because members is a property of organizations, and accepts either a member or an organization. take a look at schema.org/Organization to see members and schema.org/CreativeWork to see keywords – Last Rose Studios Mar 16 at 11:59
@LastRoseStudios, I obviously don't really know what I'm talking about. I am having a hard time, like most(emphasis on most) people, understanding using schema.org markup. They need better examples and better explanations. – user969591 Mar 17 at 12:16
@LastRoseStudios, itemprop='keywords' having only one value doesn't sound like it makes sense. Looking at the plural word...you get what I'm saying, right? – user969591 Mar 17 at 12:23
Definitely with you on the vague examples. – Last Rose Studios Mar 17 at 13:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.