@prefix : <http://example.org/net/2001/05/bob#> .
@prefix earl: <http://www.w3.org/2001/03/earl/0.95#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

:Bob earl:asserts 
     [ rdf:subject :MyPage; 
       rdf:predicate earl:passes; 
       rdf:object :WCAG10P1 ]; 
   earl:email <mailto:bob@example.org>; 
   earl:name "Bob B. Bobbington" .

:MyPage 
   a earl:WebContent; 
   earl:testSubject <http://example.org/net/bob/>; 
   earl:lastModified "2001-05-07" .

:WCAG10P1 
   a earl:TestCase; 
   earl:testMode earl:Manual; 
   earl:testCriteria 
     [ earl:suite <http://www.w3.org/TR/WCAG10/>; 
       earl:level <http://www.w3.org/TR/WCAG10/#wc-priority-1>; 
       earl:note """All Priority 1 checkpoints conformed to means that 
                    a document is WCAG Level Single-A compliant""" ] .