Reputation: 6089
Using the XML Schema toolbox, I have created the following diagram:
After generating the XSD, I get the following result:
Please note that the association is represented by
<xs:element ref="lib:Author" >
Instead, I would like to have:
<xs:element name="author" type="lib:Author" >
How should I change the model to achieve this in Enterprise Architect?
Upvotes: 2
Views: 319
Reputation: 6089
The solution is to add a tagged value 'anonymousRole=false' to the association, as follows:
Alternatively, this setting can be made at a global level, as a package property:
Upvotes: 6