|
| 1 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 2 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 3 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 4 | +@prefix dc: <http://purl.org/dc/elements/1.1/> . |
| 5 | + |
| 6 | +<http://www.w3.org/1999/02/22-rdf-syntax-ns#> a owl:Ontology ; |
| 7 | + dc:title "The RDF Concepts Vocabulary (RDF)" ; |
| 8 | + dc:date "2019-12-16" ; |
| 9 | + dc:description "This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts." . |
| 10 | + |
| 11 | +rdf:HTML a rdfs:Datatype ; |
| 12 | + rdfs:subClassOf rdfs:Literal ; |
| 13 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 14 | + rdfs:seeAlso <http://www.w3.org/TR/rdf11-concepts/#section-html> ; |
| 15 | + rdfs:label "HTML" ; |
| 16 | + rdfs:comment "The datatype of RDF literals storing fragments of HTML content" . |
| 17 | + |
| 18 | +rdf:langString a rdfs:Datatype ; |
| 19 | + rdfs:subClassOf rdfs:Literal ; |
| 20 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 21 | + rdfs:seeAlso <http://www.w3.org/TR/rdf11-concepts/#section-Graph-Literal> ; |
| 22 | + rdfs:label "langString" ; |
| 23 | + rdfs:comment "The datatype of language-tagged string values" . |
| 24 | + |
| 25 | +rdf:PlainLiteral a rdfs:Datatype ; |
| 26 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 27 | + rdfs:subClassOf rdfs:Literal ; |
| 28 | + rdfs:seeAlso <http://www.w3.org/TR/rdf-plain-literal/> ; |
| 29 | + rdfs:label "PlainLiteral" ; |
| 30 | + rdfs:comment "The class of plain (i.e. untyped) literal values, as used in RIF and OWL 2" . |
| 31 | + |
| 32 | +rdf:type a rdf:Property ; |
| 33 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 34 | + rdfs:label "type" ; |
| 35 | + rdfs:comment "The subject is an instance of a class." ; |
| 36 | + rdfs:range rdfs:Class ; |
| 37 | + rdfs:domain rdfs:Resource . |
| 38 | + |
| 39 | +rdf:Property a rdfs:Class ; |
| 40 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 41 | + rdfs:label "Property" ; |
| 42 | + rdfs:comment "The class of RDF properties." ; |
| 43 | + rdfs:subClassOf rdfs:Resource . |
| 44 | + |
| 45 | +rdf:Statement a rdfs:Class ; |
| 46 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 47 | + rdfs:label "Statement" ; |
| 48 | + rdfs:subClassOf rdfs:Resource ; |
| 49 | + rdfs:comment "The class of RDF statements." . |
| 50 | + |
| 51 | +rdf:subject a rdf:Property ; |
| 52 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 53 | + rdfs:label "subject" ; |
| 54 | + rdfs:comment "The subject of the subject RDF statement." ; |
| 55 | + rdfs:domain rdf:Statement ; |
| 56 | + rdfs:range rdfs:Resource . |
| 57 | + |
| 58 | +rdf:predicate a rdf:Property ; |
| 59 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 60 | + rdfs:label "predicate" ; |
| 61 | + rdfs:comment "The predicate of the subject RDF statement." ; |
| 62 | + rdfs:domain rdf:Statement ; |
| 63 | + rdfs:range rdfs:Resource . |
| 64 | + |
| 65 | +rdf:object a rdf:Property ; |
| 66 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 67 | + rdfs:label "object" ; |
| 68 | + rdfs:comment "The object of the subject RDF statement." ; |
| 69 | + rdfs:domain rdf:Statement ; |
| 70 | + rdfs:range rdfs:Resource . |
| 71 | + |
| 72 | +rdf:Bag a rdfs:Class ; |
| 73 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 74 | + rdfs:label "Bag" ; |
| 75 | + rdfs:comment "The class of unordered containers." ; |
| 76 | + rdfs:subClassOf rdfs:Container . |
| 77 | + |
| 78 | +rdf:Seq a rdfs:Class ; |
| 79 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 80 | + rdfs:label "Seq" ; |
| 81 | + rdfs:comment "The class of ordered containers." ; |
| 82 | + rdfs:subClassOf rdfs:Container . |
| 83 | + |
| 84 | +rdf:Alt a rdfs:Class ; |
| 85 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 86 | + rdfs:label "Alt" ; |
| 87 | + rdfs:comment "The class of containers of alternatives." ; |
| 88 | + rdfs:subClassOf rdfs:Container . |
| 89 | + |
| 90 | +rdf:value a rdf:Property ; |
| 91 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 92 | + rdfs:label "value" ; |
| 93 | + rdfs:comment "Idiomatic property used for structured values." ; |
| 94 | + rdfs:domain rdfs:Resource ; |
| 95 | + rdfs:range rdfs:Resource . |
| 96 | + |
| 97 | +rdf:List a rdfs:Class ; |
| 98 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 99 | + rdfs:label "List" ; |
| 100 | + rdfs:comment "The class of RDF Lists." ; |
| 101 | + rdfs:subClassOf rdfs:Resource . |
| 102 | + |
| 103 | +rdf:nil a rdf:List ; |
| 104 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 105 | + rdfs:label "nil" ; |
| 106 | + 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." . |
| 107 | + |
| 108 | +rdf:first a rdf:Property ; |
| 109 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 110 | + rdfs:label "first" ; |
| 111 | + rdfs:comment "The first item in the subject RDF list." ; |
| 112 | + rdfs:domain rdf:List ; |
| 113 | + rdfs:range rdfs:Resource . |
| 114 | + |
| 115 | +rdf:rest a rdf:Property ; |
| 116 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 117 | + rdfs:label "rest" ; |
| 118 | + rdfs:comment "The rest of the subject RDF list after the first item." ; |
| 119 | + rdfs:domain rdf:List ; |
| 120 | + rdfs:range rdf:List . |
| 121 | + |
| 122 | +rdf:XMLLiteral a rdfs:Datatype ; |
| 123 | + rdfs:subClassOf rdfs:Literal ; |
| 124 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 125 | + rdfs:label "XMLLiteral" ; |
| 126 | + rdfs:comment "The datatype of XML literal values." . |
| 127 | + |
| 128 | +rdf:JSON a rdfs:Datatype ; |
| 129 | + rdfs:label "JSON" ; |
| 130 | + rdfs:comment "The datatype of RDF literals storing JSON content." ; |
| 131 | + rdfs:subClassOf rdfs:Literal ; |
| 132 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 133 | + rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-json-datatype> . |
| 134 | + |
| 135 | +rdf:CompoundLiteral a rdfs:Class ; |
| 136 | + rdfs:label "CompoundLiteral" ; |
| 137 | + rdfs:comment "A class representing a compound literal." ; |
| 138 | + rdfs:subClassOf rdfs:Resource ; |
| 139 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 140 | + rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-compoundliteral-class-and-the-rdf-language-and-rdf-direction-properties> . |
| 141 | + |
| 142 | +rdf:language a rdf:Property ; |
| 143 | + rdfs:label "language" ; |
| 144 | + rdfs:comment "The language component of a CompoundLiteral." ; |
| 145 | + rdfs:domain rdf:CompoundLiteral ; |
| 146 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 147 | + rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-compoundliteral-class-and-the-rdf-language-and-rdf-direction-properties> . |
| 148 | + |
| 149 | +rdf:direction a rdf:Property ; |
| 150 | + rdfs:label "direction" ; |
| 151 | + rdfs:comment "The base direction component of a CompoundLiteral." ; |
| 152 | + rdfs:domain rdf:CompoundLiteral ; |
| 153 | + rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ; |
| 154 | + rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-compoundliteral-class-and-the-rdf-language-and-rdf-direction-properties> . |
0 commit comments