   @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 transforms example-1.n3 by simplifying the link element in the Feed and in the Entry after applying the link rule."@en .


[ a :Feed, :Version;

   :title [ :value "Example Feed";
            :type "text/plain" ];
    iana:alternate <http://example.org/>;
   :updated "2003-12-13T18:30:02Z"^^xsd:dateTime;
   :author [ :name "John Doe" ];
   :id <urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6>; 

   :entry [ 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>;
            :updated "2003-12-13T18:30:02Z"^^xsd:dateTime;
            :summary [  :value "some text";
                        :type "text/plain" ]
          ]; 
] .
