{
   "class" : {
      "rdf:type" : "rdfs:Class",
      "rdfs:comment" : "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.",
      "rdfs:label" : "AggregateOffer",
      "rdfs:subClassOf" : "schema:Offer"
   },
   "properties" : {
      "schema:highPrice" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The highest price of all offers available.\\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" : "highPrice",
         "schema:domainIncludes" : "schema:AggregateOffer",
         "schema:rangeIncludes" : [
            "schema:Text",
            "schema:Number"
         ]
      },
      "schema:lowPrice" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The lowest price of all offers available.\\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" : "lowPrice",
         "schema:domainIncludes" : "schema:AggregateOffer",
         "schema:rangeIncludes" : [
            "schema:Text",
            "schema:Number"
         ]
      },
      "schema:offerCount" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The number of offers for the product.",
         "rdfs:label" : "offerCount",
         "schema:domainIncludes" : "schema:AggregateOffer",
         "schema:rangeIncludes" : "schema:Integer"
      },
      "schema:offers" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.\n      ",
         "rdfs:label" : "offers",
         "schema:domainIncludes" : [
            "schema:MenuItem",
            "schema:Product",
            "schema:Event",
            "schema:EducationalOccupationalProgram",
            "schema:AggregateOffer",
            "schema:Trip",
            "schema:Service",
            "schema:CreativeWork"
         ],
         "schema:inverseOf" : "schema:itemOffered",
         "schema:rangeIncludes" : [
            "schema:Demand",
            "schema:Offer"
         ],
         "schema:source" : "https://github.com/schemaorg/schemaorg/issues/2289"
      }
   }
}