Print

Print


Hi all,
        
        I'm trying to figure out if the following RDF code is correct
        according
        to http://www.dublincore.org/documents/dcq-rdf-xml/ .
        This is an example where the DATE's element refinement is
        "Created" and
        its element encoding scheme is "W3C-DTF" and the language is set
        to
        English.
        
        Is that correct or my syntax is wrong ?
        
        <?xml version="1.0"?>
        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
                    xmlns:dc="http://purl.org/dc/elements/1.1/"
                    xmlns:dcterms="http://purl.org/dc/terms/">     
          <rdf:Description>
            <dcterms:created>
             <dc:date xml:lang="en-US">
           <dcterms:W3CDTF>
            <rdf:value>1999-09-25T14:20+10:00</rdf:value>
           </dcterms:W3CDTF>
         </dc:date> 
            </dcterms:created>
         </rdf:Description>
          <rdf:Description rdf:about="http://purl.org/dc/terms/created">
            <rdfs:subPropertyOf 
               rdf:resource="http://purl.org/dc/elements/1.1/date"/>
          </rdf:Description>
        </rdf:RDF>
        
        Thanks for your help.
        
        Roberto Suggi Liverani