@prefix rdfs  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc:   <http://purl.org/dc/terms/> .
@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
@prefix dist: <http://www.w3.org/2007/08/pyRdfa/distiller#> .

#
# Typical usage by distiller
# <http://www.w3.org/2007/08/pyRdfa/distiller> dist:error [
#			dist:onUri <URI> ;
#			dist:message "blablabla" .
# ]
#

<http://www.w3.org/2007/08/pyRdfa/distiller>
	dc:author "Ivan Herman" ;
	dc:date "2008-11-26"^^xsd:date ;
	rdfs:comment "The few terms just to make the error messages of distiller proper" .
	
dist:error a rdfs:Property ;
	rdfs:comment "refers to an error; used on the distiller URI" ;
	rdfs:range dist:Message .

dist:information a rdfs:Property ;
	rdfs:comment "refers to an information; used on the distiller URI" ;
	rdfs:range dist:Message .

dist:warning a rdfs:Property ;
	rdfs:comment "refers to an warning; used on the distiller URI" ;
	rdfs:range dist:Message .

dist:debug a rdfs:Property ;
	rdfs:comment "refers to debug message; used on the distiller URI" ;
	rdfs:range dist:Message .
	
dist:Message a rdfs:Class .

dist:onUri a rdfs:Property ;
	rdfs:domain dist:Message ;
	rdfs:comment "gives the URI on which an error is found" .
	
dist:message a rdfs:Property ;
	rdfs:domain dist:Message ;
	rdfs:comment "The error message itself" .

