如何使用XML Schema扩展属性?

时间:2015-02-11 16:04:59

标签: xml xsd

我有XML:

<Devices>
    <Device name="Phone" number="123456789"/>
    <Device name="Computer" ip="192.168.0.1"/>
</Devices>

我想为此设置一个Schema,我有'设备',我可以声明一个设备,但如果设备名称=“phone”,则必须根据需要声明一个数字,但是如果设备是name =“computer”,嗯,只需要'计算机'

有没有办法做到这一点,有可能吗?

1 个答案:

答案 0 :(得分:2)

这将是XML架构

<xs:schema elementFormDefault="qualified" version="1.0"
    targetNamespace="stackoverflow" xmlns:tns="stackoverflow"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:element name="Devices" type="tns:deviceListType" />

    <xs:complexType name="deviceListType">
        <xs:sequence>
            <xs:element name="Device" type="tns:deviceType" maxOccurs="unbounded" />
        </xs:sequence>
    </xs:complexType>

    <xs:complexType name="deviceType">

    </xs:complexType>

    <xs:complexType name="computerType">
        <xs:complexContent>
            <xs:extension base="tns:deviceType">
                <xs:attribute name="name">
                    <xs:simpleType>
                        <xs:restriction base="xs:string">
                            <xs:enumeration value="Computer" />
                        </xs:restriction>
                    </xs:simpleType>
                </xs:attribute>
                <xs:attribute name="ip" />
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>

    <xs:complexType name="phoneType">
        <xs:complexContent>
            <xs:extension base="tns:deviceType">
                <xs:attribute name="name">
                    <xs:simpleType>
                        <xs:restriction base="xs:string">
                            <xs:enumeration value="Phone" />
                        </xs:restriction>
                    </xs:simpleType>
                </xs:attribute>
                <xs:attribute name="number" />
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
</xs:schema>

这将是一个示例XML文档

<sf:Devices xmlns:sf="stackoverflow"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="stackoverflow test.xsd">
    <sf:Device xsi:type="sf:computerType" name="Computer" ip="1"/>
    <sf:Device xsi:type="sf:phoneType" name="Phone" number="2"/>
</sf:Devices>

很抱歉,如果原始的XSD示例令人困惑。