1<?xml version="1.0"?>
2<!--
3  Copyright World Wide Web Consortium, (Massachusetts Institute of
4  Technology, Institut National de Recherche en Informatique et en
5  Automatique, Keio University).
6
7  All Rights Reserved.
8
9  Please see the full Copyright clause at
10  <http://www.w3.org/Consortium/Legal/copyright-software.html>
11
12  Description: a RDF Property may have more than one domain property
13
14  Related issue:
15
16    http://www.w3.org/2000/03/rdf-tracking/#rdfs-domain-and-range
17
18  $Id$
19-->
20
21<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
22         xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
23
24  <rdf:Property rdf:about="http://example.org/bar">
25    <rdfs:domain rdf:resource="http://example.org/Domain1"/>
26    <rdfs:domain rdf:resource="http://example.org/Domain2"/>
27  </rdf:Property>
28
29</rdf:RDF>
30