@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .

schema:Product  rdf:type  rdfs:Class ;
        rdfs:comment  "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online." ;
        rdfs:label    "Product" .

schema:description  rdf:type  rdf:Property ;
        rdfs:comment  "A description of the item." ;
        rdfs:label    "description" .

schema:identifier  rdf:type  rdf:Property ;
        rdfs:comment  "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details." ;
        rdfs:label    "identifier" .

schema:name  rdf:type  rdf:Property ;
        rdfs:comment  "The name of the item." ;
        rdfs:label    "name" .

schema:logo  rdf:type  rdf:Property ;
        rdfs:comment  "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]." ;
        rdfs:label    "logo" .

schema:contactType  rdf:type  rdf:Property ;
        rdfs:comment  "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point." ;
        rdfs:label    "contactType" .

schema:license  rdf:type  rdf:Property ;
        rdfs:comment  "A license document that applies to this content, typically indicated by URL." ;
        rdfs:label    "license" .

schema:provider  rdf:type  rdf:Property ;
        rdfs:comment  "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller." ;
        rdfs:label    "provider" .

schema:ContactPoint  rdf:type  rdfs:Class ;
        rdfs:comment  "A contact point—for example, a Customer Complaints department." ;
        rdfs:label    "ContactPoint" .

schema:contactPoint  rdf:type  rdf:Property ;
        rdfs:comment  "A contact point for a person or organization." ;
        rdfs:label    "contactPoint" .

schema:url  rdf:type  rdf:Property ;
        rdfs:comment  "URL of the item." ;
        rdfs:label    "url" .
