Not Appropriate Usage Examples
From getSchema
This Page Semantic Annotations
- type = http://schema.org/CreativeWork
- name = Not Appropriate Usage Examples
- url = http://getschema.org/index.php?title=Not_Appropriate_Usage_Examples
- inLanguage = en
- discussionUrl = http://getschema.org/index.php?title=Talk:Not_Appropriate_Usage_Examples
- publisher = http://binarypark.org
- publishingPrinciples = getSchema:About
- dateModified = 2012-12-07
- interactionCount = 351,325
- version = 1296
Property genre is Text intended and not URL
As seen on IMDB http://www.imdb.com/title/tt1194173/ --Admin66 13:16, 15 August 2012 (CEST)
genre is a Schema.org property defined by CreativeWork class and its expected type is Text. The HTML5 Microdata specification describes the a.
- If the element is an
a,area, orlinkelement- The attribute must act as it would if it was reflecting the element's
hrefcontent attribute. [1]
<a itemprop="genre" href="/genre/Action">Action</a>
According with the recommendation the RDF representation of the above markup is
:_ schema:genre <http://imdb.com/genre/Action>.
while the intended meaning is
:_ schema:genre "Action".
Therefore we recommend the below markup:
<a href="/genre/Action"> <span itemprop="genre">Action</span> </a>