1<?xml version="1.0"?>
2
3<!--
4  Copyright World Wide Web Consortium, (Massachusetts Institute of
5  Technology, Institut National de Recherche en Informatique et en
6  Automatique, Keio University).
7
8  All Rights Reserved.
9
10  Please see the full Copyright clause at
11  <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
13-->
14<!--
15
16  On a property element rdf:nodeID behaves
17  similarly to rdf:resource.
18  $Id: test004.rdf,v 1.1 2002/07/30 09:46:05 jcarroll Exp $
19
20-->
21
22
23<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
24         xmlns:eg="http://example.org/">
25
26 <!-- The rdf:nodeID allows two references to the same node
27      as an object of triples in the graph. -->
28 <rdf:Description >
29   <eg:property1 rdf:ID="reify" rdf:nodeID="a" />
30 </rdf:Description>
31
32 <rdf:Description>
33   <eg:property2 rdf:nodeID="a"/>
34 </rdf:Description>
35
36</rdf:RDF>
37