When placing copyright information in an XML Schema Definition (XSD), is there an official (or semi-official, generally accepted) place for this?
Based Where to add a version to an XSD schema? , there is an official attribute versionin the element xs:schema- is there something similar for copyright information?
I saw people using annotation / documentation elements (like here ) for something like this - is this a common way to do this?
<xsd:annotation>
<xsd:documentation xml:lang="en">
Copyright 2015 Example.com. All rights reserved.
</xsd:documentation>
</xsd:annotation>
source
share