XSD属性(非元素)不应为空字符串

时间:2014-03-09 14:31:32

标签: xml xsd

我需要在下面定义的架构中进行哪些更改,以便属性命名代码不应该是空字符串/验证代码是否为空?

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xsd:attribute name="code" type="xsd:string"/>
    <xsd:element name="Root">
        <xsd:complexType>
            <xsd:sequence>
                <xsd:element name="Child" nillable="false">
                    <xsd:complexType>
                        <xsd:sequence>
                            <xsd:element name="childAge">
                                <xsd:simpleType>
                                    <xsd:restriction base="xsd:integer"/>
                                </xsd:simpleType>
                            </xsd:element>
                        </xsd:sequence>
                        <xsd:attribute ref="code" use="required"></xsd:attribute>
                    </xsd:complexType>
                </xsd:element>
            </xsd:sequence>
        </xsd:complexType>
</xsd:element>

1 个答案:

答案 0 :(得分:11)

键入xsd:string类型包含空字符串,因此使用

<Child code="">

根据您的架构有效。有几种方法可以限制类型。如果您只想限制可以使用的长度:

<xsd:attribute name="code">
    <xsd:simpleType>
        <xsd:restriction base="xsd:string">
            <xsd:minLength value="1"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:attribute>

或者您可以使用不包含空字符串的类型作为有效类型,例如:

<xsd:attribute name="code" type="xsd:NMTOKEN" />

也不允许使用特殊字符或空格。如果您的代码需要特定模式,则可能需要在正则表达式中指定该模式,例如:

<xsd:restriction base="xsd:string">
    <xsd:pattern value="[A-Z][0-9]{4}"/>
</xsd:restriction>

也不会验证空字符串。