R474 – Single local element schemas limit options for mapping nodes in ACE (WMB)

ingle local element schemas limit options for mapping nodes in ACE (WMB)

<xs:schema attributeFormDefault=”unqualified” elementFormDefault=”qualified” xmlns:xs=”http://www.w3.org/2001/XMLSchema”
xmlns=”https://www.refactorit.sk/russian-doll” targetNamespace=”https://www.refactorit.sk/russian-doll”>

<xs:element name=”book”>
<xs:complexType>
<xs:sequence>
<xs:element name=”title” type=”xs:string” />
<xs:element name=”author” type=”xs:string” />
<xs:element name=”character” minOccurs=”0″ maxOccurs=”unbounded”>
<xs:complexType>
<xs:sequence>
<xs:element name=”name” type=”xs:string” />
<xs:element name=”friend-of” type=”xs:string” minOccurs=”0″ maxOccurs=”unbounded” />
<xs:element name=”since” type=”xs:string” />
<xs:element name=”qualification” type=”xs:string” />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>