   @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#> .

<tag:example.org,2003:3> a :FeedId;
    :version [
        :title [ :value "dive into mark";
                 :type "text/plain" ];
        :subtitle [ :value "A &lt;em&gt;lot&lt;/em&gt; of effort went into making this effortless";
                    :type "text/html" ];
        :updated "2005-07-31T12:29:29Z"^^xsd:dateTime;
        iana:alternate [ = <http://example.org/>;
                         :representation [ :type "text/html";
                                           :lang "en" ]
                       ];
        iana:self   [ = <http://example.org/feed.atom>;
                      :representation [ :type "application/atom+xml" ]
                    ];
        :rights "Copyright (c) 2003, Mark Pilgrim";
        :generator [ :uri <http://www.example.com/>;
                     :version  "1.0";
                     :name "Example Toolkit" ];
    ];
    
    :update [ 
        :title [ :value "Atom draft-07 snapshot";
                 :type "text/plain" ];   
        iana:alternate [ = <http://example.org/2005/04/02/atom>;
                        :representation [ :type "text/html" ]
                       ];
        iana:enclosure [ = <http://example.org/audio/ph34r_my_podcast.mp3>;
                        :representation [ :type "audio/mpeg";
                                          :length "1337"^^xsd:integer ]
                       ];
        :id <tag:example.org,2003:3.2397>;
        :updated "2005-07-31T12:29:29Z"^^xsd:dateTime;
        :published "2003-12-13T08:29:29-04:00"^^xsd:dateTime;
        :author [ :name "Mark Pilgrim";
                  :uri  <http://example.org/>;
                  :email <mailto:f8dy@example.com>;
                ];
        :contributor [ :name "Sam Ruby" ];
        :contributor [ :name "Joe Gregorio" ];
        :content [ :value "<div xmlns='http://www.w3.org/1999/xhtml'><p><i>[Update: The Atom draft is finished.]</i></p></div>";
                   :type "text/html";
                 ];
        ] .

    

