first cut at making rdfa (and md) testcases from the schema.org examples
authorDan Brickley <danbri@danbri.org>
Wed, 11 Apr 2012 20:08:24 +0200
changeset 21 a4761ed99160
parent 20 dbc5b5fdbfb1
child 22 39b357d45104
first cut at making rdfa (and md) testcases from the schema.org examples
schema.org/drafts/examples/site/md2rdfa.sh
schema.org/drafts/examples/site/splitexamples.py
schema.org/drafts/examples/site/testcases-all.zip
schema.org/drafts/examples/site/testcases/md.zip
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_1.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_10.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_11.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_12.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_13.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_14.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_15.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_16.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_17.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_18.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_19.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_2.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_20.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_21.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_22.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_23.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_24.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_25.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_3.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_4.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_5.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_6.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_7.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_8.html
schema.org/drafts/examples/site/testcases/md/sdo_eg_md_9.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_1.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_10.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_11.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_12.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_13.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_14.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_15.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_16.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_17.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_18.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_19.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_2.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_20.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_21.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_22.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_23.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_24.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_25.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_3.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_4.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_5.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_6.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_7.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_8.html
schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_9.html
--- a/schema.org/drafts/examples/site/md2rdfa.sh	Wed Apr 11 18:59:00 2012 +0200
+++ b/schema.org/drafts/examples/site/md2rdfa.sh	Wed Apr 11 20:08:24 2012 +0200
@@ -1,5 +1,5 @@
 #!/bin/sh
