When placing copyright information in an XML Schema Definition (XSD), is there an official (or semi-official, universally accepted) location for doing so?
Based on Where to add a version to an XSD schema?, there's an official version
attribute in the xs:schema
element - is there something similar for copyright information?
I have seen people using annotation/documentation elements (e.g. here) for something like this - is this the accepted way of doing this?
<xsd:annotation>
<xsd:documentation xml:lang="en">
Copyright 2015 Example.com. All rights reserved.
</xsd:documentation>
</xsd:annotation>