     @prefix :       <http://www.w3.org/2005/10/23/Atom#> .
     @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
     @prefix iana:   <http://www.iana.org/assignments/relation/> .
     @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .


<> rdfs:comment "This is what we get if we prefer to root our example-1-v2.n3 on feed ids."@en .

<urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6> a :FeedId;
    :version [ a :Feed, :Version;
               = _:state1;
              :title [ :string "Example Feed";
                       :type "text/simple" ];
              iana:alternate  <http://example.org/>;
              :updated "2003-12-13T18:30:02Z"^^xsd:dateTime;
              :author [ :name "John Doe" ];
           ];
    :update [ a :Entry, :Version;
             :title [ :value "Atom-Powered Robots Run Amok";
                      :type "text/plain" ];
             iana:alternate <http://example.org/2003/12/13/atom03>;
             :id [ = <urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a>;
	     	   a :EntryId ];
             :updated "2003-12-13T18:30:02Z"^^xsd:dateTime;
             :summary [  :value "some text";
                         :type "text/simple" ];
             :source _:state1;
           ] .


