mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 09:39:42 +02:00
20 lines
593 B
XML
20 lines
593 B
XML
<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>
|
|
|
|
|