@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#> .
@prefix vann: <http://purl.org/vocab/vann/> .

rdf:rest  rdf:type        rdf:Property ;
        rdfs:comment      "The rest of the subject RDF list after the first item." ;
        rdfs:domain       rdf:List ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "rest" ;
        rdfs:range        rdf:List .

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: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 .

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

rdf:value  rdf:type       rdf:Property ;
        rdfs:comment      "Idiomatic property used for structured values." ;
        rdfs:domain       rdfs:Resource ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "value" ;
        rdfs:range        rdfs:Resource .

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

rdf:predicate  rdf:type   rdf:Property ;
        rdfs:comment      "The predicate of the subject RDF statement." ;
        rdfs:domain       rdf:Statement ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "predicate" ;
        rdfs:range        rdfs:Resource .

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

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 .

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

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

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

rdf:type  rdf:type        rdf:Property ;
        rdfs:comment      "The subject is an instance of a class." ;
        rdfs:domain       rdfs:Resource ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "type" ;
        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" .

rdf:subject  rdf:type     rdf:Property ;
        rdfs:comment      "The subject of the subject RDF statement." ;
        rdfs:domain       rdf:Statement ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "subject" ;
        rdfs:range        rdfs:Resource .

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

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 .

rdf:XMLLiteral  rdf:type  rdfs:Datatype ;
        rdfs:comment      "The class of XML literal values." ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "XMLLiteral" ;
        rdfs:subClassOf   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: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: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 .

rdf:object  rdf:type      rdf:Property ;
        rdfs:comment      "The object of the subject RDF statement." ;
        rdfs:domain       rdf:Statement ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "object" ;
        rdfs:range        rdfs:Resource .

rdfs:   rdf:type                       owl:Ontology ;
        rdfs:seeAlso                   <http://www.w3.org/2000/01/rdf-schema-more> ;
        vann:preferredNamespacePrefix  "rdfs" .

rdf:nil  rdf:type         rdf:List ;
        rdfs:comment      "The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it." ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "nil" .

rdfs:ContainerMembershipProperty
        rdf:type          rdfs:Class ;
        rdfs:comment      "The class of container membership properties, rdf:_1, rdf:_2, ...,\n                    all of which are sub-properties of 'member'." ;
        rdfs:isDefinedBy  rdfs: ;
        rdfs:label        "ContainerMembershipProperty" ;
        rdfs:subClassOf   rdf:Property .

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: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 .

rdf:first  rdf:type       rdf:Property ;
        rdfs:comment      "The first item in the subject RDF list." ;
        rdfs:domain       rdf:List ;
        rdfs:isDefinedBy  rdf: ;
        rdfs:label        "first" ;
        rdfs:range        rdfs:Resource .

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 .

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