# This is a small vocab building on the W3C HTTP-in-RDF ontology.

## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## 

# This ontology.
@prefix http-ext: <http://buzzword.org.uk/rdf/http-ext#> .

# Related ontologies.
@prefix http:     <http://www.w3.org/2006/http#> .

# Stock imports.
@prefix cc:       <http://creativecommons.org/ns#> .
@prefix dc:       <http://purl.org/dc/terms/> .
@prefix dcmitype: <http://purl.org/dc/dcmitype/> .
@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
@prefix link:     <http://www.w3.org/2006/link#> .
@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 skos:     <http://www.w3.org/2004/02/skos/core#> .
@prefix vs:       <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xhv:      <http://www.w3.org/1999/xhtml/vocab#> .
@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .

## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## 

http-ext:
	a owl:Ontology ;
	rdfs:label "HTTP in RDF Extensions"@en ;
	dc:issued "2008-11-26"^^xsd:date ;
	dc:modified "2008-11-26"^^xsd:date ;
	foaf:maker _:toby ;
	rdfs:seeAlso <http://www.w3.org/TR/HTTP-in-RDF/> ;
	cc:license <http://creativecommons.org/licenses/by/2.0/uk/deed.en_GB> ;
	cc:attributionName "Toby Inkster" ;
	cc:attributionURL http-ext: .

_:toby
	a foaf:Person ;
	foaf:name "Toby Inkster";
	foaf:homepage <http://tobyinkster.co.uk/> .

http-ext:http-equiv-headers
	a owl:ObjectProperty ;
	rdfs:label "http-equiv headers"@en ;
	rdfs:comment "Predicate associating a document with a collection of message headers which were not transmitted via HTTP but rather specified using equivalent document markup."@en ;
	rdfs:domain foaf:Document ;
	rdfs:range rdf:Seq, rdf:List .

http-ext:related-request
	a owl:ObjectProperty ;
	rdfs:label "related request"@en ;
	rdfs:comment "An HTTP request that is in some way related to the resource."@en ;
	rdfs:domain rdfs:Resource ;
	rdfs:range http:Request .

## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## 
