How to write XML Schema for the following XML?

kdharshan

New Member
I want to write XML Schema for XML file:\[code\]<root> <rate>10</rate> <rate></rate> <rate>15</rate> ...</root>\[/code\]<rate> minOccurs is 1, maxOccurs is unbounded. <rate> must have xs:integer type, but what to do with <rate></rate>? I don't want to write <rate xsi:nil="true"/>.
 
Back
Top