@prefix earl: <http://www.w3.org/2001/03/earl/0.95#> .
@prefix : <http://myns.org/1/#> .

:Daniel 
   earl:asserts { :MyImg :failsHigh :AltText . 
                  :MyPage :failsMedium :FontThing }; 
   earl:email <mailto:danield@w3.org>;
   earl:os "linux"; 
   earl:platform [ :browser "netscape 4.75" ] .

:MyImg
   a earl:WebContent; 
   earl:testSubject <http://example.org/page#xpointer(img[3])>; 
   earl:lastModified "2001-01-01"; 
   earl:hasSnapshot <http://store.com/example.org/page#xpointer(img[3])> .
:failsHigh a earl:ResultProperty;
   earl:date "2001-03-14"; 
   earl:validity earl:Fail; 
   earl:confidence earl:High .
:AltText
   a earl:TestCase; 
   earl:id <http://w3.org/tr/wcag#cp1.1>; 
   earl:testSuite <http://www.cast.org/bobby>; 
   earl:note """alt text provided is just filename according to 
                   the test suite"""; 
   earl:testMode earl:Manual; 
   earl:repairInfo 
     [ earl:expectedResult "presence of alt text describing function" ] .

:MyPage
   a earl:WebContent;
   earl:testSubject <http://example.org/page#name>;
   earl:lastModified "2001-01-01"; 
   earl:hasSnapshot <http://store.com/example.org/page#name> .
:failsMedium a earl:ResultProperty; 
   earl:date "2001-03-14"; 
   earl:validity earl:Fail; 
   earl:confidence earl:Medium .
:FontThing
   a earl:TestCase; 
   earl:id <http://w3.org/tr/wcag#cp2.1>; 
   earl:testSuite <http://www.cast.org/bobby>; 
   earl:note "use a font instead of h3 according to the test suite"; 
   earl:testMode earl:Manual; 
   earl:repairInfo 
     [ earl:expectedResult "use proper structure instead of style" ] .