Reify One RDF Triple


Start with some simple RDF, which generates one triple

  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
           xmlns:dc="http://purl.org/dc/elements/1.1/"> 

    <rdf:Description rdf:about="http://www.w3.org/"> 
      <dc:title>World Wide Web Consortium</dc:title> 
    </rdf:Description> 
  </rdf:RDF>

Reified (but not asserted)

  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:LX="http://www.w3.org/2002/08/LX/RDF/v2#">

    <LX:Triple>
        <LX:subject rdf:resource="http://www.w3.org/"/>
        <LX:predicate rdf:resource="http://purl.org/dc/elements/1.1/title"/>
        <LX:object>World Wide Web Consortium</LX:object>
    <LX:Triple>
  </rdf:RDF>