blob: 25c132f316be48c386c49bf4cc2da3920c49a784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<rdf:RDF xmlns:ex="http://www.example.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!-- check daml:collection generates the right structure with
blank nodes inside -->
<rdf:Description rdf:about="http://example.org/node1">
<ex:prop1 rdf:parseType="daml:collection">
<rdf:Description>
<ex:prop2 rdf:resource="http://example.org/node2" />
</rdf:Description>
<rdf:Description>
<ex:prop3 rdf:resource="http://example.org/node3" />
</rdf:Description>
</ex:prop1>
</rdf:Description>
</rdf:RDF>
|