我可以使用simpleType多次吗?

时间:2010-12-14 14:44:07

标签: xsd

我在xsd:

中多次使用此simpleType
<xs:simpleType>
    <xs:restriction base="xs:string">
        <xs:pattern value="[0-9a-zA-Z]{3}" />
    </xs:restriction>
</xs:simpleType>

有没有办法定义一次,然后多次使用它?

1 个答案:

答案 0 :(得分:3)

是的。只要给它一个名字。

<xsd:simpleType name="myType">
...
</xsd:simpleType>

<xsd:element type="myType" .../>