-
Notifications
You must be signed in to change notification settings - Fork 0
/
http.ttl
724 lines (604 loc) · 21.5 KB
/
http.ttl
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
@prefix : <http://w3id.org/http#> .
@prefix sc: <http://w3id.org/http/sc#> .
@prefix hds: <http://w3id.org/http/headers#> .
@prefix cnt: <http://w3id.org/http/content#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sd: <http://www.w3.org/ns/sparql-service-description#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
: a owl:Ontology ;
rdfs:label "HTTP Ontology"@en ;
rdfs:comment "A namespace for describing HTTP interactions"@en .
## --------- ##
## Messages. ##
## --------- ##
:Message a owl:Class ;
rdfs:label "Message"@en ;
rdfs:comment "An HTTP message."@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
owl:disjointUnionOf (:Request :Response) ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty :version ;
owl:someValuesFrom rdfs:Literal
] .
:Request a owl:Class ;
rdfs:label "Request"@en ;
rdfs:comment "An HTTP request."@en ;
rdfs:subClassOf :Message ;
owl:equivalentClass [
owl:intersectionOf ([
a owl:Restriction ;
owl:onProperty :mthd ;
owl:someValuesFrom :Method ;
] [
a owl:Restriction ;
owl:onProperty :uri ;
owl:someValuesFrom :URI
] [
a owl:Restriction ;
owl:onProperty hds:host ;
owl:someValuesFrom hds:Host ;
rdfs:comment "The Host header is required for requests" ;
rdfs:definedBy <https://tools.ietf.org/rfc/rfc7230#section-5.4>
])];
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> .
:Response a owl:Class ;
rdfs:label "Response"@en ;
rdfs:comment "An HTTP response."@en ;
owl:disjointUnionOf (:InterimResponse :FinalResponse) ;
rdfs:subClassOf :Message ;
owl:equivalentClass [
a owl:Restriction ;
owl:onProperty :sc ;
owl:someValuesFrom :Status
] .
:InterimResponse a owl:Class ;
rdfs:label "Interim Response"@en ;
rdfs:subClassOf :Response, [
a owl:Restriction ;
owl:onProperty :sc ;
owl:someValuesFrom sc:Informational ;
] ;
rdfs:comment "An interim response."@en .
:FinalResponse a owl:Class ;
rdfs:label "Final Response"@en ;
rdfs:subClassOf :Response, [ owl:complementOf :InterimResponse ] ;
rdfs:comment "A final response."@en .
:resp a owl:ObjectProperty ;
rdfs:label "response"@en ;
rdfs:comment "The HTTP response sent in answer to an HTTP request."@en ;
rdfs:domain :Request ;
rdfs:range :Response .
## ------- ##
## Method. ##
## ------- ##
:Method a owl:Class ;
rdfs:label "Method"@en ;
rdfs:comment "The HTTP method used for the request."@en ;
owl:equivalentClass [
a owl:Restriction ;
owl:onProperty :mthdName ;
owl:someValuesFrom :notEmptyToken ] .
:mthd a owl:ObjectProperty, owl:FunctionalProperty ;
rdfs:label "method"@en ;
rdfs:comment "The HTTP method used for the HTTP request."@en ;
rdfs:domain :Request ;
rdfs:range :Method .
:mthdName a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "method name"@en ;
rdfs:comment "The HTTP method name used for the HTTP request."@en ;
rdfs:domain :Method ;
rdfs:range :notEmptyToken .
:notEmptyToken a rdfs:Datatype ;
rdfs:label "Non-empty token"@en ;
rdfs:comment "A token with at least one character" ;
owl:equivalentClass [
a rdfs:Datatype ;
owl:onDatatype xsd:token ;
owl:withRestrictions ([ xsd:minLength 1])] .
:GET a :Method ;
rdfs:label "GET" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.1> ;
:mthdName "GET" .
:HEAD a :Method ;
rdfs:label "HEAD" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.2> ;
:mthdName "HEAD" .
:POST a :Method ;
rdfs:label "POST" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.3> ;
:mthdName "POST" .
:PUT a :Method ;
rdfs:label "PUT" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.4> ;
:mthdName "PUT" .
:DELETE a :Method;
rdfs:label "DELETE" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.5> ;
:mthdName "DELETE" .
:CONNECT a :Method ;
rdfs:label "CONNECT" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.6> ;
:mthdName "CONNECT" .
:OPTIONS a :Method ;
rdfs:label "OPTIONS" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.7> ;
:mthdName "OPTIONS" .
:TRACE a :Method ;
rdfs:label "TRACE" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-4.3.8> ;
:mthdName "TRACE" .
:PATCH a :Method ;
rdfs:label "PATCH" ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc5789> ;
:mthdName "PATCH" .
## ---- ##
## URI. ##
## ---- ##
:uri a owl:ObjectProperty, owl:FunctionalProperty ;
rdfs:label "uri" ;
rdfs:comment "Effective request URI" ;
rdfs:domain :Request ;
rdfs:range :URI .
:URI a owl:Class ;
rdfs:label "URI" ;
rdfs:comment
"A semantic description of the syntactic parts composing a URI."@en .
:scheme a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "scheme"@en ;
rdfs:domain :URI ;
rdfs:comment "The scheme part of an URI."@en .
:authority a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "authority"@en ;
rdfs:domain :URI ;
rdfs:comment "The authority part of an URI."@en .
:path a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "path"@en ;
rdfs:domain :URI ;
rdfs:comment "The path part of an URI."@en .
:query a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "query"@en ;
rdfs:domain :URI ;
rdfs:comment "The query part of an URI."@en .
:fragment a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "fragment"@en ;
rdfs:domain :URI ;
rdfs:comment "The fragment part of an URI."@en .
:idRes a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "resource"@en ;
rdfs:comment "Everything except the query part"@en ;
rdfs:domain :URI .
## -------- ##
## Headers. ##
## -------- ##
:Header a owl:Class ;
rdfs:label "Header"@en ;
rdfs:comment "A header in an HTTP message."@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty :hdrName ;
owl:someValuesFrom rdfs:Literal
] , [
a owl:Restriction ;
owl:onProperty :hdrValue ;
owl:someValuesFrom rdfs:Literal
] .
:hdrName a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "header name"@en ;
rdfs:comment "The name of an HTTP message header."@en ;
rdfs:domain :Header ;
rdfs:range rdfs:Literal .
:hdrValue a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "header value"@en ;
rdfs:comment "The value of an HTTP message header."@en ;
rdfs:domain :Header ;
rdfs:range rdfs:Literal .
:hdr a owl:ObjectProperty ;
rdfs:label "header"@en ;
rdfs:comment "The headers in an HTTP message."@en ;
rdfs:domain :Message ;
rdfs:range :Header .
### Location Header property
hds:isLocation a owl:ObjectProperty ;
rdfs:label "is location header?" ;
rdfs:domain :Header ;
rdfs:range :Header .
:link a owl:ObjectProperty, owl:FunctionalProperty .
hds:Location a owl:Class ;
rdfs:label "Location Header" ;
rdfs:subClassOf :Header , [
a owl:Restriction ;
owl:onProperty :link ;
owl:someValuesFrom :URI ;
] ;
owl:equivalentClass [
a owl:Restriction ;
owl:onProperty :hdrName ;
owl:hasValue "Location" ;
] , [
a owl:Restriction ;
owl:onProperty hds:isLocation ;
owl:hasSelf true
] .
hds:location a owl:ObjectProperty ;
rdfs:label "location" ;
rdfs:domain :Response ;
rdfs:range :URI ;
owl:propertyChainAxiom (:hdr hds:isLocation :link) .
hds:isHost a owl:ObjectProperty ;
rdfs:label "is Host header?" ;
rdfs:domain :Header ;
rdfs:range :Header .
hds:Host a owl:Class ;
rdfs:label "Host Header"@en ;
rdfs:subClassOf :Header ;
owl:equivalentClass [
a owl:Restriction ;
owl:onProperty :hdrName ;
owl:hasValue "Host" ;
] , [
a owl:Restriction ;
owl:onProperty hds:isHost ;
owl:hasSelf true
] .
hds:host a owl:ObjectProperty ;
rdfs:label "host"@en ;
rdfs:domain :Request ;
rdfs:range hds:Host ;
owl:propertyChainAxiom (:hdr hds:isHost) ;
rdfs:comment """
This is effectively a functional property but OWL2 DL does not allow
such property to be defined on non-simple properties.
""" .
## ----------------- ##
## Query parameters. ##
## ----------------- ##
:QueryParam a owl:Class ;
rdfs:comment "A parameter for a part of a header value."@en ;
rdfs:label "Query Parameter"@en .
:paramName a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "parameter name"@en ;
rdfs:comment "The name of a query parameter."@en ;
rdfs:domain :QueryParam ;
rdfs:range rdfs:Literal .
:paramValue a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "parameter value"@en ;
rdfs:comment "The literal value of a query parameter."@en ;
rdfs:domain :QueryParam ;
rdfs:range rdfs:Literal .
:queryParams a owl:ObjectProperty ;
rdfs:label "query parameters"@en ;
rdfs:comment "The parameters found in the query string part of a URL."@en ;
rdfs:domain :URI ;
rdfs:range :QueryParam .
## -------- ##
## Content. ##
## -------- ##
cnt:Content a owl:Class ;
rdfs:label "Content"@en ;
rdfs:comment
"Representation of a content which can associated to various formats."@en .
sd:Graph a rdfs:Class ;
rdfs:label "Graph"@en ;
rdfs:comment
"An instance of sd:Graph represents the description of an RDF graph."@en .
cnt:about a owl:ObjectProperty ;
rdfs:label "graph"@en ;
rdfs:comment "A property associating an RDF content with its RDF graph"@en ;
rdfs:domain cnt:ContentAsRDF ;
rdfs:range sd:Graph .
cnt:ContentAsRDF a owl:Class ;
rdfs:label "Content as RDF"@en ;
rdfs:comment "RDF Content embedded in the body of an HTTP message"@en ;
rdfs:subClassOf cnt:Content ;
owl:equivalentClass [
a owl:Restriction ;
owl:onProperty cnt:about ;
owl:cardinality 1 ] .
:body a owl:ObjectProperty, owl:FunctionalProperty ;
rdfs:label "body"@en ;
rdfs:comment "The entity body of an HTTP message."@en ;
rdfs:domain :Message ;
rdfs:range cnt:Content .
## ------------ ##
## Status codes ##
## ------------ ##
:Status a owl:Class ;
rdfs:label "Status"@en ;
owl:equivalentClass [
a owl:Restriction ;
owl:onProperty :code ;
owl:someValuesFrom :threeDigit ;
] ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-6> ;
rdfs:comment "The status of an HTTP response."@en .
:sc a owl:ObjectProperty, owl:FunctionalProperty ;
rdfs:label "status"@en ;
rdfs:domain :Response ;
rdfs:range :Status ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-6> ;
rdfs:comment "The status of an HTTP response."@en .
:threeDigit a rdfs:Datatype ;
rdfs:label "3-digit integer"@en ;
rdfs:comment "A positive integer consisting in three digit" ;
owl:equivalentClass [
a rdfs:Datatype ;
owl:onDatatype xsd:nonNegativeInteger ;
owl:withRestrictions ([ xsd:maxInclusive 999])] .
:code a owl:DatatypeProperty, owl:FunctionalProperty ;
rdfs:label "status code"@en ;
rdfs:domain :Status ;
rdfs:range :threeDigit ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231#section-6> ;
rdfs:comment "The status code."@en .
sc:Informational a owl:Class ;
owl:equivalentClass [ owl:intersectionOf (:Status [
a owl:Restriction ;
owl:onProperty :code ;
owl:someValuesFrom [
a rdfs:Datatype ;
owl:onDatatype xsd:integer ;
owl:withRestrictions ([ xsd:minInclusive 100] [ xsd:maxInclusive 199])]])
] ;
rdfs:label "Informational"@en ;
rdfs:comment "A status code starting with 1, denoting Status an informational response"@en .
sc:Successful a owl:Class ;
owl:equivalentClass [ owl:intersectionOf (:Status [
a owl:Restriction ;
owl:onProperty :code ;
owl:someValuesFrom [
a rdfs:Datatype ;
owl:onDatatype xsd:integer ;
owl:withRestrictions ([ xsd:minInclusive 200] [ xsd:maxInclusive 299])]])
] ;
rdfs:label "Successful"@en ;
rdfs:comment "A status code starting with 2, denoting a successful interaction"@en .
sc:Redirection a owl:Class ;
owl:equivalentClass [ owl:intersectionOf (:Status [
a owl:Restriction ;
owl:onProperty :code ;
owl:someValuesFrom [
a rdfs:Datatype ;
owl:onDatatype xsd:integer ;
owl:withRestrictions ([ xsd:minInclusive 300] [ xsd:maxInclusive 399])]])
] ;
rdfs:label "Redirection"@en ;
rdfs:comment "A status code starting with 3"@en .
sc:ClientError a owl:Class ;
owl:equivalentClass [ owl:intersectionOf (:Status [
a owl:Restriction ;
owl:onProperty :code ;
owl:someValuesFrom [
a rdfs:Datatype ;
owl:onDatatype xsd:integer ;
owl:withRestrictions ([ xsd:minInclusive 400] [ xsd:maxInclusive 499])]])
] ;
rdfs:label "Client Error"@en ;
rdfs:comment "A status code starting with 4"@en .
sc:ServerError a owl:Class ;
owl:equivalentClass [ owl:intersectionOf (:Status [
a owl:Restriction ;
owl:onProperty :code ;
owl:someValuesFrom [
a rdfs:Datatype ;
owl:onDatatype xsd:integer ;
owl:withRestrictions ([ xsd:minInclusive 500] [ xsd:maxInclusive 599])]])
] ;
rdfs:label "Server Error"@en ;
rdfs:comment "A status code starting with 5"@en .
## Entities
sc:Accepted a :Status ;
rdfs:label "Accepted"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 202 .
sc:BadGateway a :Status ;
rdfs:label "Bad Gateway"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 502 .
sc:BadRequest a :Status ;
rdfs:label "Bad Request"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 400 .
sc:Conflict a :Status ;
rdfs:label "Conflict"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 409 .
sc:Continue a :Status ;
rdfs:label "Continue"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 100 .
sc:Created a :Status ;
rdfs:label "Created"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 201 .
sc:ExpectationFailed a :Status ;
rdfs:label "Expectation Failed"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 417 .
sc:FailedDependency a :Status ;
rdfs:label "Failed Dependency"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc4918.txt> ;
:code 424 .
sc:Forbidden a :Status ;
rdfs:label "Forbidden"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 403 .
sc:Found a :Status ;
rdfs:label "Found"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 302 .
sc:GatewayTimeout a :Status ;
rdfs:label "Gateway Timeout"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 504 .
sc:Gone a :Status ;
rdfs:label "Gone"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 410 .
sc:HTTPVersionNotSupported a :Status ;
rdfs:label "HTTP Version Not Supported"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 505 .
sc:IMUsed a :Status ;
rdfs:label "IM Used"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc3229.txt> ;
:code 226 .
sc:InsufficientStorage a :Status ;
rdfs:label "Insufficient Storage"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc4918.txt> ;
:code 507 .
sc:InternalServerError a :Status ;
rdfs:label "Internal Server Error"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 500 .
sc:LengthRequired a :Status ;
rdfs:label "Length Required"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 411 .
sc:Locked a :Status ;
rdfs:label "Locked"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc4918.txt> ;
:code 423 .
sc:MethodNotAllowed a :Status ;
rdfs:label "Method Not Allowed"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 405 .
sc:MovedPermanently a :Status ;
rdfs:label "Moved Permanently"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 301 .
sc:MultiStatus a :Status ;
rdfs:label "Multi-Status"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc4918.txt> ;
:code 207 .
sc:MultipleChoices a :Status ;
rdfs:label "Multiple Choices"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 300 .
sc:NoContent a :Status ;
rdfs:label "No Content"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 204 .
sc:NonAuthoritativeInformation a :Status ;
rdfs:label "Non-Authoritative Information"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 203 .
sc:NotAcceptable a :Status ;
rdfs:label "Not Acceptable"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 406 .
sc:NotExtended a :Status ;
rdfs:label "Not Extended"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc2774.txt> ;
:code 510 .
sc:NotFound a :Status ;
rdfs:label "Not Found"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 404 .
sc:NotImplemented a :Status ;
rdfs:label "Not Implemented"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 501 .
sc:NotModified a :Status ;
rdfs:label "Not Modified"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 304 .
sc:OK a :Status ;
rdfs:label "OK"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 200 .
sc:PartialContent a :Status ;
rdfs:label "Partial Content"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 206 .
sc:PaymentRequired a :Status ;
rdfs:label "Payment Required"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 402 .
sc:PreconditionFailed a :Status ;
rdfs:label "Precondition Failed"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 412 .
sc:Processing a :Status ;
rdfs:label "Processing"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc2518.txt> ;
:code 102 .
sc:ProxyAuthenticationRequired a :Status ;
rdfs:label "Proxy Authentication Required"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 407 .
sc:RequestEntityTooLarge a :Status ;
rdfs:label "Request Entity Too Large"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 413 .
sc:RequestTimeout a :Status ;
rdfs:label "Request Timeout"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 408 .
sc:RequestURITooLong a :Status ;
rdfs:label "Request-URI Too Long"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 414 .
sc:RequestedRangeNotSatisfiable a :Status ;
rdfs:label "Requested Range Not Satisfiable"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 416 .
sc:Reserved a :Status ;
rdfs:label "(Reserved)"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 306 .
sc:ResetContent a :Status ;
rdfs:label "Reset Content"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 205 .
sc:SeeOther a :Status ;
rdfs:label "See Other"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 303 .
sc:ServiceUnavailable a :Status ;
rdfs:label "Service Unavailable"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 503 .
sc:SwitchingProtocols a :Status ;
rdfs:label "Switching Protocols"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 101 .
sc:TemporaryRedirect a :Status ;
rdfs:label "Temporary Redirect"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 307 .
sc:Unauthorized a :Status ;
rdfs:label "Unauthorized"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 401 .
sc:UnprocessableEntity a :Status ;
rdfs:label "Unprocessable Entity"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc4918.txt> ;
:code 422 .
sc:UnsupportedMediaType a :Status ;
rdfs:label "Unsupported Media Type"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 415 .
sc:UpgradeRequired a :Status ;
rdfs:label "Upgrade Required"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc2817.txt> ;
:code 426 .
sc:UseProxy a :Status ;
rdfs:label "Use Proxy"@en ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> ;
:code 305 .
sc:VariantAlsoNegotiates a :Status ;
rdfs:label "Variant Also Negotiates (Experimental)"@en ;
rdfs:isDefinedBy <http://www.ietf.org/rfc/rfc2295.txt> ;
:code 506 .
## ----- ##
## Misc. ##
## ----- ##
:version a owl:DatatypeProperty ;
rdfs:label "version"@en ;
rdfs:comment "The HTTP protocol version of an HTTP message."@en ;
rdfs:domain :Message ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://tools.ietf.org/rfc/rfc7231> .