Given the following triples, are the domain and range a union or intersection or something else?
<http://www.stackoverflow.com/questions/ask> rdfs:domain <http://stackoverflow.com/questions/tagged/rdf> .
<http://www.stackoverflow.com/questions/ask> rdfs:domain <http://stackoverflow.com/questions/tagged/owl> .
<http://www.stackoverflow.com/questions/ask> rdfs:domain <https://www.w3.org/TR/owl-ref/#Boolean> .
<http://www.stackoverflow.com/questions/ask> rdfs:range <http://stackoverflow.com/questions/tagged/rdf> .
<http://www.stackoverflow.com/questions/ask> rdfs:range <http://stackoverflow.com/questions/tagged/owl> .
<http://www.stackoverflow.com/questions/ask> rdfs:range <https://www.w3.org/TR/owl-ref/#Boolean> .
In other words, does the http://www.stackoverflow.com/questions/ask
predicate have three domains, three ranges, and any domain-range pairing is valid can be inferred?
Edit: The w3.org documentation for domain and range states:
Where a property P has more than one
rdfs:domain
property, then the resources denoted by subjects of triples with predicate P are instances of all the classes stated by therdfs:domain
properties.Where P has more than one
rdfs:range
property, then the resources denoted by the objects of triples with predicate P are instances of all the classes stated by therdfs:range
properties.