有没有办法在 XSD 中定义具有空限制的类型别名/强 typedef/simpleType?
<xsd:simpleType name="identifier">
<xsd:restriction base="xsd:string">
<xsd:pattern value="^[a-zA-Z_][a-zA-Z0-9_]*$" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="type">
<xsd:restriction base="identifier" />
</xsd:simpleType>
我想稍后对“类型”类型的属性应用一些验证逻辑,而不是“标识符”类型的属性。