@prefix earl: <http://www.w3.org/2001/03/earl/0.9#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <http://myns.org/1/#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .

:Daniel earl:asserts
   { :MyImg :altText [ a earl:TestResult;
                       earl:date [ dc:date "2001-03-14" ];
                       earl:validity earl:Fail;
                       earl:confidence earl:High ] .
     :MyPage :fontThing [ a earl:TestResult;
                          earl:date [ dc:date "2001-03-14" ];
                          earl:validity earl:Fail;
                          earl:confidence earl:Medium ] } .

:Daniel earl:hasEmail <mailto:danield@w3.org>;
   earl:hasPlatform "linux", "netscape 4.75" .

:MyImg 
      a earl:WebContent; 
      earl:testSubject <http://example.org/page#xpointer(img[3])>; 
      earl:lastModified [ dc:date "2001-01-01" ]; 
      earl:hasSnapshot <http://store.com/example.org/page#xpointer(img[3])> .
:altText 
   a earl:TestCase; 
   earl:id <http://w3.org/tr/wcag#cp1.1>; 
   earl:comment """alt text provided is just filename according to 
                   the test suite provided"""; 
   earl:suite <http://www.cast.org/bobby>; 
   earl:testMode earl:Manual; 
   earl:expectedResult "presence of alt text describing function" .

:MyPage 
   a earl:WebContent; 
   earl:testSubject <http://example.org/page#name>; 
   earl:lastModified [ dc:date "2001-01-01" ]; 
   earl:hasSnapshot <http://store.com/example.org/page#name> .
:fontThing 
   a earl:TestCase; 
   earl:id <http://w3.org/tr/wcag#cp2.1>; 
   earl:comment """use a font instead of h3 according to the 
                   test suite provided"""; 
   earl:suite <http://www.cast.org/bobby>; 
   earl:testMode earl:Manual; 
   earl:expectedResult "use proper structure instead of style" .