@prefix earl: <http://www.w3.org/2001/03/earl/0.9#> .
@prefix : <http://myns.org/3/#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .

:Sean earl:asserts 
   { :MyPage :validates [ a earl:TestResult; 
                          earl:date [ dc:date "2001-03-14" ]; 
                          earl:validity earl:Fail ] } .

:Sean earl:hasEmail <mailto:sean@w3.uk> .

:MyPage
   a earl:WebContent; 
   earl:testSubject <http://example.org/page> .

:validates
   a earl:TestCase; 
   earl:id <http://w3.org/html4/testassertion123>; 
   earl:comment """syntax error, line12, missing ul 
                   according to the suite"""; 
   earl:suite <http://validator.w3.org/html>; 
   earl:testMode earl:Auto; 
   earl:purpose "checking html4 dtd content model"; 
   earl:expectedResult <http://w3.org/tr/html4#ul> .