Can the RDF:Property contain other properties along with rdf:range and rdf:domain. For example, could you have the following:
<rdf:Property rdf:about="&base;adminStaff">
<rdfs:domain rdf:resource="&base;Staff"/>
<rdfs:range rdf:resource="&rdfs;Literal"/>
<dcterms:description>This is a member of staff</dcterms:description>
</rdf:Property>
The bit im interested in here is the use of the dublin core description element. Is this valid. It looks ok when viewing it as triples and makes sense but im unsure whether it is valid to have this property inside another property.