# EXAMPLE
# Typical error created on page http://example.com/page regarding hCard #hcard.
#
# _:error001 a earl:Assertion ;
#        earl:assertedBy <http://buzzword.org.uk/cognition/#cognition> ;
#        earl:result xe:error ;
#        earl:mode earl:automatic ;
#        earl:subject <http://example.com/page> ;
#        xe:itemOnPage <http://example.com/page#hcard> ;
#        xe:complianceWith <http://microformats.org/wiki/hcard> ;
#        dc:abstract "The error is foo bar." ;
#        dc:description "Lala lala longer description goes here." .

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

# This ontology.
@prefix xe:   <http://buzzword.org.uk/rdf/xearl#> .

# Related ontologies.
@prefix earl: <http://www.w3.org/WAI/ER/EARL/nmg-strawman#> .

# 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#> .

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

xe:itemOnPage a rdf:Property ;
	rdfs:label "item on page" .

xe:complicanceWith a rdf:Property ;
	rdfs:label "compliance with" .

xe:warning a earl:ValidityLevel ;
	rdfs:label "warning" ;
	earl:validity earl:pass ;
	earl:confidence earl:high .

xe:error a earl:ValidityLevel ;
	rdfs:label "error" ;
	earl:validity earl:fail ;
	earl:confidence earl:high .

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