Using Abbreviated RDF Syntax (2)


Second basic abbreviation syntax:
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:vcard="http://imc.org/vCard/3.0#">
     <rdf:Description about="http://www.cs.rpi.edu/~puninj/XMLJ/">
       <dc:creator>
          <rdf:Description about="http://www.cs.rpi.edu/students/puninj">
             <vcard:FN>John Punin</vcard:FN>
             <vcard:EMAIL>puninj@cs.rpi.edu</vcard:EMAIL>
          </rdf:Description>
       </dc:creator>
     </rdf:Description>
   </rdf:RDF>

   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	    xmlns:dc="http://purl.org/dc/elements/1.1/"
	    xmlns:vcard="http://imc.org/vCard/3.0#">
     <rdf:Description about="http://www.cs.rpi.edu/~puninj/XMLJ/">
       <dc:creator rdf:resource="http://www.cs.rpi.edu/students/puninj"
                   vcard:FN="John Punin"
                   vcard:EMAIL="puninj@cs.rpi.edu"/>
     </rdf:Description>
   </rdf:RDF>