我需要对“是或否”的属性进行限制-但不太确定如何构造它-我正在尝试以下方法,但不确定它是对还是错:(建议将不胜感激)谢谢
<xs:element name="DistinctiveMarks">
<xs:ComplexType>
<xs:SimpleContent>
<xs:extension base="xs:string">
<xs:attribute name="present" type="xs:string">
<xs:restriction base="xs:string">
<xs:pattern value="yes|no"/>
</xs:restriction>
</xs:attribute>
</xs:extension>
</xs:SimpleContent>
</xs:ComplexType>
</xs:element>