Hi, Is there a way to specify that one of 2 attributes is required in XSD?
for example, i have a definition like this.
<xs:attribute name="Name" type="xs:string" use="optional" />
<xs:attribute name="Id" type="xs:string" use="optional" />
I want to be able to define that atleast one of these is required. Is that possible?