PREFIX dc:   <http://purl.org/dc/elements/1.1/>
PREFIX owl:  <http://www.w3.org/2002/07/owl#>
PREFIX rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

rdfs:Datatype  rdf:type   rdfs:Class;
        rdfs:comment      "The class of RDF datatypes.";
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "Datatype";
        rdfs:subClassOf   rdfs:Class .

rdfs:member  rdf:type     rdf:Property;
        rdfs:comment      "A member of the subject resource.";
        rdfs:domain       rdfs:Resource;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "member";
        rdfs:range        rdfs:Resource .

rdfs:ContainerMembershipProperty
        rdf:type          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:;
        rdfs:label        "ContainerMembershipProperty";
        rdfs:subClassOf   rdf:Property .

rdfs:Container  rdf:type  rdfs:Class;
        rdfs:comment      "The class of RDF containers.";
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "Container";
        rdfs:subClassOf   rdfs:Resource .

rdfs:Literal  rdf:type    rdfs:Class;
        rdfs:comment      "The class of literal values, eg. textual strings and integers.";
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "Literal";
        rdfs:subClassOf   rdfs:Resource .

rdfs:isDefinedBy  rdf:type  rdf:Property;
        rdfs:comment        "The definition of the subject resource.";
        rdfs:domain         rdfs:Resource;
        rdfs:isDefinedBy    rdfs:;
        rdfs:label          "isDefinedBy";
        rdfs:range          rdfs:Resource;
        rdfs:subPropertyOf  rdfs:seeAlso .

rdfs:seeAlso  rdf:type    rdf:Property;
        rdfs:comment      "Further information about the subject resource.";
        rdfs:domain       rdfs:Resource;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "seeAlso";
        rdfs:range        rdfs:Resource .

rdfs:range  rdf:type      rdf:Property;
        rdfs:comment      "A range of the subject property.";
        rdfs:domain       rdf:Property;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "range";
        rdfs:range        rdfs:Class .

rdfs:domain  rdf:type     rdf:Property;
        rdfs:comment      "A domain of the subject property.";
        rdfs:domain       rdf:Property;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "domain";
        rdfs:range        rdfs:Class .

rdfs:label  rdf:type      rdf:Property;
        rdfs:comment      "A human-readable name for the subject.";
        rdfs:domain       rdfs:Resource;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "label";
        rdfs:range        rdfs:Literal .

rdfs:comment  rdf:type    rdf:Property;
        rdfs:comment      "A description of the subject resource.";
        rdfs:domain       rdfs:Resource;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "comment";
        rdfs:range        rdfs:Literal .

rdfs:subPropertyOf  rdf:type  rdf:Property;
        rdfs:comment      "The subject is a subproperty of a property.";
        rdfs:domain       rdf:Property;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "subPropertyOf";
        rdfs:range        rdf:Property .

rdfs:subClassOf  rdf:type  rdf:Property;
        rdfs:comment      "The subject is a subclass of a class.";
        rdfs:domain       rdfs:Class;
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "subClassOf";
        rdfs:range        rdfs:Class .

rdfs:Class  rdf:type      rdfs:Class;
        rdfs:comment      "The class of classes.";
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "Class";
        rdfs:subClassOf   rdfs:Resource .

rdfs:Resource  rdf:type   rdfs:Class;
        rdfs:comment      "The class resource, everything.";
        rdfs:isDefinedBy  rdfs:;
        rdfs:label        "Resource" .

rdfs:   rdf:type      owl:Ontology;
        rdfs:seeAlso  <http://www.w3.org/2000/01/rdf-schema-more>;
        dc:title      "The RDF Schema vocabulary (RDFS)" .
