http.rdfs 19.1 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
   xmlns:owl="http://www.w3.org/2002/07/owl#">

<rdf:Description rdf:about="http://www.w3.org/2006/http#">
 <rdfs:comment xml:lang="en">A namespace for describing HTTP messages
   (http://www.w3.org/Protocols/rfc2616/rfc2616.html)</rdfs:comment>
  <rdfs:comment>This has been obsoleted by http://www.w3.org/2011/http.rdfs</rdfs:comment>
  <rdfs:seeAlso rdf:resource="http://www.w3.org/2011/http.rdfs" />
</rdf:Description>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#Connection">
  <rdfs:label xml:lang="en">Connection</rdfs:label>
  <rdfs:comment xml:lang="en">An HTTP connection</rdfs:comment>
  <rdfs:subClassOf rdf:parseType="Collection">
    <owl:Restriction>
      <owl:onProperty rdf:resource="http://www.w3.org/2006/http#connectionAuthority"/>
      <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    </owl:Restriction>
  </rdfs:subClassOf>
</rdfs:Class>

<rdf:Property rdf:about="http://www.w3.org/2006/http#connectionAuthority">
  <rdfs:label xml:lang="en">Connection authority</rdfs:label>
  <rdfs:comment xml:lang="en">An HTTP Connection authority</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#Connection"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#request">
  <rdfs:label xml:lang="en">Request</rdfs:label>
  <rdfs:comment xml:lang="en">Has an HTTP request</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#Connection"/>
  <rdfs:range rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdf:Property>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#Request">
  <rdfs:label xml:lang="en">Request</rdfs:label>
  <rdfs:comment xml:lang="en">An HTTP request</rdfs:comment>
</rdfs:Class>

<!-- request methods start -->
<rdfs:Class rdf:about="http://www.w3.org/2006/http#OptionsRequest">
  <rdfs:label xml:lang="en">Options</rdfs:label>
  <rdfs:comment xml:lang="en">The OPTIONS request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#GetRequest">
  <rdfs:label xml:lang="en">Get</rdfs:label>
  <rdfs:comment xml:lang="en">The GET request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#HeadRequest">
  <rdfs:label xml:lang="en">Head</rdfs:label>
  <rdfs:comment xml:lang="en">The HEAD request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#PostRequest">
  <rdfs:label xml:lang="en">Post</rdfs:label>
  <rdfs:comment xml:lang="en">The POST request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#PutRequest">
  <rdfs:label xml:lang="en">Put</rdfs:label>
  <rdfs:comment xml:lang="en">The PUT request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#DeleteRequest">
  <rdfs:label xml:lang="en">Delete</rdfs:label>
  <rdfs:comment xml:lang="en">The DELETE request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#TraceRequest">
  <rdfs:label xml:lang="en">Trace</rdfs:label>
  <rdfs:comment xml:lang="en">The TRACE request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#ConnectRequest">
  <rdfs:label xml:lang="en">Connect</rdfs:label>
  <rdfs:comment xml:lang="en">The CONNECT request</rdfs:comment>
  <rdfs:subClassOf rdf:resource="http://www.w3.org/2006/http#Request"/>
</rdfs:Class>
<!-- request methods end -->

<rdf:Property rdf:about="http://www.w3.org/2006/http#requestURI">
  <rdfs:label xml:lang="en">Request URI</rdfs:label>
  <rdfs:comment xml:lang="en">Has an HTTP request URI</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#Request"/>
  <rdfs:range rdf:resource="http://www.w3.org/2006/http#RequestURI"/>
</rdf:Property>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#RequestURI">
  <rdfs:label xml:lang="en">Request URI</rdfs:label>
  <rdfs:comment xml:lang="en">The HTTP request URI</rdfs:comment>
  <owl:oneOf rdf:parseType="Collection">
    <owl:Thing rdf:about="http://www.w3.org/2006/http#asterisk">
      <rdfs:label xml:lang="en">Asterisk</rdfs:label>
      <rdfs:comment xml:lang="en">An asterisk used as request URI</rdfs:comment>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal"/>
  </owl:oneOf>
</rdfs:Class>

<rdf:Property rdf:about="http://www.w3.org/2006/http#absoluteURI">
  <rdfs:label xml:lang="en">Absolute request URI</rdfs:label>
  <rdfs:comment xml:lang="en">An absolute request URI</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/http#requestURI"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#abs_path">
  <rdfs:label xml:lang="en">Absolute path</rdfs:label>
  <rdfs:comment xml:lang="en">An absolute path used as request URI</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/http#requestURI"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#authority">
  <rdfs:label xml:lang="en">Authority</rdfs:label>
  <rdfs:comment xml:lang="en">An authority used as request URI</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/http#requestURI"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#response">
  <rdfs:label xml:lang="en">Response</rdfs:label>
  <rdfs:comment xml:lang="en">Has an HTTP response</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#Request"/>
  <rdfs:range rdf:resource="http://www.w3.org/2006/http#Response"/>
</rdf:Property>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#Response">
  <rdfs:label xml:lang="en">Response</rdfs:label>
  <rdfs:comment xml:lang="en">The HTTP Response</rdfs:comment>
</rdfs:Class>

<rdf:Property rdf:about="http://www.w3.org/2006/http#responseCode">
  <rdfs:label xml:lang="en">Response code</rdfs:label>
  <rdfs:comment xml:lang="en">Has an HTTP response code</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#Response"/>
  <rdfs:range>
    <owl:Class>
      <owl:unionOf rdf:parseType="Collection">
        <owl:Class rdf:about="http://www.w3.org/2006/http#ResponseCode"/>
        <owl:Class rdf:about="http://www.w3.org/2001/XMLSchema#positiveInteger"/>
      </owl:unionOf>
    </owl:Class>
  </rdfs:range>
</rdf:Property>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#ResponseCode">
  <rdfs:label xml:lang="en">Response code</rdfs:label>
  <rdfs:comment xml:lang="en">The HTTP Response Code</rdfs:comment>
  <owl:oneOf rdf:parseType="Collection">
    <owl:Thing rdf:about="http://www.w3.org/2006/http#100">
      <rdfs:label xml:lang="en">Continue</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#101">
      <rdfs:label xml:lang="en">Switching Protocols</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#200">
      <rdfs:label xml:lang="en">OK</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#201">
      <rdfs:label xml:lang="en">Created</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#202">
      <rdfs:label xml:lang="en">Accepted</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#203">
      <rdfs:label xml:lang="en">Non-Authoritative Information</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#204">
      <rdfs:label xml:lang="en">No Content</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#205">
      <rdfs:label xml:lang="en">Reset Content</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#206">
      <rdfs:label xml:lang="en">Partial Content</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#300">
      <rdfs:label xml:lang="en">Multiple Choices</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#301">
      <rdfs:label xml:lang="en">Moved Permanently</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#302">
      <rdfs:label xml:lang="en">Found</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#303">
      <rdfs:label xml:lang="en">See Other</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#304">
      <rdfs:label xml:lang="en">Not Modified</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#305">
      <rdfs:label xml:lang="en">Use Proxy</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#306">
      <rdfs:label xml:lang="en">(Unused)</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#307">
      <rdfs:label xml:lang="en">Temporary Redirect</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#400">
      <rdfs:label xml:lang="en">Bad Request</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#401">
      <rdfs:label xml:lang="en">Unauthorized</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#402">
      <rdfs:label xml:lang="en">Payment Required</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#403">
      <rdfs:label xml:lang="en">Forbidden</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#404">
      <rdfs:label xml:lang="en">Not Found</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#405">
      <rdfs:label xml:lang="en">Method Not Allowed</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#406">
      <rdfs:label xml:lang="en">Not Acceptable</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#407">
      <rdfs:label xml:lang="en">Proxy Authentication Required</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#408">
      <rdfs:label xml:lang="en">Request Timeout</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#409">
      <rdfs:label xml:lang="en">Conflict</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#410">
      <rdfs:label xml:lang="en">Gone</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#411">
      <rdfs:label xml:lang="en">Length Required</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#412">
      <rdfs:label xml:lang="en">Precondition Failed</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#413">
      <rdfs:label xml:lang="en">Request Entity Too Large</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#414">
      <rdfs:label xml:lang="en">Request-URI Too Long</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#415">
      <rdfs:label xml:lang="en">Unsupported Media Type</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#416">
      <rdfs:label xml:lang="en">Requested Range Not Satisfiable</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#417">
      <rdfs:label xml:lang="en">Expectation Failed</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#500">
      <rdfs:label xml:lang="en">Internal Server Error</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#501">
      <rdfs:label xml:lang="en">Not Implemented</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#502">
      <rdfs:label xml:lang="en">Bad Gateway</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#503">
      <rdfs:label xml:lang="en">Service Unavailable</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#504">
      <rdfs:label xml:lang="en">Gateway Timeout</rdfs:label>
    </owl:Thing>
    <owl:Thing rdf:about="http://www.w3.org/2006/http#505">
      <rdfs:label xml:lang="en">HTTP Version Not Supported</rdfs:label>
    </owl:Thing>
    <!-- new response code, stub for subclassing -->
    <owl:Thing rdf:about="http://www.w3.org/2006/http#NewResponseCode"/>
  </owl:oneOf>
</rdfs:Class>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#NewResponseCode">
  <rdfs:label xml:lang="en">New Response Code</rdfs:label>
  <rdfs:comment xml:lang="en">New HTTP Response Code. If you want to define new header names, subclass this stub.</rdfs:comment>
</rdfs:Class>

<rdf:Property rdf:about="http://www.w3.org/2006/http#header">
  <rdfs:label xml:lang="en">Header</rdfs:label>
  <rdfs:comment xml:lang="en">Has a header</rdfs:comment>
  <rdfs:range rdf:resource="http://www.w3.org/2006/http#MessageHeader"/>
</rdf:Property>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#MessageHeader">
  <rdfs:label xml:lang="en">Message header</rdfs:label>
  <rdfs:comment xml:lang="en">A message header according to section 4.2 of HTTP 1.1</rdfs:comment>
  <rdfs:subClassOf rdf:parseType="Collection">
    <owl:Restriction>
      <owl:onProperty rdf:resource="http://www.w3.org/2006/http#fieldName"/>
      <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    </owl:Restriction>
    <owl:Restriction>
      <owl:onProperty rdf:resource="http://www.w3.org/2006/http#fieldValue"/>
      <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    </owl:Restriction>
  </rdfs:subClassOf>
</rdfs:Class>

<rdf:Property rdf:about="http://www.w3.org/2006/http#fieldName">
  <rdfs:label xml:lang="en">Field name</rdfs:label>
  <rdfs:comment xml:lang="en">Has a field name</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#MessageHeader"/>
  <rdfs:range>
    <rdfs:Class>
      <owl:unionOf rdf:parseType="Collection">
        <owl:Class rdf:about="http://www.w3.org/2006/http#HeaderName"/>
        <owl:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal"/>
      </owl:unionOf>
    </rdfs:Class>
  </rdfs:range>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#fieldValue">
  <rdfs:label xml:lang="en">Field value</rdfs:label>
  <rdfs:comment xml:lang="en">Has a field value</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#MessageHeader"/>
</rdf:Property>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#HeaderElement">
  <rdfs:label xml:lang="en">Header element</rdfs:label>
  <rdfs:comment xml:lang="en">An element of a comma-separated list in a field value</rdfs:comment>
  <rdfs:subClassOf rdf:parseType="Collection">
    <owl:Restriction>
      <owl:onProperty rdf:resource="http://www.w3.org/2006/http#elementName"/>
      <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    </owl:Restriction>
    <owl:Restriction>
      <owl:onProperty rdf:resource="http://www.w3.org/2006/http#elementValue"/>
      <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">0</owl:minCardinality>
      <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    </owl:Restriction>
  </rdfs:subClassOf>
</rdfs:Class>

<rdf:Property rdf:about="http://www.w3.org/2006/http#elementName">
  <rdfs:label xml:lang="en">Element name</rdfs:label>
  <rdfs:comment xml:lang="en">Has an element name</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#HeaderElement"/>
  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#elementValue">
  <rdfs:label xml:lang="en">Element value</rdfs:label>
  <rdfs:comment xml:lang="en">Has an element value</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#HeaderElement"/>
  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#param">
  <rdfs:label xml:lang="en">Parameter</rdfs:label>
  <rdfs:comment xml:lang="en">Has a parameter</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#HeaderElement"/>
  <rdfs:range rdf:resource="http://www.w3.org/2006/http#Param"/>
</rdf:Property>

<rdfs:Class rdf:about="http://www.w3.org/2006/http#Param">
  <rdfs:label xml:lang="en">Parameter</rdfs:label>
  <rdfs:comment xml:lang="en">A parameter for a header element</rdfs:comment>
  <rdfs:subClassOf rdf:parseType="Collection">
    <owl:Restriction>
      <owl:onProperty rdf:resource="http://www.w3.org/2006/http#paramName"/>
      <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    </owl:Restriction>
    <owl:Restriction>
      <owl:onProperty rdf:resource="http://www.w3.org/2006/http#paramValue"/>
      <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
      <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    </owl:Restriction>
  </rdfs:subClassOf>
</rdfs:Class>

<rdf:Property rdf:about="http://www.w3.org/2006/http#paramName">
  <rdfs:label xml:lang="en">Parameter name</rdfs:label>
  <rdfs:comment xml:lang="en">Has a parameter name</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#Param"/>
  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#paramValue">
  <rdfs:label xml:lang="en">Parameter value</rdfs:label>
  <rdfs:comment xml:lang="en">Has a parameter value</rdfs:comment>
  <rdfs:domain rdf:resource="http://www.w3.org/2006/http#Param"/>
  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#version">
  <rdfs:label xml:lang="en">Version</rdfs:label>
  <rdfs:comment xml:lang="en">The HTTP version</rdfs:comment>
</rdf:Property>

<rdf:Property rdf:about="http://www.w3.org/2006/http#body">
  <rdfs:label xml:lang="en">Entity body</rdfs:label>
  <rdfs:comment xml:lang="en">The HTTP entity body</rdfs:comment>
</rdf:Property>

</rdf:RDF>