@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix dct: . dct:title "The RDF Schema vocabulary (RDFS)" ; a owl:Ontology ; rdfs:seeAlso . rdfs:Class a rdfs:Class ; rdfs:comment "The class of classes." ; rdfs:isDefinedBy ; rdfs:label "Class" ; rdfs:subClassOf rdfs:Resource . rdfs:Container a rdfs:Class ; rdfs:comment "The class of RDF containers." ; rdfs:isDefinedBy ; rdfs:label "Container" ; rdfs:subClassOf rdfs:Resource . rdfs:ContainerMembershipProperty a rdfs:Class ; rdfs:comment "The class of container membership properties, rdf:_1, rdf:_2, ..., all of which are sub-properties of 'member'." ; rdfs:isDefinedBy ; rdfs:label "Container Membership Property" ; rdfs:subClassOf rdf:Property . rdfs:Datatype a rdfs:Class ; rdfs:comment "The class of RDF datatypes." ; rdfs:isDefinedBy ; rdfs:label "Datatype" ; rdfs:subClassOf rdfs:Class . rdfs:Literal a rdfs:Class ; rdfs:comment "The class of literal values, eg. textual strings and integers." ; rdfs:isDefinedBy ; rdfs:label "Literal" ; rdfs:subClassOf rdfs:Resource . rdfs:Resource a rdfs:Class ; rdfs:comment "The class resource, everything." ; rdfs:isDefinedBy ; rdfs:label "Resource" . rdfs:comment a rdf:Property ; rdfs:comment "A description of the subject resource." ; rdfs:domain rdfs:Resource ; rdfs:isDefinedBy ; rdfs:label "comment" ; rdfs:range rdfs:Literal . rdfs:domain a rdf:Property ; rdfs:comment "A domain of the subject property." ; rdfs:domain rdf:Property ; rdfs:isDefinedBy ; rdfs:label "domain" ; rdfs:range rdfs:Class . rdfs:isDefinedBy a rdf:Property ; rdfs:comment "The defininition of the subject resource." ; rdfs:domain rdfs:Resource ; rdfs:isDefinedBy ; rdfs:label "is defined by" ; rdfs:range rdfs:Resource ; rdfs:subPropertyOf rdfs:seeAlso . rdfs:label a rdf:Property ; rdfs:comment "A human-readable name for the subject." ; rdfs:domain rdfs:Resource ; rdfs:isDefinedBy ; rdfs:label "label" ; rdfs:range rdfs:Literal . rdfs:member a rdf:Property ; rdfs:comment "A member of the subject resource." ; rdfs:domain rdfs:Resource ; rdfs:isDefinedBy ; rdfs:label "member" ; rdfs:range rdfs:Resource . rdfs:range a rdf:Property ; rdfs:comment "A range of the subject property." ; rdfs:domain rdf:Property ; rdfs:isDefinedBy ; rdfs:label "range" ; rdfs:range rdfs:Class . rdfs:seeAlso a rdf:Property ; rdfs:comment "Further information about the subject resource." ; rdfs:domain rdfs:Resource ; rdfs:isDefinedBy ; rdfs:label "see also" ; rdfs:range rdfs:Resource . rdfs:subClassOf a rdf:Property ; rdfs:comment "The subject is a subclass of a class." ; rdfs:domain rdfs:Class ; rdfs:isDefinedBy ; rdfs:label "sub-class of" ; rdfs:range rdfs:Class . rdfs:subPropertyOf a rdf:Property ; rdfs:comment "The subject is a subproperty of a property." ; rdfs:domain rdf:Property ; rdfs:isDefinedBy ; rdfs:label "sub-property of" ; rdfs:range rdf:Property .