使用styleVision获取错误"复杂类型定义的内容模型'匿名' "

时间:2017-04-08 16:57:48

标签: xml xslt xsd altova stylevision

您好我正在使用StyleVision工具。我正在针对XSD验证xml文件。我运行它说"复杂类型定义的内容模型'匿名' &#34 ;.但我的XML文件验证了XSD。我做错了什么,请好好纠正我。我的XML和XSD在下面给出

   <?xml version="1.0"?>
    <data>
    <veterinarian>ericsamule</veterinarian>
    <clinic>Clinical Demo    Account- Full Circle Oncology</clinic> 
   <address>asd</address> 
   <phone>55555</phone>
   <date_of_service>2017-01-03</date_of_service>   
   <received_date>2017-01-01</received_date>
   <final_date>2017-01-19</final_date>
   <sample_type>F_dsds</sample_type>
   <accession_id>A-123454</accession_id>
   <lab_id>H-456123</lab_id>
   <panel_notes>cat male</panel_notes>
   <patient>CatCaty</patient>
   <gender>M</gender>
   <dob>1990-01-01</dob>
   <species>Human</species>
  </data>

XSD

    <?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
 <xs:element name="data">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="veterinarian" type="xs:string"/>
            <xs:element name="clinic" type="xs:string"/>
            <xs:element name="address" type="xs:string"/>
            <xs:element name="phone" type="xs:string"/>
            <xs:element name="date_of_service" type="xs:date"/>
            <xs:element name="received_date" type="xs:date"/>
            <xs:element name="final_date" type="xs:date"/>
            <xs:element name="sample_type"  type="xs:string"/>
            <xs:element name="accession_id" type="xs:string"/>
            <xs:element name="lab_id" type="xs:string"/>
            <xs:element name="panel_notes" type="xs:string"/>
            <xs:element name="patient" type="xs:string"/>
            <xs:element name="gender" type="xs:string"/>
            <xs:element name="dob" type="xs:string"/>
            <xs:element name="species" type="xs:string"/>
        </xs:sequence>
    </xs:complexType>
 </xs:element>

1 个答案:

答案 0 :(得分:0)

您似乎已截断错误消息的结尾;你发布的内容仅仅是一个参考而不是一个完整的陈述。

然而,短语 复杂类型定义的内容模型&#39;匿名&#39; 是指未命名的类型定义,在您的情况下,是:

<xs:complexType>
    <xs:sequence>
        <xs:element name="veterinarian" type="xs:string"/>
        <xs:element name="clinic" type="xs:string"/>
        <!-- ... -->
    </xs:sequence>
</xs:complexType>

这与命名的类型定义(如

)形成对比
<xs:complexType name="DataType">
    <xs:sequence>
        <xs:element name="veterinarian" type="xs:string"/>
        <xs:element name="clinic" type="xs:string"/>
        <!-- ... -->
    </xs:sequence>
</xs:complexType>

可以像这样引用:

<xs:element name="data" type="DataType"/>

希望对匿名的含义的解释可以帮助您理解其余的错误消息。如果没有,请更新您的问题,并提供完整的错误消息以及StyleVision知识渊博的人员需要进一步帮助您的任何补充文件。