使用XSD断言条件进行XML验证

时间:2018-01-29 18:13:27

标签: xsd-validation xml-validation

我有XML和XSD,我在验证时遇到了一些错误。

我的XML

<parent>
  <child1>Y</child1>
  <child2>Y</child2>
</parent>

我的XSD

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="parent">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="child1" type="xs:string" />
                <xs:element name="child2" type="xs:string" />
            </xs:sequence>
            <xs:assertion test="child1 != 'N' and child2 != 'N'" />
        </xs:complexType>
    </xs:element>
</xs:schema>`

错误我

  

s4s-elt-invalid-content.1:&#39;#AnonType_parent&#39;的内容是无效的。元素断言&#39;无效,错位或过于频繁发生。

我想通过XML验证如果我得到的除了&#39; N&#39;子元素的价值。

任何人都可以建议我做错了吗?

0 个答案:

没有答案