有沒有辦法定義一個常量值並在前面的XSD中使用該常量?我有一個共同的價值,我想用於各種xs:元素標籤的maxOccurs屬性。與其他語言中的常量一樣,如果MyConst的值有變化,我想在一個地方進行更改。如何在XSD中定義常量
<!-- Can I do this? -->
<ConstantValue id="MyConst" value="10"/>
...
<xs:element name="sandwich_meat" type="xs:string" minOccurs="0" maxOccurs="MyConst"/>
<xs:element name="sandwich_name" type="xs:string" minOccurs="0" maxOccurs="MyConst"/>