@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix dct: . dct:description "This is the RDF Schema for the RDF vocabulary defined in the RDF namespace." ; dct:title "The RDF Vocabulary (RDF)" ; a owl:Ontology ; rdfs:seeAlso . rdf:Alt a rdfs:Class ; rdfs:comment "The class of containers of alternatives." ; rdfs:isDefinedBy ; rdfs:label "Alt" ; rdfs:subClassOf rdfs:Container . rdf:Bag a rdfs:Class ; rdfs:comment "The class of unordered containers." ; rdfs:isDefinedBy ; rdfs:label "Bag" ; rdfs:subClassOf rdfs:Container . rdf:List a rdfs:Class ; rdfs:comment "The class of RDF Lists." ; rdfs:isDefinedBy ; rdfs:label "List" ; rdfs:subClassOf rdfs:Resource . rdf:PlainLiteral a rdfs:Datatype ; rdfs:comment "The class of plain (i.e. untyped) literal values." ; rdfs:isDefinedBy ; rdfs:label "Plain Literal" ; rdfs:subClassOf rdfs:Literal . rdf:Property a rdfs:Class ; rdfs:comment "The class of RDF properties." ; rdfs:isDefinedBy ; rdfs:label "Property" ; rdfs:subClassOf rdfs:Resource . rdf:Seq a rdfs:Class ; rdfs:comment "The class of ordered containers." ; rdfs:isDefinedBy ; rdfs:label "Seq" ; rdfs:subClassOf rdfs:Container . rdf:Statement a rdfs:Class ; rdfs:comment "The class of RDF statements." ; rdfs:isDefinedBy ; rdfs:label "Statement" ; rdfs:subClassOf rdfs:Resource . rdf:XMLLiteral a rdfs:Datatype ; rdfs:comment "The class of XML literal values." ; rdfs:isDefinedBy ; rdfs:label "XML Literal" ; rdfs:subClassOf rdfs:Literal . rdf:first a rdf:Property ; rdfs:comment "The first item in the subject RDF list." ; rdfs:domain rdf:List ; rdfs:isDefinedBy ; rdfs:label "first" ; rdfs:range rdfs:Resource . rdf:nil a 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 ; rdfs:label "nil" . rdf:object a rdf:Property ; rdfs:comment "The object of the subject RDF statement." ; rdfs:domain rdf:Statement ; rdfs:isDefinedBy ; rdfs:label "object" ; rdfs:range rdfs:Resource . rdf:predicate a rdf:Property ; rdfs:comment "The predicate of the subject RDF statement." ; rdfs:domain rdf:Statement ; rdfs:isDefinedBy ; rdfs:label "predicate" ; rdfs:range rdfs:Resource . rdf:rest a rdf:Property ; rdfs:comment "The rest of the subject RDF list after the first item." ; rdfs:domain rdf:List ; rdfs:isDefinedBy ; rdfs:label "rest" ; rdfs:range rdf:List . rdf:subject a rdf:Property ; rdfs:comment "The subject of the subject RDF statement." ; rdfs:domain rdf:Statement ; rdfs:isDefinedBy ; rdfs:label "subject" ; rdfs:range rdfs:Resource . rdf:type a rdf:Property ; rdfs:comment "The subject is an instance of a class." ; rdfs:domain rdfs:Resource ; rdfs:isDefinedBy ; rdfs:label "type" ; rdfs:range rdfs:Class . rdf:value a rdf:Property ; rdfs:comment "Idiomatic property used for structured values." ; rdfs:domain rdfs:Resource ; rdfs:isDefinedBy ; rdfs:label "value" ; rdfs:range rdfs:Resource . ef='#n49'>49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169