merge
authorDan Brickley <danbri@google.com>
Thu, 06 Feb 2014 21:10:28 +0000
changeset 175 861b6fd28fcb
parent 174 7ed1b6dbbc0a (current diff)
parent 172 eb9d44971328 (diff)
child 176 5b6ba1ef9bc2
merge
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schema.org/ext/QA.html	Thu Feb 06 21:10:28 2014 +0000
@@ -0,0 +1,131 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>RDFa Lite Reflection</title>
+    <style type="text/css">
+      span.h {
+        padding-left: 0px;
+        font-weight: bold;
+      }
+      span {
+        display: block;
+        padding-left: 10px;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Question and answers extension for schema.org</h1>
+    <p>Enrichment of Schema.org to enable annotation of question and answer content, as <a href="http://lists.w3.org/Archives/Public/public-vocabs/2014Jan/0200.html">discussed</a> 
+on public-vocabs@w3.org.</p>
+    <p>See <a href="http://www.w3.org/wiki/WebSchemas/QASchemaResearch">wiki</a> for details.</p>
+
+    <!--  New QAPage class. -->
+    <div typeof="rdfs:Class" resource="http://schema.org/QAPage">
+      <span class="h" property="rdfs:label">QAPage</span>
+      <span property="rdfs:comment">A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/WebPage">WebPage</a></span>
+    </div>
+
+    <!-- extend range of comment property to include Comment type, not just the old UserComments -->
+    <div typeof="rdf:Property" resource="http://schema.org/comment">
+      <link property="http://schema.org/range" href="http://schema.org/Comment" />
+    </div>
+
+    <!--  New Question class. -->
+    <div typeof="rdfs:Class" resource="http://schema.org/Question">
+      <span class="h" property="rdfs:label">Question</span>
+      <span property="rdfs:comment">A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.</a>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
+    </div>
+    <!--  New properties for the new Question class. -->
+    <div typeof="rdf:Property" resource="http://schema.org/upvoteCount">
+      <span class="h" property="rdfs:label">upvoteCount</span>
+      <span property="rdfs:comment">The number of upvotes this question has received from the community.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Question">Question</a></span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Answer">Answer</a></span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Comment">Comment</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Integer">Integer</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/downvoteCount">
+      <span class="h" property="rdfs:label">downvoteCount</span>
+      <span property="rdfs:comment">The number of downvotes this question has received from the community.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Question">Question</a></span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Answer">Answer</a></span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Comment">Comment</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Integer">Integer</a></span>
+    </div>
+
+<!-- dropping for now, per http://lists.w3.org/Archives/Public/public-vocabs/2014Jan/0200.html
+    <div typeof="rdf:Property" resource="http://schema.org/viewCount">
+      <span class="h" property="rdfs:label">viewCount</span>
+      <span property="rdfs:comment">The number of times this question has viewed.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Question">Question</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Integer">Integer</a></span>
+    </div>
+-->
+
+<!-- dropping lastEditor, at least for now. 
+    <div typeof="rdf:Property" resource="http://schema.org/lastEditor">
+      <span class="h" property="rdfs:label">lastEditor</span>
+      <span property="rdfs:comment">The user who last edited this question or answer.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Question">Question</a></span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Answer">Answer</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Person">Person</a></span>
+    </div>
+--> 
+
+    <div typeof="rdf:Property" resource="http://schema.org/answerCount">
+      <span class="h" property="rdfs:label">answerCount</span>
+      <span property="rdfs:comment">The number of answers this question has received.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Question">Question</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Integer">Integer</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/commentCount">
+      <span class="h" property="rdfs:label">commentCount</span>
+      <span property="rdfs:comment">The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/CreativeWork">CreativeWork</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Integer">Integer</a></span>
+    </div>
+
+    <div typeof="rdf:Property" resource="http://schema.org/acceptedAnswer">
+      <span class="h" property="rdfs:label">acceptedAnswer</span>
+      <span property="rdfs:comment">"The answer that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Question">Question</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Answer">Answer</a></span>
+    </div>
+
+    <!--  New Answer class. -->
+    <div typeof="rdfs:Class" resource="http://schema.org/Answer">
+      <span class="h" property="rdfs:label">Answer</span>
+      <span property="rdfs:comment">An answer offered to a question; perhaps correct, perhaps opinionated or wrong.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/CreativeWork">CreativeWork</a></span>
+    </div>
+    <!--  New properties for the new Answer class. -->
+    <div typeof="rdf:Property" resource="http://schema.org/parentItem">
+      <span class="h" property="rdfs:label">parentItem</span>
+      <span property="rdfs:comment">The parent of a question, answer or item in general.</span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Answer">Answer</a></span>
+      <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Comment">Comment</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Question">Question</a></span>
+    </div>
+
+
+
+   <!-- associations -->
+
+<div typeof="rdf:Property" resource="http://schema.org/suggestedAnswer">
+ <span class="h" property="rdfs:label">suggestedAnswer</span>
+ <span property="rdfs:comment">An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site, often collected in a QAWebPage.</span>
+ <span>Domain: <a property="http://schema.org/domain" href="http://schema.org/Question">Question</a></span>
+ <span>Range: <a property="http://schema.org/range" href="http://schema.org/Answer">Answer</a></span>
+ <link property="rdfs:subPropertyOf" href="http://schema.org/answer" />
+</div>
+
+
+ <hr />
+
+
+
+
+  </body>
+</html>
--- a/schema.org/ext/Reservation.html	Thu Feb 06 21:09:07 2014 +0000
+++ b/schema.org/ext/Reservation.html	Thu Feb 06 21:10:28 2014 +0000
@@ -1,531 +1,588 @@
 <!DOCTYPE html>
 <html>
-<head>
-<title>Reservation - Schema documentation</title>
-
-<!--
-<link rel="stylesheet" href="http://schema.org/https://developers.google.com/css/screen.css" type="text/css" media="screen" charset="utf-8" />
-<link href='//fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css' />
-<link rel="stylesheet" href="http://schema.org/https://dvcs.w3.org/hg/webschema/raw-file/default/schema.org/css/schema.css" />
-
-copied from http://schema-tools.appspot.com/schema/Reservation
-
--->
-
-</head>
-<body>
-
-
-<div class="type" typeof="rdfs:Class" resource="http://schema.org/Reservation">
-<h1 property="rdfs:label" class="page-title"><span class="schema_type">Reservation</span></h1>
-
-<p class="narrow"><strong>Subclass of:</strong> <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></p>
-
-<p class="description" property="rdfs:comment">A generic reservation. Some reservations may have a ticket information.</p>
-
-<table class="properties">
-
-<tr><td class="section" colspan="3">Properties added by Reservation</td></tr>
-
-<tr typeof="rdf:Property" resource="http://schema.org/additionalTicketText">
-<!-- note, this is missing from May 9 schema draft -->
-
-<th property="rdfs:label">additionalTicketText</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">Any additional text to appear on a ticket, such as additional privileges or identifiers.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/bookingAgent">
-<th property="rdfs:label">bookingAgent</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Organization">Organization</a>
-<link property="http://schema.org/range" href="http://schema.org/Organization"></link>
-
-or <a href="http://schema.org/Person">Person</a>
-<link property="http://schema.org/range" href="http://schema.org/Person"></link>
-
-</td>
-<td property="rdfs:comment">Who made the reservation.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/bookingDate">
-<th property="rdfs:label">bookingDate</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/DateTime">DateTime</a>
-<link property="http://schema.org/range" href="http://schema.org/DateTime"></link>
-
-</td>
-<td property="rdfs:comment">Date the reservation was made.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/bookingTime">
-<th property="rdfs:label">bookingTime</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/DateTime">DateTime</a>
-<link property="http://schema.org/range" href="http://schema.org/DateTime"></link>
-
-</td>
-<td property="rdfs:comment">Date the reservation was made.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/cancelReservationUrl">
-<th property="rdfs:label">cancelReservationUrl</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/URL">URL</a>
-<link property="http://schema.org/range" href="http://schema.org/URL"></link>
-
-</td>
-<td property="rdfs:comment">Web page where reservation can be cancelled.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/checkinUrl">
-<th property="rdfs:label">checkinUrl</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/URL">URL</a>
-<link property="http://schema.org/range" href="http://schema.org/URL"></link>
-
-</td>
-<td property="rdfs:comment">Webpage where the passenger can check in.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/confirmReservationUrl">
-<th property="rdfs:label">confirmReservationUrl</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/URL">URL</a>
-<link property="http://schema.org/range" href="http://schema.org/URL"></link>
-
-</td>
-<td property="rdfs:comment">Web page where reservation can be confirmed.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/creator">
-
-<!-- note: this broadens an existing property, redefines its label. todo: reconfirm Actions design matches. -->
-
-<th property="rdfs:label">creator</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Organization">Organization</a>
-<link property="http://schema.org/range" href="http://schema.org/Organization"></link>
-
-or <a href="http://schema.org/Person">Person</a>
-<link property="http://schema.org/range" href="http://schema.org/Person"></link>
-
-</td>
-<td property="rdfs:comment">The creator or author of this item (applies to CreativeWork as well as to Intangible enties such as Reservations, Actions etc.).</td>
-</tr>
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/dateModified">
-<th property="rdfs:label">dateModified</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Date">Date</a>
-<link property="http://schema.org/range" href="http://schema.org/Date"></link>
-
-or <a href="http://schema.org/DateTime">DateTime</a>
-<link property="http://schema.org/range" href="http://schema.org/DateTime"></link>
-
-</td>
-<td property="rdfs:comment">The date on which the item was last modified (e.g. changes to a CreativeWork, Reservation etc.).</td>
-</tr>
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/loyaltyProgram">
-<th property="rdfs:label">loyaltyProgram</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/ProgramMembership">ProgramMembership</a>
-<link property="http://schema.org/range" href="http://schema.org/ProgramMembership"></link>
-
-</td>
-<td property="rdfs:comment">.</td>
-</tr>
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/modifiedTime">
-<th property="rdfs:label">modifiedTime</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/DateTime">DateTime</a>
-<link property="http://schema.org/range" href="http://schema.org/DateTime"></link>
-
-</td>
-<td property="rdfs:comment">Time the reservation was last modified.</td>
-</tr>
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/modifyReservationUrl">
-<th property="rdfs:label">modifyReservationUrl</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/URL">URL</a>
-<link property="http://schema.org/range" href="http://schema.org/URL"></link>
-
-</td>
-<td property="rdfs:comment">Web page where reservation can be modified.</td>
-</tr>
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/numSeats">
-<th property="rdfs:label">numSeats</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Number">Number</a>
-<link property="http://schema.org/range" href="http://schema.org/Number"></link>
-
-or <a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">Number of seats if unreserved seating.</td>
-</tr>
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/price">
-<!-- todo: check range, do we want Number here? -->
-<th property="rdfs:label">price</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Number">Number</a>
-<link property="http://schema.org/range" href="http://schema.org/Number"></link>
-
-or <a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">The total offer price of a Product or Reservation; or of a price component when attached to PriceSpecification and its subtypes.</td>
-</tr>
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/priceCurrency">
-<th property="rdfs:label">priceCurrency</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">The currency (in 3-letter ISO 4217 format) of a Product or Reservation's offer price; or of a price component, when attached to PriceSpecification and its subtypes.
-</td>
-</tr>
-
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/hasProgramMembership">
-<!-- note: Aug29 updated to has* pattern to avoid similarity with the type name -->
+  <head>
+    <title>Reservation schema plus additional supporting vocabulary</title>
+    <style type="text/css">
+      span.h {
+      padding-left: 0px;
+      font-weight: bold;
+      }
+      span {
+      display: block;
+      padding-left: 10px;
+      }
+    </style>
+  </head>
+  <body prefix="radion: http://www.w3.org/ns/radion#
+                adms: http://www.w3.org/ns/adms#
+                dcat: http://www.w3.org/ns/dcat#
+                ">
 
-<th property="rdfs:label">hasProgramMembership</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/ProgramMembership">ProgramMembership</a>
-<link property="http://schema.org/range" href="http://schema.org/ProgramMembership"></link>
-
-</td>
-<td property="rdfs:comment">Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.</td>
-</tr>
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/provider">
-	<!-- todo: confirm that Person range is dropped -->
-
-<th property="rdfs:label">provider</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Organization">Organization</a>
-<link property="http://schema.org/range" href="http://schema.org/Organization"></link>
-
-or <a href="http://schema.org/Person">Person</a>
-<link property="http://schema.org/range" href="http://schema.org/Person"></link>
-
-</td>
-<td property="rdfs:comment">The Person or Organization providing the item.</td>
-</tr>
-
-
-
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/reservationFor">
-<th property="rdfs:label">reservationFor</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/BusTrip">BusTrip</a>
-<link property="http://schema.org/range" href="http://schema.org/BusTrip"></link>
-
-, <a href="http://schema.org/Event">Event</a>
-<link property="http://schema.org/range" href="http://schema.org/Event"></link>
-
-, <a href="http://schema.org/Flight">Flight</a>
-<link property="http://schema.org/range" href="http://schema.org/Flight"></link>
-
-, <a href="http://schema.org/FoodEstablishment">FoodEstablishment</a>
-<link property="http://schema.org/range" href="http://schema.org/FoodEstablishment"></link>
-
-, <a href="http://schema.org/LodgingBusiness">LodgingBusiness</a>
-<link property="http://schema.org/range" href="http://schema.org/LodgingBusiness"></link>
-
-, <a href="http://schema.org/RentalCar">RentalCar</a>
-<link property="http://schema.org/range" href="http://schema.org/RentalCar"></link>
-
-, <a href="http://schema.org/Thing">Thing</a>
-<link property="http://schema.org/range" href="http://schema.org/Thing"></link>
-
-or <a href="http://schema.org/TrainTrip">TrainTrip</a>
-<link property="http://schema.org/range" href="http://schema.org/TrainTrip"></link>
-
-</td>
-<td property="rdfs:comment">The thing -- restaurant, movie, event, flight, etc. -- the reservation is for.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/reservationNumber">
-<th property="rdfs:label">reservationNumber</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">The number, code or id of the reservation.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/reservationStatus">
-<th property="rdfs:label">reservationStatus</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/ReservationStatus">ReservationStatus</a>
-<link property="http://schema.org/range" href="http://schema.org/ReservationStatus"></link>
-
-</td>
-<td property="rdfs:comment">Current status of the reservation.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/seat">
-<th property="rdfs:label">seat</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Seat">Seat</a>
-<link property="http://schema.org/range" href="http://schema.org/Seat"></link>
-
-</td>
-<td property="rdfs:comment">The location of the reserved seat (e.g., 27B).</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/seatingType">
-<th property="rdfs:label">seatingType</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/EventSeatingType">EventSeatingType</a>
-<link property="http://schema.org/range" href="http://schema.org/EventSeatingType"></link>
-
-or <a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">The cabin/class of the seat.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/seatRow">
-<th property="rdfs:label">seatRow</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
+    <h1>Reservations</h1>
+    <p>Reservations design as of 2014-01-21.</p>
 
-</td>
-<td property="rdfs:comment">The row location of the reserved seat (e.g., B).</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/seatSection">
-<th property="rdfs:label">seatSection</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">The section location of the reserved seat (e.g. Orchestra).</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/ticketDownloadUrl">
-<th property="rdfs:label">ticketDownloadUrl</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/URL">URL</a>
-<link property="http://schema.org/range" href="http://schema.org/URL"></link>
-
-</td>
-<td property="rdfs:comment">.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/ticketNumber">
-<th property="rdfs:label">ticketNumber</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-</td>
-<td property="rdfs:comment">The number or id of the ticket.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/ticketPrintUrl">
-<th property="rdfs:label">ticketPrintUrl</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/URL">URL</a>
-<link property="http://schema.org/range" href="http://schema.org/URL"></link>
-
-</td>
-<td property="rdfs:comment">.</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/ticketToken">
-<th property="rdfs:label">ticketToken</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Text">Text</a>
-<link property="http://schema.org/range" href="http://schema.org/Text"></link>
-
-or <a href="http://schema.org/URL">URL</a>
-<link property="http://schema.org/range" href="http://schema.org/URL"></link>
-
-</td>
-<td property="rdfs:comment">If the barcode image is hosted on your site, the value of the field is URL of the image, or a barcode or QR URI, such as "barcode128:AB34" (ISO-15417 barcodes), "qrCode:AB34" (QR codes), "aztecCode:AB34" (Aztec codes), "barcodeEAN:1234" (EAN codes) and "barcodeUPCA:1234" (UPCA codes).</td>
-</tr>
-
-
-<tr typeof="rdf:Property" resource="http://schema.org/underName">
-<th property="rdfs:label">underName</th>
-<td>
-<link property="http://schema.org/domain" href="http://schema.org/Reservation"></link>
-
-<a href="http://schema.org/Organization">Organization</a>
-<link property="http://schema.org/range" href="http://schema.org/Organization"></link>
-
-or <a href="http://schema.org/Person">Person</a>
-<link property="http://schema.org/range" href="http://schema.org/Person"></link>
-
-</td>
-<td property="rdfs:comment">The person or organization the reservation is for.</td>
-</tr>
-
-
-</table>
-
-
-
-
-
-
-<p class="narrow"><strong>More specific types:</strong></p>
-
-
-<table class="subclasses"><tr>
-<td><ul>
-
-<li><a href="http://schema.org/BusReservation">BusReservation</a>
-<link property="rdfs:subClassOf" href="http://schema.org/BusReservation"></link></li>
-
-<li><a href="http://schema.org/EventReservation">EventReservation</a>
-<link property="rdfs:subClassOf" href="http://schema.org/EventReservation"></link></li>
-
-<li><a href="http://schema.org/FlightReservation">FlightReservation</a>
-<link property="rdfs:subClassOf" href="http://schema.org/FlightReservation"></link></li>
-
-<li><a href="http://schema.org/FoodEstablishmentReservation">FoodEstablishmentReservation</a>
-<link property="rdfs:subClassOf" href="http://schema.org/FoodEstablishmentReservation"></link></li>
-
-</ul></td>
-
-<td><ul>
-
-<li><a href="http://schema.org/RentalCarReservation">RentalCarReservation</a>
-<link property="rdfs:subClassOf" href="http://schema.org/RentalCarReservation"></link></li>
-
-<li><a href="http://schema.org/ReservationPackage">ReservationPackage</a>
-<link property="rdfs:subClassOf" href="http://schema.org/ReservationPackage"></link></li>
-
-<li><a href="http://schema.org/TrainReservation">TrainReservation</a>
-<link property="rdfs:subClassOf" href="http://schema.org/TrainReservation"></link></li>
-
-</ul></td>
-</tr></table>
-
-
+    <div typeof="rdfs:Class" resource="http://schema.org/Reservation">
+      <span class="h" property="rdfs:label">Reservation</span>
+      <span property="rdfs:comment">Describes a reservation for travel, dining or an event. Some reservations require tickets.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use http://schema.org/Offer.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/BusReservation">
+      <span class="h" property="rdfs:label">BusReservation</span>
+      <span property="rdfs:comment">A reservation for bus travel.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/EventReservation">
+      <span class="h" property="rdfs:label">EventReservation</span>
+      <span property="rdfs:comment">A reservation for an event like a concert, sporting event, or lecture.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/FlightReservation">
+      <span class="h" property="rdfs:label">FlightReservation</span>
+      <span property="rdfs:comment">A reservation for air travel.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/FoodEstablishmentReservation">
+      <span class="h" property="rdfs:label">FoodEstablishmentReservation</span>
+      <span property="rdfs:comment">A reservation to dine at a food-related business.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/LodgingReservation">
+      <span class="h" property="rdfs:label">LodgingReservation</span>
+      <span property="rdfs:comment">A reservation for lodging at a hotel, motel, inn, etc.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/RentalCarReservation">
+      <span class="h" property="rdfs:label">RentalCarReservation</span>
+      <span property="rdfs:comment">A reservation for a rental car.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/TaxiReservation">
+      <span class="h" property="rdfs:label"> TaxiReservation</span>
+      <span property="rdfs:comment">A reservation for a taxi.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/TrainReservation">
+      <span class="h" property="rdfs:label"> TrainReservation</span>
+      <span property="rdfs:comment">A reservation for train travel.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/ReservationPackage">
+      <span class="h" property="rdfs:label">ReservationPackage</span>
+      <span property="rdfs:comment">A group of multiple reservations with common values for all sub-reservations.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/ReservationStatusType">
+      <span class="h" property="rdfs:label">ReservationStatusType</span>
+      <span property="rdfs:comment">Enumerated status values for Reservation.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Enumeration">Enumeration</a></span>
+    </div>
+    <div typeof="http://schema.org/ReservationStatusType" resource="http://schema.org/ReservationCancelled">
+      <span class="h" property="rdfs:label">ReservationCancelled</span>
+      <span property="rdfs:comment">The status for a previously confirmed reservation that is now cancelled.</span>
+      <span>type: <a href="http://schema.org/ReservationStatusType">ReservationStatusType</a></span>
+    </div>
+    <div typeof="http://schema.org/ReservationStatusType" resource="http://schema.org/ReservationConfirmed">
+      <span class="h" property="rdfs:label">ReservationConfirmed</span>
+      <span property="rdfs:comment">The status of a confirmed reservation.</span>
+      <span>type: <a href="http://schema.org/ReservationStatusType">ReservationStatusType</a></span>
+    </div>
+    <div typeof="http://schema.org/ReservationStatusType" resource="http://schema.org/ReservationHold">
+      <span class="h" property="rdfs:label">ReservationHold</span>
+      <span property="rdfs:comment">The status of a reservation on hold pending an update like credit card number or flight changes.</span>
+      <span>type: <a href="http://schema.org/ReservationStatusType">ReservationStatusType</a></span>
+    </div>
+    <div typeof="http://schema.org/ReservationStatusType" resource="http://schema.org/ReservationPending">
+      <span class="h" property="rdfs:label">ReservationPending</span>
+      <span property="rdfs:comment">The status of a reservation when a request has been sent, but not confirmed.</span>
+      <span>type: <a href="http://schema.org/ReservationStatusType">ReservationStatusType</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/BusTrip">
+      <span class="h" property="rdfs:label">Bus Trip</span>
+      <span property="rdfs:comment">A trip on a commercial bus line.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/TrainTrip">
+      <span class="h" property="rdfs:label">Train Trip</span>
+      <span property="rdfs:comment">A trip on a commercial train line.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/Flight">
+      <span class="h" property="rdfs:label">Flight</span>
+      <span property="rdfs:comment">An airline flight.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/Airline">
+      <span class="h" property="rdfs:label">Airline</span>
+      <span property="rdfs:comment">An organization that provides flights for passengers.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Organization">Organization</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/ProgramMembership">
+      <span class="h" property="rdfs:label">Program Membership</span>
+      <span property="rdfs:comment">Used to describe membership in a loyalty programs (e.g. "StarAliance"), traveler clubs (e.g. "AAA"), purchase clubs ("Safeway Club"), etc.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/Ticket">
+      <span class="h" property="rdfs:label">Ticket</span>
+      <span property="rdfs:comment">Used to describe a ticket to an event, a flight, a bus ride, etc.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/Seat">
+      <span class="h" property="rdfs:label">Seat</span>
+      <span property="rdfs:comment">Used to describe a seat, such as a reserved seat in an event reservation.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Intangible">Intangible</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/Taxi">
+      <span class="h" property="rdfs:label">Taxi</span>
+      <span property="rdfs:comment">A taxi.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Service">Service</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/Vehicle">
+      <span class="h" property="rdfs:label">Vehicle</span>
+      <span property="rdfs:comment">A vehicle.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Product">Product</a></span>
+    </div>
+    <div typeof="rdfs:Class" resource="http://schema.org/Car">
+      <span class="h" property="rdfs:label">Car</span>
+      <span property="rdfs:comment">An automobile.</span>
+      <span>Subclass of: <a property="rdfs:subClassOf" href="http://schema.org/Vehicle">Vehicle</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/reservationId">
+      <span class="h" property="rdfs:label">reservationId</span>
+      <span property="rdfs:comment">A unique identifier for the reservation.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/reservationStatus">
+      <span class="h" property="rdfs:label">reservationStatus</span>
+      <span property="rdfs:comment">The current status of the reservation.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/ReservationStatusType">ReservationStatusType</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/reservationFor">
+      <span class="h" property="rdfs:label">reservationFor</span>
+      <span property="rdfs:comment">The thing -- flight, event, restaurant,etc. being reserved.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Thing">Thing</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/underName">
+      <span class="h" property="rdfs:label">underName</span>
+      <span property="rdfs:comment">The person or organization the reservation or ticket is for.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Person">Person</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Organization">Organization</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/provider">
+      <span class="h" property="rdfs:label">provider</span>
+      <span property="rdfs:comment">The person or organization providing the service, reservation, or creative work.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/CreativeWork">CreativeWork</a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Service">Service</a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/BusTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Person">Person</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Organization">Organization</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/bookingAgent">
+      <span class="h" property="rdfs:label">bookingAgent</span>
+      <span property="rdfs:comment">If the reservation was not booked directly through the provider, the third-party booking agent can be recorded through this property.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Person">Person</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Organization">Organization</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/bookingTime">
+      <span class="h" property="rdfs:label">bookingTime</span>
+      <span property="rdfs:comment">The date and time the reservation was booked.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/modifiedTime">
+      <span class="h" property="rdfs:label">modifiedTime</span>
+      <span property="rdfs:comment">The date and time the reservation was modified.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/programMembershipUsed">
+      <span class="h" property="rdfs:label">programMembershipUsed</span>
+      <span property="rdfs:comment">Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/ProgramMembership">ProgramMembership</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/reservedTicket">
+      <span class="h" property="rdfs:label">reservedTicket</span>
+      <span property="rdfs:comment">A ticket associated with the reservation.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Ticket">Ticket</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/totalPrice">
+      <span class="h" property="rdfs:label">totalPrice</span>
+      <span property="rdfs:comment">The total price for the reservation or ticket, including applicable taxes, shipping, etc.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Number">Number</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/PriceSpecification">PriceSpecification</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/priceCurrency">
+      <span class="h" property="rdfs:label">priceCurrency</span>
+      <span property="rdfs:comment">The currency (in 3-letter ISO 4217 format) of the price or a price component, when attached to PriceSpecification and its subtypes.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Reservation">Reservation</a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+<div typeof="rdf:Property" resource="http://schema.org/membershipNumber">
+      <span class="h" property="rdfs:label">membershipNumber</span>
+      <span property="rdfs:comment">A unique identifier for the membership.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/ProgramMembership">ProgramMembership</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/programName">
+      <span class="h" property="rdfs:label">programName</span>
+      <span property="rdfs:comment">The program providing the membership.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/ProgramMembership">ProgramMembership</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/member">
+      <span class="h" property="rdfs:label">member</span>
+      <span property="rdfs:comment">The individual with the membership.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/ProgramMembership">ProgramMembership</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Person">Person</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/hostingOrganization">
+      <span class="h" property="rdfs:label">hostingOrganization</span>
+      <span property="rdfs:comment">The organization (airline, travelers' club, etc.) the membership is made with.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/ProgramMembership">ProgramMembership</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Organization">Organization</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/issuedBy">
+      <span class="h" property="rdfs:label">issuedBy</span>
+      <span property="rdfs:comment">The organization issuing the ticket or permit.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Organization">Organization</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/dateIssued">
+      <span class="h" property="rdfs:label">dateIssued</span>
+      <span property="rdfs:comment">The date the ticket was issued.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/ticketedSeat">
+      <span class="h" property="rdfs:label">ticketedSeat</span>
+      <span property="rdfs:comment">The seat associated with the ticket.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Seat">Seat</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/ticketNumber">
+      <span class="h" property="rdfs:label">ticketNumber</span>
+      <span property="rdfs:comment">The unique identifier for the ticket.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/ticketToken">
+      <span class="h" property="rdfs:label">ticketToken</span>
+      <span property="rdfs:comment">Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Ticket">Ticket</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/URL">URL</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/seatNumber">
+      <span class="h" property="rdfs:label">seatNumber</span>
+      <span property="rdfs:comment">The location of the reserved seat (e.g., 27).</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Seat">Seat</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/seatRow">
+      <span class="h" property="rdfs:label">seatRow</span>
+      <span property="rdfs:comment">The row location of the reserved seat (e.g., B).</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Seat">Seat</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/seatSection">
+      <span class="h" property="rdfs:label">seatSection</span>
+      <span property="rdfs:comment">The section location of the reserved seat (e.g. Orchestra).</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Seat">Seat</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/seatingType">
+      <span class="h" property="rdfs:label">seatingType</span>
+      <span property="rdfs:comment">The type/class of the seat.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Seat">Seat</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/QualitativeValue">QualitativeValue</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/subReservation">
+      <span class="h" property="rdfs:label">subReservation</span>
+      <span property="rdfs:comment">The individual reservations included in the package. Typically a repeated property.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/ReservationPackage"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Reservation">Reservation</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/boardingGroup">
+      <span class="h" property="rdfs:label">boardingGroup</span>
+      <span property="rdfs:comment">The airline-specific indicator of boarding order / preference.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/FlightReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/flightNumber">
+      <span class="h" property="rdfs:label">flightNumber</span>
+      <span property="rdfs:comment">The unique identifier for a flight.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/flightNumber">
+      <span class="h" property="rdfs:label">flightNumber</span>
+      <span property="rdfs:comment">The unique identifier for a flight.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/carrier">
+      <span class="h" property="rdfs:label">carrier</span>
+      <span property="rdfs:comment">The airline designated as the carrier for the flight.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Airline">Airline</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/departureTime">
+      <span class="h" property="rdfs:label">departureTime</span>
+      <span property="rdfs:comment">The expected departure time.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/BusTrip"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/arrivalTime">
+      <span class="h" property="rdfs:label">arrivalTime</span>
+      <span property="rdfs:comment">The expected arrival time.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/BusTrip"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+        <div typeof="rdf:Property" resource="http://schema.org/departureAirport">
+      <span class="h" property="rdfs:label">departureAirport</span>
+      <span property="rdfs:comment">The airport where the flight originates.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Airport">Airport</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/arrivalAirport">
+      <span class="h" property="rdfs:label">departureAirport</span>
+      <span property="rdfs:comment">The airport where the flight terminates.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Airport">Airport</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/departureGate">
+      <span class="h" property="rdfs:label">departureGate</span>
+      <span property="rdfs:comment">Identifier of the flight's departure gate.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/arrivalGate">
+      <span class="h" property="rdfs:label">arrivalGate</span>
+      <span property="rdfs:comment">Identifier of the flight's arrival gate.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/departureTerminal">
+      <span class="h" property="rdfs:label">departureTerminal</span>
+      <span property="rdfs:comment">Identifier of the flight's departure terminal.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/arrivalTerminal">
+      <span class="h" property="rdfs:label">arrivalTerminal</span>
+      <span property="rdfs:comment">Identifier of the flight's arrival terminal.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/aircraft">
+      <span class="h" property="rdfs:label">aircraft</span>
+      <span property="rdfs:comment">The kind of aircraft (e.g., "Boeing 747").</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Vehicle">Vehicle</a></span>
 </div>
-</body>
-</html>
+    <div typeof="rdf:Property" resource="http://schema.org/mealService">
+      <span class="h" property="rdfs:label">mealService</span>
+      <span property="rdfs:comment">Description of the meals that will be provided or available for purchase.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/estimatedFlightDuration">
+      <span class="h" property="rdfs:label">estimatedFlightDuration</span>
+      <span property="rdfs:comment">The estimated time the flight will take.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Duration">Duration</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/flightDistance">
+      <span class="h" property="rdfs:label">flightDistance</span>
+      <span property="rdfs:comment">The distance of the flight.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Distance">Distance</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/webCheckinTime">
+      <span class="h" property="rdfs:label">webCheckinTime</span>
+      <span property="rdfs:comment">The time when a passenger can check into the flight online.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Flight"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/iataCode">
+      <span class="h" property="rdfs:label">iataCode</span>
+      <span property="rdfs:comment">IATA identifier for an airline or airport</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Airline"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/Airport"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/startTime">
+      <span class="h" property="rdfs:label">departTime</span>
+      <span property="rdfs:comment">The time a FoodEstablishmentReservation is required to end.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/FoodEstablishmentReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/startTime">
+      <span class="h" property="rdfs:label">startTime</span>
+      <span property="rdfs:comment">When a FoodEstablishmentReservation starts or an Action was performed: start time. This is for actions that span a period of time. e.g. John wrote a book from *January* to December.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/FoodEstablishmentReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/partySize">
+      <span class="h" property="rdfs:label">partySize</span>
+      <span property="rdfs:comment">Number of people the reservation should accomodate.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/FoodEstablishmentReservation"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TaxiReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Number">Number</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/QuantitativeValue">QuantitativeValue</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/acceptsReservations">
+      <span class="h" property="rdfs:label">acceptsReservations</span>
+      <span property="rdfs:comment">Does the establishment accept reservations?</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/FoodEstablishment"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Boolean">Boolean</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/trainNumber">
+      <span class="h" property="rdfs:label">trainNumber</span>
+      <span property="rdfs:comment">The unique identifier for the train.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/trainName">
+      <span class="h" property="rdfs:label">trainName</span>
+      <span property="rdfs:comment">The name of the train (e.g. The Orient Express).</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/departureStation">
+      <span class="h" property="rdfs:label">departureStation</span>
+      <span property="rdfs:comment">The station from which the train departs.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/TrainStation">TrainStation</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/arrivalStation">
+      <span class="h" property="rdfs:label">arrivalStation</span>
+      <span property="rdfs:comment">The station where the train trip ends.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/TrainStation">TrainStation</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/departurePlatform">
+      <span class="h" property="rdfs:label">departurePlatform</span>
+      <span property="rdfs:comment">The platform from which the train departs.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/arrivalPlatform">
+      <span class="h" property="rdfs:label">arrivalPlatform</span>
+      <span property="rdfs:comment">The platform where the train arrives.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TrainTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/busNumber">
+      <span class="h" property="rdfs:label">busNumber</span>
+      <span property="rdfs:comment">The unique identifier for the trainbus.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/BusTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/busName">
+      <span class="h" property="rdfs:label">busName</span>
+      <span property="rdfs:comment">The name of the bus (e.g. Bolt Express).</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/BusTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/departureBusStop">
+      <span class="h" property="rdfs:label">departureBusStop</span>
+      <span property="rdfs:comment">The stop or station from which the bus departs.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/BusTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/BusStation">BusStation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/BusStop">BusStop</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/arrivalBusStop">
+      <span class="h" property="rdfs:label">arrivalBusStop</span>
+      <span property="rdfs:comment">The stop or station from which the bus arrives.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/BusTrip"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/BusStation">BusStation</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/BusStop">BusStop</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/pickupLocation">
+      <span class="h" property="rdfs:label">pickupLocation</span>
+      <span property="rdfs:comment">Where a taxi will pick up a passenger or a rental car can be picked up.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/RentalCarReservation"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TaxiReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Place">Place</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/dropoffLocation">
+      <span class="h" property="rdfs:label">dropoffLocation</span>
+      <span property="rdfs:comment">Where a rental car can be dropped off.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/RentalCarReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Place">Place</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/pickupTime">
+      <span class="h" property="rdfs:label">pickupTime</span>
+      <span property="rdfs:comment">When a taxi will pickup a passegner or a rental car can be picked up.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/RentalCarReservation"></a></span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/TaxiReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/dropoffTime">
+      <span class="h" property="rdfs:label">dropoffTime</span>
+      <span property="rdfs:comment">When a rental car can be dropped off.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/RentalCarReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/checkinTime">
+      <span class="h" property="rdfs:label">checkinTime</span>
+      <span property="rdfs:comment">The earliest someone may check into a lodging establishment.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/LodgingReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/checkoutTime">
+      <span class="h" property="rdfs:label">checkoutTime</span>
+      <span property="rdfs:comment">The latest someone may check out of a lodging establishment.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/LodgingReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/DateTime">DateTime</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/lodgingUnitType">
+      <span class="h" property="rdfs:label">lodgingUnitType</span>
+      <span property="rdfs:comment">Textual description of the unit type (including suite vs. room, size of bed, etc.).</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/LodgingReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/QualitativeValue">QualitativeValue</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/lodgingUnitDescription">
+      <span class="h" property="rdfs:label">lodgingUnitDescription</span>
+      <span property="rdfs:comment">A full description of the lodging unit.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/LodgingReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Text">Text</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/numAdults">
+      <span class="h" property="rdfs:label">numAdults</span>
+      <span property="rdfs:comment">The number of adults staying in the unit.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/LodgingReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Number">Number</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/QuantitativeValue">QuantitativeValue</a></span>
+    </div>
+    <div typeof="rdf:Property" resource="http://schema.org/numChildren">
+      <span class="h" property="rdfs:label">numChildren</span>
+      <span property="rdfs:comment">The number of children staying in the unit.</span>
+      <span>domain: <a property="http://schema.org/domain" href="http://schema.org/LodgingReservation"></a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/Number">Number</a></span>
+      <span>Range: <a property="http://schema.org/range" href="http://schema.org/QuantitativeValue">QuantitativeValue</a></span>
+    </div>