{
   "class" : {
      "rdf:type" : "rdfs:Class",
      "rdfs:comment" : "Used to describe a ticket to an event, a flight, a bus ride, etc.",
      "rdfs:label" : "Ticket",
      "rdfs:subClassOf" : "schema:Intangible"
   },
   "properties" : {
      "schema:dateIssued" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The date the ticket was issued.",
         "rdfs:label" : "dateIssued",
         "schema:domainIncludes" : "schema:Ticket",
         "schema:rangeIncludes" : [
            "schema:DateTime",
            "schema:Date"
         ]
      },
      "schema:issuedBy" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The organization issuing the ticket or permit.",
         "rdfs:label" : "issuedBy",
         "schema:domainIncludes" : [
            "schema:Ticket",
            "schema:Permit"
         ],
         "schema:rangeIncludes" : "schema:Organization"
      },
      "schema:priceCurrency" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
         "rdfs:label" : "priceCurrency",
         "schema:domainIncludes" : [
            "schema:Ticket",
            "schema:PriceSpecification",
            "schema:TradeAction",
            "schema:Offer",
            "schema:Reservation"
         ],
         "schema:rangeIncludes" : "schema:Text"
      },
      "schema:ticketNumber" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The unique identifier for the ticket.",
         "rdfs:label" : "ticketNumber",
         "schema:domainIncludes" : "schema:Ticket",
         "schema:rangeIncludes" : "schema:Text"
      },
      "schema:ticketToken" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.",
         "rdfs:label" : "ticketToken",
         "schema:domainIncludes" : "schema:Ticket",
         "schema:rangeIncludes" : [
            "schema:Text",
            "schema:URL"
         ]
      },
      "schema:ticketedSeat" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The seat associated with the ticket.",
         "rdfs:label" : "ticketedSeat",
         "schema:domainIncludes" : "schema:Ticket",
         "schema:rangeIncludes" : "schema:Seat"
      },
      "schema:totalPrice" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
         "rdfs:label" : "totalPrice",
         "schema:domainIncludes" : [
            "schema:Ticket",
            "schema:Reservation"
         ],
         "schema:rangeIncludes" : [
            "schema:PriceSpecification",
            "schema:Number",
            "schema:Text"
         ]
      },
      "schema:underName" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The person or organization the reservation or ticket is for.",
         "rdfs:label" : "underName",
         "schema:domainIncludes" : [
            "schema:Ticket",
            "schema:Reservation"
         ],
         "schema:rangeIncludes" : [
            "schema:Person",
            "schema:Organization"
         ]
      }
   }
}