summaryrefslogtreecommitdiffstats
path: root/tests/rdfxml/bad-01.rdf
blob: 4366c8fc5fe0115e12c1af63574548eed203e427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
      xmlns:ex="http://example.org/ns/">

  <!-- A property must have only one node value -->

  <rdf:Description rdf:about="http://example.org/node0">
    <ex:mainprop>

       <rdf:Description>
	 <ex:prop1>val1</ex:prop1>
       </rdf:Description>

       <rdf:Description>
	 <ex:prop2>val2</ex:prop2>
       </rdf:Description>

    </ex:mainprop>
  </rdf:Description>

</rdf:RDF>