cvc-complex-type.2.4.b: 元素 'tns:patient' 的内容不完整

cvc-complex-type.2.4.b: The content of element 'tns:patient' is not complete

在下面的 xsd 中,我尝试使用相同的模式创建一个包含 10 名患者的列表。当我验证 xml 文件时,我收到一条错误消息,指出 cvc complex type 2。4.b.Is 我可以使用任何其他方法来创建具有相同模式定义的 10 名患者的列表。

XSD 文件:

<?xml version="1.0" encoding="UTF-8"?>
 <schema xmlns="http://www.w3.org/2001/XMLSchema"  targetNamespace="http://www.hennaloungani.com/Patient"
xmlns:tns="http://www.hennaloungani.com/Patient"  elementFormDefault="qualified">

 <element name="patient" type="tns:Patient" />
<complexType name="Patient">
    <sequence>
        <element name="patient" type="tns:Patient" maxOccurs="10" />
        <element name="name" type="tns:Sting15Char"></element>
        <element name="age" type="int"></element>
        <element name="dob" type="date"></element>
        <element name="email" type="string" maxOccurs="unbounded"></element>
        <element name="gender" type="tns:Gender"></element>
        <element name="phone" type="string"></element>
        <element name="payment" type="tns:PaymentType"></element>
    </sequence>

    <attribute name="id" type="tns:ID"></attribute>
    </complexType>


    <complexType name="PaymentType">
        <choice>
            <element name="Cash" type="int"></element>
            <element name="Insurance" type="tns:Insurance"></element>
        </choice>
    </complexType>
    <complexType name="Insurance">
        <all>
            <element name="provider" type="string"></element>
            <element name="limit" type="int"></element>

        </all>

    </complexType>
    <simpleType name="ID">
        <restriction base="int">
            <pattern value="[0-100]"></pattern>
        </restriction>
    </simpleType>

    <simpleType name="Sting15Char">
        <restriction base="string">
            <maxLength value="15"></maxLength>
        </restriction>
    </simpleType>
    <simpleType name="Gender">
        <restriction base="string">
            <enumeration value="M"></enumeration>
            <enumeration value="F"></enumeration>
        </restriction>
    </simpleType>

我在第 2 行收到此错误:cvc-complex-type.2.4.b:元素 'tns:patient' 的内容不完整。 '{"http:// 之一 www.hennaloungani.com/Patient":patient}' 预计

Xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<tns:patient id="1" xmlns:tns="http://www.hennaloungani.com/Patient"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.hennaloungani.com/Patient Patient.xsd ">
<tns:patient id="1" />
<tns:name>tns:name</tns:name>
<tns:age>0</tns:age>
<tns:dob>2001-01-01</tns:dob>
<tns:email>tns:email</tns:email>
<tns:gender>M</tns:gender>
<tns:phone>tns:phone</tns:phone>
<tns:payment>
    <tns:Cash>0</tns:Cash>
</tns:payment>

XML 的 patient 根元素的 patient 子元素没有自己的子元素,但 XSD 表示 patient 元素必须具有各种子元素的序列(patientnameage 等)。

如果您希望为您的 XSD 实例化一个有效的 XML 文档,您至少必须将 patient 子元素设为可选:minOccurs="0"。否则,您的 XSD 将指定 patient 个后代的无限递归。请注意 by default, minOccurs="1", which means that the element is required.

如果你想让你的 XML 按原样(带有一个空的 patient 子元素)进行验证,类似地添加 minOccurs="0" 到 [=14 的每个声明中=]、agedob