我正在尝试创建一个XML模式,以便使用版本1.0验证以下XML。
规则是
- XML在
<host>
标记下是无序的 ip4
、present
和hostname
是必需的- 不需要
comment
- 可以有任意数量的
hostname
元素
示例.xml
<?xml version = "1.0"?>
<host>
<comment>List of hosts</comment>
<hostname>nohostname1</hostname>
<hostname>nohostname2</hostname>
<ipv4>127.0.0.1</ipv4>
<present>no</present>
</host>
我目前有。。。
示例.xsd
<?xml version = "1.0"?>
<xs:schema xmlns:xs = "http://www.w3.org/2001/XMLSchema">
<!-- any_string_type -->
<xs:simpleType name="any_string_type">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<!-- boolean_type -->
<xs:simpleType name="boolean_value_type">
<xs:annotation>
<xs:documentation>Boolean annotation [no/yes]</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="no"/>
<xs:enumeration value="yes"/>
</xs:restriction>
</xs:simpleType>
<!-- ipv4 address type -->
<xs:simpleType name="ipv4_type">
<xs:annotation>
<xs:documentation>IPv4 address in dot-decimal notation [0-255].[0-255].[0-255].[0-255]</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="((1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5]).){3}(1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])"/>
</xs:restriction>
</xs:simpleType>
<!-- Start of host validation -->
<xs:element name = "host">
<xs:complexType>
<xs:all>
<xs:element name = "ipv4" type = "ipv4_type"/>
<xs:element name = "comment" type = "any_string_type" minOccurs="0"/>
<xs:element name = "present" type = "boolean_value_type"/>
<!-- I want to say maxOccures="unbounded" but that is not valid XML schema -->
<xs:element name = "hostname" type = "any_string_type"/>
</xs:all>
</xs:complexType>
</xs:element>
</xs:schema>
但我似乎无法绕过任何数量的主机名元素。
对于初学者来说,XSD甚至无效,</xs:schema>
之前的<xs:element>
应该是</xs:element>
但是,是的,您不能使主机名在xsd:All中多次出现。在Visual Studio(带有BizTalk SDK(中,我收到以下错误。
所有组的{particle}中所有粒子的{max occurs}必须为0或1。
您有两个选项。将主机更改为minOccurs为3、maxOccurs未绑定的选项。然而,这不会强制您的ip4,hostname&present对于ip和present至少发生一次,并且仅发生一次。
另一个选项是更改负载的结构,并在hostnames节点下拥有hostname元素,并将其设置为minOccurs="1"和maxOccurs="unbounded">
<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="any_string_type">
<xs:restriction base="xs:string" />
</xs:simpleType>
<xs:simpleType name="boolean_value_type">
<xs:annotation>
<xs:documentation>Boolean annotation [no/yes]</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="no" />
<xs:enumeration value="yes" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ipv4_type">
<xs:annotation>
<xs:documentation>IPv4 address in dot-decimal notation [0-255].[0-255].[0-255].[0-255]</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="((1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5]).){3}(1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])" />
</xs:restriction>
</xs:simpleType>
<xs:element name="host">
<xs:complexType>
<xs:all minOccurs="1" maxOccurs="1">
<xs:element name="ipv4" type="ipv4_type" />
<xs:element minOccurs="0" name="comment" type="any_string_type" />
<xs:element name="present" type="boolean_value_type" />
<xs:element name="hostnames">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="1" maxOccurs="unbounded" name="hostname" type="any_string_type" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:all>
</xs:complexType>
</xs:element>
</xs:schema>
有效载荷看起来是这样的,并进行验证。
<?xml version = "1.0"?>
<host>
<comment>List of hosts</comment>
<hostnames>
<hostname>nohostname1</hostname>
<hostname>nohostname2</hostname>
</hostnames>
<ipv4>127.0.0.1</ipv4>
<present>no</present>
</host>