我在我的 XSD 中定义了一个元素“inspection”,它有一个“int”类型的属性“step”。我想做的是要求第一个“输入”有step=1,下一个有step=2,依此类推。这在 XSD 中可能吗?
XML 模式提取:
<element name="inspection">
<complexType>
<!-- some elements -->
<!-- other attributes -->
<attribute name="step" type="int">
<simpleType>
<restriction>
<minInclusive value="1" />
</restriction>
</simpleType>
</attribute>
</complexType>
</element>