-
+# (thanks to Niklas!)
 # curl -O https://dvcs.w3.org/hg/webschema/raw-file/0bb6f6823c45/schema.org/drafts/examples/site/examples.txt
 vim -E -s examples.txt <<-EOF
     %s/itemscope itemtype="[^"]*schema.org\/\([^"]\+\)"/typeof="\1"/g
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/splitexamples.py	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,51 @@
+#!/usr/bin/python
+
+import re
+
+def Done(eg, types, i, prefix):
+   if i==0:
+     return
+   print "Done example ",i, "mode: ",prefix 
+   print "Done types: ", types
+   print ""
+   fn = "sdo_eg_"+prefix+"_"+str(i)+".html"
+   f = open("testcases/"+prefix+"/"+fn, 'w+')
+
+   f.write("<!DOCTYPE html>\n")
+   f.write("<html>\n<head>\n<title>Web Schemas TF: Schema.org tests: test "+str(i)+" (format "+prefix+")</title>\n")
+   f.write("</head>\n<body>\n\n")
+   f.write(eg['markup']) # boilerplate? 
+   f.write("\n\n</body>\n</html>\n")
+   f.close()
+
+def Load(fn, prefix):
+  i = 0
+  eg = {}
+  eg_types = []
+  eg_text = ''
+  for l in file(fn):
+    match = re.match(r'TYPES:(.*)$', l)
+    if match:
+      eg['markup'] = eg_text.strip()
+      Done(eg, eg_types, i, prefix)
+      eg = {}
+      i+=1
+      eg_types = [ty.strip() for ty in match.group(1).split(',')]
+    elif 'PRE-MARKUP:' in l:
+      eg_text = ''
+    elif 'WITH MARKUP:' in l:
+      eg['original'] = eg_text.strip()
+      eg_text = ''
+    else:
+      eg_text += l
+  eg['markup'] = eg_text.strip()
+
+
+
+if __name__ == '__main__':
+
+
+  Load('examples.txt', 'md')
+  Load('examples-rdfa.txt', 'rdfa')
+
+  # then: zip -r testcases-all.zip testcases/*
Binary file schema.org/drafts/examples/site/testcases-all.zip has changed
Binary file schema.org/drafts/examples/site/testcases/md.zip has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_1.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 1 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Person">
+  <span itemprop="name">Jane Doe</span>
+  <img src="janedoe.jpg" itemprop="image" />
+
+  <span itemprop="jobTitle">Professor</span>
+  <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+    <span itemprop="streetAddress">
+      20341 Whitworth Institute
+      405 N. Whitworth
+    </span>
+    <span itemprop="addressLocality">Seattle</span>,
+    <span itemprop="addressRegion">WA</span>
+    <span itemprop="postalCode">98052</span>
+  </div>
+  <span itemprop="telephone">(425) 123-4567</span>
+  <a href="mailto:jane-doe@xyz.edu" itemprop="email">
+    jane-doe@xyz.edu</a>
+
+  Jane's home page:
+  <a href="www.janedoe.com" itemprop="url">janedoe.com</a>
+
+  Graduate students:
+  <a href="www.xyz.edu/students/alicejones.html" itemprop="colleagues">
+    Alice Jones</a>
+  <a href="www.xyz.edu/students/bobsmith.html" itemprop="colleagues">
+    Bob Smith</a>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_10.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 10 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Product">
+  <img itemprop="image" src="dell-30in-lcd.jpg" />
+  <span itemprop="name">Dell UltraSharp 30" LCD Monitor</span>
+
+  <div itemprop="aggregateRating"
+    itemscope itemtype="http://schema.org/AggregateRating">
+    <span itemprop="ratingValue">87</span>
+    out of <span itemprop="bestRating">100</span>
+    based on <span itemprop="ratingCount">24</span> user ratings
+  </div>
+
+  <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
+    <span itemprop="lowPrice">$1250</span>
+    to <span itemprop="highPrice">$1495</span>
+    from <span itemprop="offerCount">8</span> sellers
+
+  Sellers:
+  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+    <a itemprop="url" href="save-a-lot-monitors.com/dell-30.html">
+     Save A Lot Monitors - $1250</a>
+  </div>
+  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+    <a itemprop="url" href="jondoe-gadgets.com/dell-30.html">
+     Jon Doe's Gadgets - $1350</a>
+  </div>
+  ...
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_11.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,65 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 11 (format md)</title>
+</head>
+<body>
+
+<body itemscope itemtype="http://schema.org/WebPage">
+...
+<div itemprop="breadcrumb">
+  <a href="category/books.html">Books</a> >
+  <a href="category/books-literature.html">Literature & Fiction</a> >
+  <a href="category/books-classics">Classics</a>
+</div>
+
+<div itemscope itemtype="http://schema.org/Book">
+
+<img itemprop="image" src="catcher-in-the-rye-book-cover.jpg" />
+<span itemprop="name">The Catcher in the Rye</span> -
+ <link itemprop="bookFormat" href="http://schema.org/Paperback">Mass Market Paperback
+by <a itemprop="author" href="/author/jd_salinger.html">J.D. Salinger</a>
+
+<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
+  <span itemprop="ratingValue">4</span> stars -
+  <span itemprop="reviewCount">3077</span> reviews
+</div>
+
+<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+  Price: <span itemprop="price">$6.99</span>
+  <meta itemprop="priceCurrency" content="USD" />
+  <link itemprop="availability" href="http://schema.org/InStock">In Stock
+</div>
+
+Product details
+<span itemprop="numberOfPages">224</span> pages
+Publisher: <span itemprop="publisher">Little, Brown, and Company</span> -
+ <meta itemprop="datePublished" content="1991-05-01">May 1, 1991
+Language: <span itemprop="inLanguage">English</span>
+ISBN-10: <span itemprop="isbn">0316769487</span>
+
+Reviews:
+
+<div itemprop="reviews" itemscope itemtype="http://schema.org/Review">
+  <span itemprop="reviewRating">5</span> stars -
+  <b>"<span itemprop="name">A masterpiece of literature</span>" </b>
+  by <span itemprop="author">John Doe</span>,
+  Written on <meta itemprop="datePublished" content="2006-05-04">May 4, 2006
+  <span itemprop="reviewBody">I really enjoyed this book. It captures the essential
+  challenge people face as they try make sense of their lives and grow to adulthood.</span>
+</div>
+
+<div itemprop="reviews" itemscope itemtype="http://schema.org/Review">
+  <span itemprop="reviewRating">4</span> stars -
+  <b>"<span itemprop="name">A good read.</span>" </b>
+  by <span itemprop="author">Bob Smith</span>,
+  Written on <meta itemprop="datePublished" content="2006-06-15">June 15, 2006
+  <span itemprop="reviewBody">Catcher in the Rye is a fun book. It's a good book to read.</span>
+</div>
+
+</div>
+...
+</body>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_12.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 12 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Recipe">
+  <span itemprop="name">Mom's World Famous Banana Bread</span>
+  By <span itemprop="author">John Smith</span>,
+  <meta itemprop="datePublished" content="2009-05-08">May 8, 2009
+  <img itemprop="image" src="bananabread.jpg" />
+
+  <span itemprop="description">This classic banana bread recipe comes
+  from my mom -- the walnuts add a nice texture and flavor to the banana
+  bread.</span>
+
+  Prep Time: <meta itemprop="prepTime" content="PT15M">15 minutes
+  Cook time: <meta itemprop="cookTime" content="PT1H">1 hour
+  Yield: <span itemprop="recipeYield">1 loaf</span>
+
+  <div itemprop="nutrition"
+    itemscope itemtype="http://schema.org/NutritionInformation">
+    Nutrition facts:
+    <span itemprop="calories">240 calories</span>,
+    <span itemprop="fatContent">9 grams fat</span>
+  </div>
+
+  Ingredients:
+  - <span itemprop="ingredients">3 or 4 ripe bananas, smashed</span>
+  - <span itemprop="ingredients">1 egg</span>
+  - <span itemprop="ingredients">3/4 cup of sugar</span>
+  ...
+
+  Instructions:
+  <span itemprop="recipeInstructions">
+  Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add
+  the flour last. Pour the mixture into a loaf pan and bake for one hour.
+  </span>
+
+  140 comments:
+  <meta itemprop="interactionCount" content="UserComments:140" />
+  From Janel, May 5 -- thank you, great recipe!
+  ...
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_13.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,86 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 13 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/MusicGroup">
+
+<h1 itemprop="name">Foo Fighters</h1>
+
+
+<div itemprop="video" itemscope itemtype="http://schema.org/VideoObject">
+  <h2>Video: <span itemprop="name">Interview with the Foo Fighters</span></h2>
+  <meta itemprop="duration" content="T1M33S" />
+  <meta itemprop="thumbnail" content="foo-fighters-interview-thumb.jpg" />
+  <object ...>
+    <param ...>
+    <embed type="application/x-shockwave-flash" ...>
+  </object>
+  <span itemprop="description">Catch this exclusive interview with
+    Dave Grohl and the Food Fighters about their new album, Rope.</span>
+</div>
+
+
+<h2>Songs</h2>
+
+<div itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
+  <span itemprop="name">Rope</span>
+  <meta itemprop="url" content ="foo-fighters-rope.html">
+  Length: <meta itemprop="duration" content="PT4M5S">4:05 -
+  14300 plays<meta itemprop="interactionCount" content="UserPlays:14300" />
+  <a href="foo-fighters-rope-play.html" itemprop="audio">Play</a>
+  <a href="foo-fighters-rope-buy.html" itemprop="offers">Buy</a>
+  From album: <a href="foo-fighters-wasting-light.html"
+    itemprop="inAlbum">Wasting Light</a>
+</div>
+
+<div itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
+  <span itemprop="name">Everlong</span>
+  <meta itemprop="url" content ="foo-fighters-everlong.html">
+  Length: <meta itemprop="duration" content="PT6M33S">6:33 -
+  <span itemprop="playCount">11700</span> plays
+  <a href="foo-fighters-everlong-play.html" itemprop="audio">Play</a>
+  <a href="foo-fighters-everlong-buy.html" itemprop="offers">Buy</a>
+  From album: <a href="foo-fighters-color-and-shape.html"
+    itemprop="inAlbum">The Color And The Shape</a>
+</div>
+
+
+<h2>Upcoming shows</h2>
+
+<div itemprop="events" itemscope itemtype="http://schema.org/Event">
+  <a href="foo-fighters-may20-fedexforum" itemprop="url">
+    <span itemprop="name">FedExForum</span>
+  </a>
+  <span itemprop="location">Memphis, TN, US</span>
+  <meta itemprop="startDate" content="2011-05-20">May 20
+  <a href="ticketmaster.com/foofighters/may20-2011" itemprop="offers">Buy tickets</a>
+</div>
+
+<div itemprop="events" itemscope itemtype="http://schema.org/Event">
+  <a href="foo-fighters-may23-midamericacenter" itemprop="url">
+    <span itemprop="name">Mid America Center</span>
+  </a>
+  <span itemprop="location">Council Bluffs, IA, US</span>
+  <meta itemprop="startDate" content="2011-05-23">May 23
+  <a href="ticketmaster.com/foofighters/may23-2011" itemprop="offers">Buy tickets</a>
+</div>
+
+<h2><a href="foo-fighters-photos">28 Photos</a></h2>
+<a href="foofighters-1.jpg" itemprop="image"><img src="foofighters-thumb1.jpg" /></a>
+<a href="foofighters-2.jpg" itemprop="image"><img src="foofighters-thumb2.jpg" /></a>
+<a href="foofighters-3.jpg" itemprop="image"><img src="foofighters-thumb3.jpg" /></a>
+
+
+<h2>Comments:</h2>
+Excited about seeing them in concert next week. -Lawrence , Jan 23
+I dig their latest single. -Mary, Jan 19
+<meta itemprop="interactionCount" content="UserComments:18" />
+Showing 1-2 of 18 comments. <a href="foofighters-comments">More</a>
+
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_14.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 14 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/ItemList">
+  <meta itemprop="mainContentOfPage" content="true"/>
+  <h2 itemprop="name">Top 10 laptops</h2><br>
+  <meta itemprop="itemListOrder" content="Descending" />
+  <p>1. <span itemprop="itemListElement">HP Pavilion dv6-6013cl</span></p>
+  <p>2. <span itemprop="itemListElement">Dell XPS 15 (Sandy Bridge)</span></p>
+  <p>3. <span itemprop="itemListElement">Lenovo ThinkPad X220</span></p>
+  ...
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_15.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 15 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Movie">
+
+<h1 itemprop="name">Pirates of the Carribean: On Stranger Tides (2011)</h1>
+<span itemprop="description">Jack Sparrow and Barbossa embark on a quest to
+ find the elusive fountain of youth, only to discover that Blackbeard and
+ his daughter are after it too.</span>
+Director:
+ <div itemprop="director" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Rob Marshall</span>
+</div>
+Writers:
+ <div itemprop="author" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Ted Elliott</span>
+</div>
+<div itemprop="author" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Terry Rossio</span>
+</div>
+, and 7 more credits
+Stars:
+ <div itemprop="actors" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Johnny Depp</span>,
+ </div>
+<div itemprop="actors" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Penelope Cruz</span>,
+</div>
+<div itemprop="actors" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Ian McShane</span>
+</div>
+<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
+  <span itemprop="ratingValue">8</span>/<span itemprop="bestRating">10</span> stars from
+  <span itemprop="ratingCount">200</span> users.
+  Reviews: <span itemprop="reviewCount">50</span>.
+</div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_16.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 16 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Table">
+  <meta itemprop="mainContentOfPage" content="true"/>
+  <h2 itemprop="about">list of presidents</h2>
+  <table>
+    <tr><th>President</th><th>Party</th><tr>
+    <tr>
+      <td>George Washington (1789-1797)</td>
+      <td>no party</td>
+    </tr>
+    <tr>
+      <td>John Adams (1797-1801)</td>
+      <td>Federalist</td>
+    </tr>
+    ...
+  </table>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_17.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 17 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="schema.org/PostalAddress">
+ <span itemprop="name">Google Inc.</span>
+ P.O. Box<span itemprop="postOfficeBoxNumber">1234</span>
+ <span itemprop="addressLocality">Mountain View</span>,
+ <span itemprop="addressRegion">CA</span>
+ <span itemprop="postalCode">94043</span>
+ <span itemprop="addressCountry">United States</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_18.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 18 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/CreativeWork">
+<img itemprop="image" src="videogame.jpg" />
+<span itemprop="name">Resistance 3: Fall of Man</span>
+by <span itemprop="author">Sony</span>,
+Platform: Playstation 3
+Rated:<span itemprop="contentRating">Mature</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_19.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 19 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="schema.org/ImageObject">
+  <h2 itemprop="name">Beach in Mexico</h2>
+  <img src="mexico-beach.jpg" itemprop="contentURL" />
+
+  By <span itemprop="author">Jane Doe</span>
+  Photographed in
+    <span itemprop="contentLocation">Puerto Vallarta, Mexico</span>
+  Date uploaded:
+    <meta itemprop="datePublished" content="2008-01-25">Jan 25, 2008
+
+  <span itemprop="description">I took this picture while on vacation last year.</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_2.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 2 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/LocalBusiness">
+  <h1><span itemprop="name">Beachwalk Beachwear & Giftware</span></h1>
+  <span itemprop="description"> A superb collection of fine gifts and clothing
+  to accent your stay in Mexico Beach.</span>
+  <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+    <span itemprop="streetAddress">3102 Highway 98</span>
+    <span itemprop="addressLocality">Mexico Beach</span>,
+    <span itemprop="addressRegion">FL</span>
+  </div>
+  Phone: <span itemprop="telephone">850-648-4200</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_20.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 20 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/MusicPlaylist">
+  <span itemprop="name">Classic Rock Playlist</span>
+  <meta itemprop="numTracks" content="5"/>
+
+  <div itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
+    1.<span itemprop="name">Sweet Home Alabama</span> -
+    <span itemprop="byArtist">Lynard Skynard</span>
+    <meta content="sweet-home-alabama" itemprop="url" />
+    <meta content="PT4M45S" itemprop="duration" />
+    <meta content="Second Helping" itemprop="inAlbum" />
+   </div>
+
+  <div itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
+    2.<span itemprop="name">Shook you all Night Long</span> -
+    <span itemprop="byArtist">AC/DC</span>
+    <meta content="shook-you-all-night-long" itemprop="url" />
+    <meta content="PT3M32S" itemprop="duration" />
+    <meta content="Back In Black" itemprop="inAlbum" />
+  </div>
+
+  <div itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
+    3.<span itemprop="name">Sharp Dressed Man</span> -
+    <span itemprop="byArtist">ZZ Top</span>
+    <meta content="sharp-dressed-man" itemprop="url" />
+    <meta content="PT4M13S" itemprop="duration" />
+    <meta content="Eliminator" itemprop="inAlbum" />
+ </div>
+
+  <div itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
+    4.<span itemprop="name">Old Time Rock and Roll</span> -
+    <span itemprop="byArtist">Bob Seger</span>
+    <meta content="old-time-rock-and-roll" itemprop="url" />
+    <meta content="PT3M12S" itemprop="duration" />
+    <meta content="Stranger In Town" itemprop="inAlbum" />
+  </div>
+
+  <div itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
+    5.<span itemprop="name">Hurt So Good</span> -
+    <span itemprop="byArtist">John Cougar</span>
+    <meta content="hurt-so-good" itemprop="url" />
+    <meta content="PT3M39S" itemprop="duration" />
+    <meta content="American Fool" itemprop="inAlbum" />
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_21.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 21 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Article">
+  <span itemprop="name">How to Tie a Reef Knot</span>
+  by <span itemprop="author">John Doe</span>
+  This article has been tweeted 1203 times and contains 78 user comments.
+  <meta itemprop="interactionCount" content="UserTweets:1203"/>
+  <meta itemprop="interactionCount" content="UserComments:78"/>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_22.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 22 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/CivicStructure">
+  <span itemprop="name">Springfield Town Hall</span>
+  Hours:
+  <meta itemprop="openingHours" content="Mo-Fr 09:00-17:30">Mon-Fri 9am - 5:30pm
+  <meta itemprop="openingHours" content="Sa 09:00-12:00">Sat 9am - 12pm
+  Closed Sun
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_23.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 23 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/EducationalOrganization">
+ <span itemprop="name">Palo Alto High School</span>
+ <div itemprop="address" itemscope itemtype="schema.org/PostalAddress">
+    <span itemprop="streetAddress">50 Embarcadero Rd</span>
+    <span itemprop="addressLocality">Palo Alto</span>,
+    <span itemprop="addressRegion">CA</span> <span itemprop="postalCode">94301</span>
+  </div>
+ List of Alumni
+ <span itemprop="alumni" itemscope itemtype="http://schema.org/Person">
+   <span itemprop="name">John Doe</span>
+ </span>
+ <span itemprop="alumni" itemscope itemtype="http://schema.org/Person">
+   <span itemprop="name">Sarah Glames</span>
+ </span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_24.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 24 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/TVSeries">
+ <span itemprop="name">Greys Anatomy</span> is a medical drama television series created by
+ <div itemscope itemtype="http://schema.org/Person">
+   <span itemprop="author">Shonda Rimes</span>
+ </div>
+ Starring:
+ <div itemprop="actors" itemscope itemtype="http://schema.org/Person">
+   <span itemprop="name">Justin Chambers</span>
+ </div>
+ <div itemprop="actors" itemscope itemtype="http://schema.org/Person">
+   <span itemprop="name">Jessica Capshaw</span>
+ </div>
+ <div itemprop="seasons" itemscope itemtype="http://schema.org/TVSeason">
+   <span itemprop="name">Season 1</span> -
+   <meta itemprop="numberofEpisodes" content="14"/>
+   <meta itemprop="datePublished" content="2005-05-22">May 22, 2005
+ </div>
+ <div itemprop="seasons" itemscope itemtype="http://schema.org/TVSeason">
+   <span itemprop="name">Season 2</span> -
+   <meta itemprop="numberofEpisodes" content="27"/>
+   <meta itemprop="datePublished" content="2006-05-14">May 14, 2006
+   <div itemprop="episodes" itemscope itemtype="http://schema.org/TVEpisode">
+     <span itemprop="name">Episode 1</span> -
+     <meta itemprop="episodeNumber" content="1"/>
+   </div>
+ </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_25.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 25 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://www.schema.org/MusicAlbum">
+  <h1 itemprop="name"> King of Limbs </h1>
+  <meta content="/artist/radiohead/album/the-king-of-limbs" itemprop="url" />
+  <img src="king-of-limbs.jpg" itemprop="image" />
+  <meta content="8" itemprop="numTracks" />
+  <meta content="Alt/Punk" itemprop="genre" />
+
+  <h2 itemprop="byArtist" itemscope itemtype="http://www.schema.org/MusicGroup">
+    <span itemprop="name">Radiohead</span>
+  </h2>
+
+  <h3>Sample Tracks</h3>
+    <div itemprop="tracks" itemscope itemtype="http://www.schema.org/MusicRecording">
+      <span itemprop="name">Bloom</span>
+        <meta content="/artist/radiohead/album/the-king-of-limbs/track/bloom" itemprop="url" />
+        <meta content="PT314S" itemprop="duration" />
+      </span>
+    </div>
+    <div itemprop="tracks" itemscope itemtype="http://www.schema.org/MusicRecording">
+    <span itemprop="name">Morning Mr Magpie</span>
+      <meta content="/artist/radiohead/album/the-king-of-limbs/track/morning-mr-magpie" itemprop="url" />
+      <meta content="PT280S" itemprop="duration" />
+    </span>
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_3.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 3 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Restaurant">
+  <span itemprop="name">GreatFood</span>
+
+  <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
+    <span itemprop="ratingValue">4</span> stars -
+    based on <span itemprop="reviewCount">250</span> reviews
+  </div>
+
+  <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+    <span itemprop="streetAddress">1901 Lemur Ave</span>
+    <span itemprop="addressLocality">Sunnyvale</span>,
+    <span itemprop="addressRegion">CA</span> <span itemprop="postalCode">94086</span>
+  </div>
+  <span itemprop="telephone">(408) 714-1489</span>
+  <a itemprop="url" href="http://www.dishdash.com">www.greatfood.com</a>
+
+  Hours:
+  <meta itemprop="openingHours" content="Mo-Sa 11:00-14:30">Mon-Sat 11am - 2:30pm
+  <meta itemprop="openingHours" content="Mo-Th 17:00-21:30">Mon-Thu 5pm - 9:30pm
+  <meta itemprop="openingHours" content="Fr-Sa 17:00-22:00">Fri-Sat 5pm - 10:00pm
+
+  Categories:
+  <span itemprop="servesCuisine">
+    Middle Eastern
+  </span>,
+  <span itemprop="servesCuisine">
+    Mediterranean
+  </span>
+
+  Price Range: <span itemprop="priceRange">$$</span>
+  Takes Reservations: Yes
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_4.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 4 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Place"
+  <h1>What is the latitude and longitude of the <span itemprop="name">Empire State Building</span>?<h1>
+  Answer:
+  <div itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates">
+    Latitude: 40 deg 44 min 54.36 sec N
+    Longitude: 73 deg 59 min 8.5 dec W
+    <meta itemprop="latitude" content="40.75" />
+    <meta itemprop="longitude" content="73.98" />
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_5.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 5 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/AudioObject">
+  <span itemprop="name"><b>12oclock_girona.mp3</b></span>
+
+<script type="text/javascript">
+  var fo = new FlashObject("http://google.com/flash/preview-player.swf",
+  "flashPlayer_719", "358", "16", "6", "#FFFFFF");fo.addVariable("url","http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3");fo.addVariable("autostart", "0");fo.write("flashcontent_719");
+</script>
+
+<meta itemprop="encodingFormat" content="mp3" />
+ <meta itemprop="contentURL" content="http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3" />
+
+<span class="description">
+  		<meta itemprop="duration" content="T0M15S" />
+  		<span itemprop="description">Recorded on a terrace of Girona a sunday morning</span>
+</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_6.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 6 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Organization">
+  <span itemprop="name">Google.org (GOOG)</span>
+
+Contact Details:
+  <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+    Main address:
+      <span itemprop="streetAddress">38 avenue de l'Opera</span>
+      <span itemprop="postalCode">F-75002</span>
+      <span itemprop="addressLocality">Paris, France</span>
+    ,
+  </div>
+    Tel:<span itemprop="telephone">( 33 1) 42 68 53 00 </span>,
+    Fax:<span itemprop="faxNumber">( 33 1) 42 68 53 01 </span>,
+    E-mail: <span itemprop="email">secretariat(at)google.org</span>
+
+Members:
+- National Scientific Members in 100 countries and territories: Country1, Country2, ...
+- Scientific Union Members, 30 organizations listed in this Yearbook:
+  <span itemprop="members" itemscope itemtype="http://schema.org/Organization">
+    Member1
+  </span>,
+  <span itemprop="members" itemscope itemtype="http://schema.org/Organization">
+    Member2
+  </span>,
+
+History:
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_7.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 7 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/NGO">
+  <span itemprop="name">Google.org (GOOG)</span>
+
+Contact Details:
+  <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+    Main address:
+      <span itemprop="streetAddress">38 avenue de l'Opera</span>
+      <span itemprop="postalCode">F-75002</span>
+      <span itemprop="addressLocality">Paris, France</span>
+    ,
+  </div>
+    Tel:<span itemprop="telephone">( 33 1) 42 68 53 00 </span>,
+    Fax:<span itemprop="faxNumber">( 33 1) 42 68 53 01 </span>,
+    E-mail: <span itemprop="email">secretariat(at)google.org</span>
+
+Members:
+- National Scientific Members in 100 countries and territories: Country1, Country2, ...
+- Scientific Union Members, 30 organizations listed in this Yearbook:
+  <span itemprop="members" itemscope itemtype="http://schema.org/Organization">
+    Member1
+  </span>,
+  <span itemprop="members" itemscope itemtype="http://schema.org/Organization">
+    Member2
+  </span>,
+
+History:
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_8.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 8 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Event">
+  <a itemprop="url" href="nba-miami-philidelphia-game3.html">
+  NBA Eastern Conference First Round Playoff Tickets:
+  <span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span>
+  </a>
+
+  <meta itemprop="startDate" content="2016-04-21T20:00">
+    Thu, 04/21/16
+    8:00 p.m.
+
+  <div itemprop="location" itemscope itemtype="http://schema.org/Place">
+    <a itemprop="url" href="wells-fargo-center.html">
+    Wells Fargo Center
+    </a>
+    <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+      <span itemprop="addressLocality">Philadelphia</span>,
+      <span itemprop="addressRegion">PA</span>
+    </div>
+  </div>
+
+  <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
+    Priced from: <span itemprop="lowPrice">$35</span>
+    <span itemprop="offerCount">1938</span> tickets left
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/md/sdo_eg_md_9.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 9 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Product">
+  <span itemprop="name">Kenmore White 17" Microwave</span>
+  <img src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' />
+  <div itemprop="aggregateRating"
+    itemscope itemtype="http://schema.org/AggregateRating">
+   Rated <span itemprop="ratingValue">3.5</span>/5
+   based on <span itemprop="reviewCount">11</span> customer reviews
+  </div>
+
+  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+    <span itemprop="price">$55.00</span>
+    <link itemprop="availability" href="http://schema.org/InStock" />In stock
+  </div>
+
+  Product description:
+  <span itemprop="description">0.7 cubic feet countertop microwave.
+  Has six preset cooking categories and convenience features like
+  Add-A-Minute and Child Lock.</span>
+
+  Customer reviews:
+
+  <div itemprop="reviews" itemscope itemtype="http://schema.org/Review">
+    <span itemprop="name">Not a happy camper</span> -
+    by <span itemprop="author">Ellie</span>,
+    <meta itemprop="datePublished" content="2011-04-01">April 1, 2011
+    <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
+      <meta itemprop="worstRating" content = "1">
+      <span itemprop="ratingValue">1</span>/
+      <span itemprop="bestRating">5</span>stars
+    </div>
+    <span itemprop="description">The lamp burned out and now I have to replace
+    it. </span>
+  </div>
+
+  <div itemprop="reviews" itemscope itemtype="http://schema.org/Review">
+    <span itemprop="name">Value purchase</span> -
+    by <span itemprop="author">Lucas</span>,
+    <meta itemprop="datePublished" content="2011-03-25">March 25, 2011
+    <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
+      <meta itemprop="worstRating" content = "1"/>
+      <span itemprop="ratingValue">4</span>/
+      <span itemprop="bestRating">5</span>stars
+    </div>
+    <span itemprop="description">Great microwave for the price. It is small and
+    fits in my apartment.</span>
+  </div>
+  ...
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_1.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 1 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Person">
+  <span property="name">Jane Doe</span>
+  <img src="janedoe.jpg" property="image" />
+
+  <span property="jobTitle">Professor</span>
+  <div property="address" typeof="PostalAddress">
+    <span property="streetAddress">
+      20341 Whitworth Institute
+      405 N. Whitworth
+    </span>
+    <span property="addressLocality">Seattle</span>,
+    <span property="addressRegion">WA</span>
+    <span property="postalCode">98052</span>
+  </div>
+  <span property="telephone">(425) 123-4567</span>
+  <a href="mailto:jane-doe@xyz.edu" property="email">
+    jane-doe@xyz.edu</a>
+
+  Jane's home page:
+  <a href="www.janedoe.com" property="url">janedoe.com</a>
+
+  Graduate students:
+  <a href="www.xyz.edu/students/alicejones.html" property="colleagues">
+    Alice Jones</a>
+  <a href="www.xyz.edu/students/bobsmith.html" property="colleagues">
+    Bob Smith</a>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_10.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 10 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Product">
+  <img property="image" src="dell-30in-lcd.jpg" />
+  <span property="name">Dell UltraSharp 30" LCD Monitor</span>
+
+  <div property="aggregateRating"
+    typeof="AggregateRating">
+    <span property="ratingValue">87</span>
+    out of <span property="bestRating">100</span>
+    based on <span property="ratingCount">24</span> user ratings
+  </div>
+
+  <div property="offers" typeof="AggregateOffer">
+    <span property="lowPrice">$1250</span>
+    to <span property="highPrice">$1495</span>
+    from <span property="offerCount">8</span> sellers
+
+  Sellers:
+  <div property="offers" typeof="Offer">
+    <a property="url" href="save-a-lot-monitors.com/dell-30.html">
+     Save A Lot Monitors - $1250</a>
+  </div>
+  <div property="offers" typeof="Offer">
+    <a property="url" href="jondoe-gadgets.com/dell-30.html">
+     Jon Doe's Gadgets - $1350</a>
+  </div>
+  ...
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_11.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,65 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 11 (format rdfa)</title>
+</head>
+<body>
+
+<body vocab="http://schema.org/" typeof="WebPage">
+...
+<div property="breadcrumb">
+  <a href="category/books.html">Books</a> >
+  <a href="category/books-literature.html">Literature & Fiction</a> >
+  <a href="category/books-classics">Classics</a>
+</div>
+
+<div typeof="Book">
+
+<img property="image" src="catcher-in-the-rye-book-cover.jpg" />
+<span property="name">The Catcher in the Rye</span> -
+ <link property="bookFormat" href="http://schema.org/Paperback">Mass Market Paperback
+by <a property="author" href="/author/jd_salinger.html">J.D. Salinger</a>
+
+<div property="aggregateRating" typeof="AggregateRating">
+  <span property="ratingValue">4</span> stars -
+  <span property="reviewCount">3077</span> reviews
+</div>
+
+<div property="offers" typeof="Offer">
+  Price: <span property="price">$6.99</span>
+  <meta property="priceCurrency" content="USD" />
+  <link property="availability" href="http://schema.org/InStock">In Stock
+</div>
+
+Product details
+<span property="numberOfPages">224</span> pages
+Publisher: <span property="publisher">Little, Brown, and Company</span> -
+ <meta property="datePublished" content="1991-05-01">May 1, 1991
+Language: <span property="inLanguage">English</span>
+ISBN-10: <span property="isbn">0316769487</span>
+
+Reviews:
+
+<div property="reviews" typeof="Review">
+  <span property="reviewRating">5</span> stars -
+  <b>"<span property="name">A masterpiece of literature</span>" </b>
+  by <span property="author">John Doe</span>,
+  Written on <meta property="datePublished" content="2006-05-04">May 4, 2006
+  <span property="reviewBody">I really enjoyed this book. It captures the essential
+  challenge people face as they try make sense of their lives and grow to adulthood.</span>
+</div>
+
+<div property="reviews" typeof="Review">
+  <span property="reviewRating">4</span> stars -
+  <b>"<span property="name">A good read.</span>" </b>
+  by <span property="author">Bob Smith</span>,
+  Written on <meta property="datePublished" content="2006-06-15">June 15, 2006
+  <span property="reviewBody">Catcher in the Rye is a fun book. It's a good book to read.</span>
+</div>
+
+</div>
+...
+</body>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_12.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 12 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Recipe">
+  <span property="name">Mom's World Famous Banana Bread</span>
+  By <span property="author">John Smith</span>,
+  <meta property="datePublished" content="2009-05-08">May 8, 2009
+  <img property="image" src="bananabread.jpg" />
+
+  <span property="description">This classic banana bread recipe comes
+  from my mom -- the walnuts add a nice texture and flavor to the banana
+  bread.</span>
+
+  Prep Time: <meta property="prepTime" content="PT15M">15 minutes
+  Cook time: <meta property="cookTime" content="PT1H">1 hour
+  Yield: <span property="recipeYield">1 loaf</span>
+
+  <div property="nutrition"
+    typeof="NutritionInformation">
+    Nutrition facts:
+    <span property="calories">240 calories</span>,
+    <span property="fatContent">9 grams fat</span>
+  </div>
+
+  Ingredients:
+  - <span property="ingredients">3 or 4 ripe bananas, smashed</span>
+  - <span property="ingredients">1 egg</span>
+  - <span property="ingredients">3/4 cup of sugar</span>
+  ...
+
+  Instructions:
+  <span property="recipeInstructions">
+  Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add
+  the flour last. Pour the mixture into a loaf pan and bake for one hour.
+  </span>
+
+  140 comments:
+  <meta property="interactionCount" content="UserComments:140" />
+  From Janel, May 5 -- thank you, great recipe!
+  ...
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_13.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,86 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 13 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="MusicGroup">
+
+<h1 property="name">Foo Fighters</h1>
+
+
+<div property="video" typeof="VideoObject">
+  <h2>Video: <span property="name">Interview with the Foo Fighters</span></h2>
+  <meta property="duration" content="T1M33S" />
+  <meta property="thumbnail" content="foo-fighters-interview-thumb.jpg" />
+  <object ...>
+    <param ...>
+    <embed type="application/x-shockwave-flash" ...>
+  </object>
+  <span property="description">Catch this exclusive interview with
+    Dave Grohl and the Food Fighters about their new album, Rope.</span>
+</div>
+
+
+<h2>Songs</h2>
+
+<div property="tracks" typeof="MusicRecording">
+  <span property="name">Rope</span>
+  <meta property="url" content ="foo-fighters-rope.html">
+  Length: <meta property="duration" content="PT4M5S">4:05 -
+  14300 plays<meta property="interactionCount" content="UserPlays:14300" />
+  <a href="foo-fighters-rope-play.html" property="audio">Play</a>
+  <a href="foo-fighters-rope-buy.html" property="offers">Buy</a>
+  From album: <a href="foo-fighters-wasting-light.html"
+    property="inAlbum">Wasting Light</a>
+</div>
+
+<div property="tracks" typeof="MusicRecording">
+  <span property="name">Everlong</span>
+  <meta property="url" content ="foo-fighters-everlong.html">
+  Length: <meta property="duration" content="PT6M33S">6:33 -
+  <span property="playCount">11700</span> plays
+  <a href="foo-fighters-everlong-play.html" property="audio">Play</a>
+  <a href="foo-fighters-everlong-buy.html" property="offers">Buy</a>
+  From album: <a href="foo-fighters-color-and-shape.html"
+    property="inAlbum">The Color And The Shape</a>
+</div>
+
+
+<h2>Upcoming shows</h2>
+
+<div property="events" typeof="Event">
+  <a href="foo-fighters-may20-fedexforum" property="url">
+    <span property="name">FedExForum</span>
+  </a>
+  <span property="location">Memphis, TN, US</span>
+  <meta property="startDate" content="2011-05-20">May 20
+  <a href="ticketmaster.com/foofighters/may20-2011" property="offers">Buy tickets</a>
+</div>
+
+<div property="events" typeof="Event">
+  <a href="foo-fighters-may23-midamericacenter" property="url">
+    <span property="name">Mid America Center</span>
+  </a>
+  <span property="location">Council Bluffs, IA, US</span>
+  <meta property="startDate" content="2011-05-23">May 23
+  <a href="ticketmaster.com/foofighters/may23-2011" property="offers">Buy tickets</a>
+</div>
+
+<h2><a href="foo-fighters-photos">28 Photos</a></h2>
+<a href="foofighters-1.jpg" property="image"><img src="foofighters-thumb1.jpg" /></a>
+<a href="foofighters-2.jpg" property="image"><img src="foofighters-thumb2.jpg" /></a>
+<a href="foofighters-3.jpg" property="image"><img src="foofighters-thumb3.jpg" /></a>
+
+
+<h2>Comments:</h2>
+Excited about seeing them in concert next week. -Lawrence , Jan 23
+I dig their latest single. -Mary, Jan 19
+<meta property="interactionCount" content="UserComments:18" />
+Showing 1-2 of 18 comments. <a href="foofighters-comments">More</a>
+
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_14.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 14 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="ItemList">
+  <meta property="mainContentOfPage" content="true"/>
+  <h2 property="name">Top 10 laptops</h2><br>
+  <meta property="itemListOrder" content="Descending" />
+  <p>1. <span property="itemListElement">HP Pavilion dv6-6013cl</span></p>
+  <p>2. <span property="itemListElement">Dell XPS 15 (Sandy Bridge)</span></p>
+  <p>3. <span property="itemListElement">Lenovo ThinkPad X220</span></p>
+  ...
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_15.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 15 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Movie">
+
+<h1 property="name">Pirates of the Carribean: On Stranger Tides (2011)</h1>
+<span property="description">Jack Sparrow and Barbossa embark on a quest to
+ find the elusive fountain of youth, only to discover that Blackbeard and
+ his daughter are after it too.</span>
+Director:
+ <div property="director" typeof="Person">
+<span property="name">Rob Marshall</span>
+</div>
+Writers:
+ <div property="author" typeof="Person">
+<span property="name">Ted Elliott</span>
+</div>
+<div property="author" typeof="Person">
+<span property="name">Terry Rossio</span>
+</div>
+, and 7 more credits
+Stars:
+ <div property="actors" typeof="Person">
+<span property="name">Johnny Depp</span>,
+ </div>
+<div property="actors" typeof="Person">
+<span property="name">Penelope Cruz</span>,
+</div>
+<div property="actors" typeof="Person">
+<span property="name">Ian McShane</span>
+</div>
+<div property="aggregateRating" typeof="AggregateRating">
+  <span property="ratingValue">8</span>/<span property="bestRating">10</span> stars from
+  <span property="ratingCount">200</span> users.
+  Reviews: <span property="reviewCount">50</span>.
+</div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_16.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 16 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Table">
+  <meta property="mainContentOfPage" content="true"/>
+  <h2 property="about">list of presidents</h2>
+  <table>
+    <tr><th>President</th><th>Party</th><tr>
+    <tr>
+      <td>George Washington (1789-1797)</td>
+      <td>no party</td>
+    </tr>
+    <tr>
+      <td>John Adams (1797-1801)</td>
+      <td>Federalist</td>
+    </tr>
+    ...
+  </table>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_17.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 17 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="PostalAddress">
+ <span property="name">Google Inc.</span>
+ P.O. Box<span property="postOfficeBoxNumber">1234</span>
+ <span property="addressLocality">Mountain View</span>,
+ <span property="addressRegion">CA</span>
+ <span property="postalCode">94043</span>
+ <span property="addressCountry">United States</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_18.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 18 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="CreativeWork">
+<img property="image" src="videogame.jpg" />
+<span property="name">Resistance 3: Fall of Man</span>
+by <span property="author">Sony</span>,
+Platform: Playstation 3
+Rated:<span property="contentRating">Mature</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_19.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 19 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="ImageObject">
+  <h2 property="name">Beach in Mexico</h2>
+  <img src="mexico-beach.jpg" property="contentURL" />
+
+  By <span property="author">Jane Doe</span>
+  Photographed in
+    <span property="contentLocation">Puerto Vallarta, Mexico</span>
+  Date uploaded:
+    <meta property="datePublished" content="2008-01-25">Jan 25, 2008
+
+  <span property="description">I took this picture while on vacation last year.</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_2.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 2 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="LocalBusiness">
+  <h1><span property="name">Beachwalk Beachwear & Giftware</span></h1>
+  <span property="description"> A superb collection of fine gifts and clothing
+  to accent your stay in Mexico Beach.</span>
+  <div property="address" typeof="PostalAddress">
+    <span property="streetAddress">3102 Highway 98</span>
+    <span property="addressLocality">Mexico Beach</span>,
+    <span property="addressRegion">FL</span>
+  </div>
+  Phone: <span property="telephone">850-648-4200</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_20.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 20 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="MusicPlaylist">
+  <span property="name">Classic Rock Playlist</span>
+  <meta property="numTracks" content="5"/>
+
+  <div property="tracks" typeof="MusicRecording">
+    1.<span property="name">Sweet Home Alabama</span> -
+    <span property="byArtist">Lynard Skynard</span>
+    <meta content="sweet-home-alabama" property="url" />
+    <meta content="PT4M45S" property="duration" />
+    <meta content="Second Helping" property="inAlbum" />
+   </div>
+
+  <div property="tracks" typeof="MusicRecording">
+    2.<span property="name">Shook you all Night Long</span> -
+    <span property="byArtist">AC/DC</span>
+    <meta content="shook-you-all-night-long" property="url" />
+    <meta content="PT3M32S" property="duration" />
+    <meta content="Back In Black" property="inAlbum" />
+  </div>
+
+  <div property="tracks" typeof="MusicRecording">
+    3.<span property="name">Sharp Dressed Man</span> -
+    <span property="byArtist">ZZ Top</span>
+    <meta content="sharp-dressed-man" property="url" />
+    <meta content="PT4M13S" property="duration" />
+    <meta content="Eliminator" property="inAlbum" />
+ </div>
+
+  <div property="tracks" typeof="MusicRecording">
+    4.<span property="name">Old Time Rock and Roll</span> -
+    <span property="byArtist">Bob Seger</span>
+    <meta content="old-time-rock-and-roll" property="url" />
+    <meta content="PT3M12S" property="duration" />
+    <meta content="Stranger In Town" property="inAlbum" />
+  </div>
+
+  <div property="tracks" typeof="MusicRecording">
+    5.<span property="name">Hurt So Good</span> -
+    <span property="byArtist">John Cougar</span>
+    <meta content="hurt-so-good" property="url" />
+    <meta content="PT3M39S" property="duration" />
+    <meta content="American Fool" property="inAlbum" />
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_21.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 21 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Article">
+  <span property="name">How to Tie a Reef Knot</span>
+  by <span property="author">John Doe</span>
+  This article has been tweeted 1203 times and contains 78 user comments.
+  <meta property="interactionCount" content="UserTweets:1203"/>
+  <meta property="interactionCount" content="UserComments:78"/>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_22.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 22 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="CivicStructure">
+  <span property="name">Springfield Town Hall</span>
+  Hours:
+  <meta property="openingHours" content="Mo-Fr 09:00-17:30">Mon-Fri 9am - 5:30pm
+  <meta property="openingHours" content="Sa 09:00-12:00">Sat 9am - 12pm
+  Closed Sun
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_23.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 23 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="EducationalOrganization">
+ <span property="name">Palo Alto High School</span>
+ <div property="address" typeof="PostalAddress">
+    <span property="streetAddress">50 Embarcadero Rd</span>
+    <span property="addressLocality">Palo Alto</span>,
+    <span property="addressRegion">CA</span> <span property="postalCode">94301</span>
+  </div>
+ List of Alumni
+ <span property="alumni" typeof="Person">
+   <span property="name">John Doe</span>
+ </span>
+ <span property="alumni" typeof="Person">
+   <span property="name">Sarah Glames</span>
+ </span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_24.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 24 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="TVSeries">
+ <span property="name">Greys Anatomy</span> is a medical drama television series created by
+ <div typeof="Person">
+   <span property="author">Shonda Rimes</span>
+ </div>
+ Starring:
+ <div property="actors" typeof="Person">
+   <span property="name">Justin Chambers</span>
+ </div>
+ <div property="actors" typeof="Person">
+   <span property="name">Jessica Capshaw</span>
+ </div>
+ <div property="seasons" typeof="TVSeason">
+   <span property="name">Season 1</span> -
+   <meta property="numberofEpisodes" content="14"/>
+   <meta property="datePublished" content="2005-05-22">May 22, 2005
+ </div>
+ <div property="seasons" typeof="TVSeason">
+   <span property="name">Season 2</span> -
+   <meta property="numberofEpisodes" content="27"/>
+   <meta property="datePublished" content="2006-05-14">May 14, 2006
+   <div property="episodes" typeof="TVEpisode">
+     <span property="name">Episode 1</span> -
+     <meta property="episodeNumber" content="1"/>
+   </div>
+ </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_25.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 25 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="MusicAlbum">
+  <h1 property="name"> King of Limbs </h1>
+  <meta content="/artist/radiohead/album/the-king-of-limbs" property="url" />
+  <img src="king-of-limbs.jpg" property="image" />
+  <meta content="8" property="numTracks" />
+  <meta content="Alt/Punk" property="genre" />
+
+  <h2 property="byArtist" typeof="MusicGroup">
+    <span property="name">Radiohead</span>
+  </h2>
+
+  <h3>Sample Tracks</h3>
+    <div property="tracks" typeof="MusicRecording">
+      <span property="name">Bloom</span>
+        <meta content="/artist/radiohead/album/the-king-of-limbs/track/bloom" property="url" />
+        <meta content="PT314S" property="duration" />
+      </span>
+    </div>
+    <div property="tracks" typeof="MusicRecording">
+    <span property="name">Morning Mr Magpie</span>
+      <meta content="/artist/radiohead/album/the-king-of-limbs/track/morning-mr-magpie" property="url" />
+      <meta content="PT280S" property="duration" />
+    </span>
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_3.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 3 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Restaurant">
+  <span property="name">GreatFood</span>
+
+  <div property="aggregateRating" typeof="AggregateRating">
+    <span property="ratingValue">4</span> stars -
+    based on <span property="reviewCount">250</span> reviews
+  </div>
+
+  <div property="address" typeof="PostalAddress">
+    <span property="streetAddress">1901 Lemur Ave</span>
+    <span property="addressLocality">Sunnyvale</span>,
+    <span property="addressRegion">CA</span> <span property="postalCode">94086</span>
+  </div>
+  <span property="telephone">(408) 714-1489</span>
+  <a property="url" href="http://www.dishdash.com">www.greatfood.com</a>
+
+  Hours:
+  <meta property="openingHours" content="Mo-Sa 11:00-14:30">Mon-Sat 11am - 2:30pm
+  <meta property="openingHours" content="Mo-Th 17:00-21:30">Mon-Thu 5pm - 9:30pm
+  <meta property="openingHours" content="Fr-Sa 17:00-22:00">Fri-Sat 5pm - 10:00pm
+
+  Categories:
+  <span property="servesCuisine">
+    Middle Eastern
+  </span>,
+  <span property="servesCuisine">
+    Mediterranean
+  </span>
+
+  Price Range: <span property="priceRange">$$</span>
+  Takes Reservations: Yes
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_4.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 4 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Place"
+  <h1>What is the latitude and longitude of the <span property="name">Empire State Building</span>?<h1>
+  Answer:
+  <div property="geo" typeof="GeoCoordinates">
+    Latitude: 40 deg 44 min 54.36 sec N
+    Longitude: 73 deg 59 min 8.5 dec W
+    <meta property="latitude" content="40.75" />
+    <meta property="longitude" content="73.98" />
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_5.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 5 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="AudioObject">
+  <span property="name"><b>12oclock_girona.mp3</b></span>
+
+<script type="text/javascript">
+  var fo = new FlashObject("http://google.com/flash/preview-player.swf",
+  "flashPlayer_719", "358", "16", "6", "#FFFFFF");fo.addVariable("url","http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3");fo.addVariable("autostart", "0");fo.write("flashcontent_719");
+</script>
+
+<meta property="encodingFormat" content="mp3" />
+ <meta property="contentURL" content="http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3" />
+
+<span class="description">
+  		<meta property="duration" content="T0M15S" />
+  		<span property="description">Recorded on a terrace of Girona a sunday morning</span>
+</span>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_6.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 6 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Organization">
+  <span property="name">Google.org (GOOG)</span>
+
+Contact Details:
+  <div property="address" typeof="PostalAddress">
+    Main address:
+      <span property="streetAddress">38 avenue de l'Opera</span>
+      <span property="postalCode">F-75002</span>
+      <span property="addressLocality">Paris, France</span>
+    ,
+  </div>
+    Tel:<span property="telephone">( 33 1) 42 68 53 00 </span>,
+    Fax:<span property="faxNumber">( 33 1) 42 68 53 01 </span>,
+    E-mail: <span property="email">secretariat(at)google.org</span>
+
+Members:
+- National Scientific Members in 100 countries and territories: Country1, Country2, ...
+- Scientific Union Members, 30 organizations listed in this Yearbook:
+  <span property="members" typeof="Organization">
+    Member1
+  </span>,
+  <span property="members" typeof="Organization">
+    Member2
+  </span>,
+
+History:
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_7.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 7 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="NGO">
+  <span property="name">Google.org (GOOG)</span>
+
+Contact Details:
+  <div property="address" typeof="PostalAddress">
+    Main address:
+      <span property="streetAddress">38 avenue de l'Opera</span>
+      <span property="postalCode">F-75002</span>
+      <span property="addressLocality">Paris, France</span>
+    ,
+  </div>
+    Tel:<span property="telephone">( 33 1) 42 68 53 00 </span>,
+    Fax:<span property="faxNumber">( 33 1) 42 68 53 01 </span>,
+    E-mail: <span property="email">secretariat(at)google.org</span>
+
+Members:
+- National Scientific Members in 100 countries and territories: Country1, Country2, ...
+- Scientific Union Members, 30 organizations listed in this Yearbook:
+  <span property="members" typeof="Organization">
+    Member1
+  </span>,
+  <span property="members" typeof="Organization">
+    Member2
+  </span>,
+
+History:
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_8.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 8 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Event">
+  <a property="url" href="nba-miami-philidelphia-game3.html">
+  NBA Eastern Conference First Round Playoff Tickets:
+  <span property="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span>
+  </a>
+
+  <meta property="startDate" content="2016-04-21T20:00">
+    Thu, 04/21/16
+    8:00 p.m.
+
+  <div property="location" typeof="Place">
+    <a property="url" href="wells-fargo-center.html">
+    Wells Fargo Center
+    </a>
+    <div property="address" typeof="PostalAddress">
+      <span property="addressLocality">Philadelphia</span>,
+      <span property="addressRegion">PA</span>
+    </div>
+  </div>
+
+  <div property="offers" typeof="AggregateOffer">
+    Priced from: <span property="lowPrice">$35</span>
+    <span property="offerCount">1938</span> tickets left
+  </div>
+</div>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/drafts/examples/site/testcases/rdfa/sdo_eg_rdfa_9.html	Wed Apr 11 20:08:24 2012 +0200
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 9 (format rdfa)</title>
+</head>
+<body>
+
+<div vocab="http://schema.org/" typeof="Product">
+  <span property="name">Kenmore White 17" Microwave</span>
+  <img src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' />
+  <div property="aggregateRating"
+    typeof="AggregateRating">
+   Rated <span property="ratingValue">3.5</span>/5
+   based on <span property="reviewCount">11</span> customer reviews
+  </div>
+
+  <div property="offers" typeof="Offer">
+    <span property="price">$55.00</span>
+    <link property="availability" href="http://schema.org/InStock" />In stock
+  </div>
+
+  Product description:
+  <span property="description">0.7 cubic feet countertop microwave.
+  Has six preset cooking categories and convenience features like
+  Add-A-Minute and Child Lock.</span>
+
+  Customer reviews:
+
+  <div property="reviews" typeof="Review">
+    <span property="name">Not a happy camper</span> -
+    by <span property="author">Ellie</span>,
+    <meta property="datePublished" content="2011-04-01">April 1, 2011
+    <div property="reviewRating" typeof="Rating">
+      <meta property="worstRating" content = "1">
+      <span property="ratingValue">1</span>/
+      <span property="bestRating">5</span>stars
+    </div>
+    <span property="description">The lamp burned out and now I have to replace
+    it. </span>
+  </div>
+
+  <div property="reviews" typeof="Review">
+    <span property="name">Value purchase</span> -
+    by <span property="author">Lucas</span>,
+    <meta property="datePublished" content="2011-03-25">March 25, 2011
+    <div property="reviewRating" typeof="Rating">
+      <meta property="worstRating" content = "1"/>
+      <span property="ratingValue">4</span>/
+      <span property="bestRating">5</span>stars
+    </div>
+    <span property="description">Great microwave for the price. It is small and
+    fits in my apartment.</span>
+  </div>
+  ...
+</div>
+
+</body>
+</html>