如果在XSD中定义,则验证,否则 - 允许,但不验证

问题描述 投票:1回答:1

XML文档如下:

<data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://localhost/app/myschema.xsd myschema.xsd">
    <metadata>
        <source appVer="2.10.0.3" structure="2.10.18.34" sequence="00000001" dt="2014-08-26T11:13:15"/>
    </metadata>
    <firstItemStorage>
        <row col1="..." col2="..." />
        <row col1="..." col2="..." />
        <row col1="..." col2="..." />
    </firstItemStorage>
    <secondItemStorage>
        <row col1="..." col2="..." />
        <row col1="..." col2="..." />
        <row col1="..." col2="..." />
    </secondItemStorage>
    <anyOtherElement>
        <!-- Any XML -->
    </anyOtherElement>
</data>

我想定义以下内容:

  • 文档的根元素必须是data
  • 在它内部可以有任何顺序的元素。
  • metadata元素是强制性的,具有严格的结构。
  • 任何其他元素都不是必需的,并且结构松散。
  • 当像firstItemStoragesecondItemStorage这样的元素在XSD模式中定义并出现在XML文档中时,它们应该被验证为具有零或无限row元素,这些元素在任何顺序中具有零或无限属性。定义的属性经过验证,未定义是禁止的。
  • 当XSD架构中未定义的任何其他元素出现在XML文档中时,不会发生验证错误,并且不验证它们的内容。

我的架构如下:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="data">
    <xs:complexType>
      <xs:choice maxOccurs="unbounded">
        <xs:element name="metadata" minOccurs="1" maxOccurs="1">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="source">
                <xs:complexType>
                  <xs:attribute name="appVer" type="xs:string" use="required"/>
                  <xs:attribute name="structure" type="xs:string" use="required"/>
                  <xs:attribute name="sequence" type="xs:unsignedInt" use="required"/>
                  <xs:attribute name="dt" type="xs:dateTime" use="required"/>
                </xs:complexType>
              </xs:element>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
        <xs:element name="firstItemStorage" minOccurs="0" maxOccurs="1">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="row" minOccurs="0" maxOccurs="unbounded">
                <xs:complexType>
                  <!-- Attributes could have any order -->
                  <xs:attribute name="id" type="xs:int" />
                  <xs:attribute name="sid" type="xs:int" />
                  <xs:attribute name="id_group" type="xs:int" />
                  <xs:attribute name="consum" type="xs:double" />
                  <xs:attribute name="overloadlimit" type="xs:double" />
                  <xs:attribute name="upd" type="xs:dateTime" />
                  <!-- Any other attributes are prohibited -->
                </xs:complexType>
              </xs:element>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
        <xs:element name="secondItemStorage" minOccurs="0" maxOccurs="1">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="row" minOccurs="0" maxOccurs="unbounded">
                <xs:complexType>
                  <!-- Attributes could have any order -->
                  <xs:attribute name="id" type="xs:int" />
                  <xs:attribute name="meaning" type="xs:string" />
                  <xs:attribute name="visible" type="xs:boolean" />
                  <xs:attribute name="a_counter" type="xs:boolean" />
                  <xs:attribute name="activities" type="xs:boolean" />
                  <xs:attribute name="upd" type="xs:dateTime" />
                  <!-- Any other attributes are prohibited -->
                </xs:complexType>
              </xs:element>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
        <!-- Any other elements are allowed, but not validated -->
        <xs:any />
      </xs:choice>
    </xs:complexType>
  </xs:element>
</xs:schema>

我有xs:any元素的问题:

  • any元素不仅允许任何未知元素,还允许已知元素的任何属性
  • 我从Visual Studio收到警告:

警告26通配符'## any'允许元素'操作',并导致内容模型变得模糊不清。必须形成内容模型,使得在元素信息项序列的验证期间,可以在不检查元素信息项序列的内容或属性的情况下,直接地,间接地或隐含地包含在其中依次用于尝试验证序列中的每个项目的粒子。该项目,并且没有关于序列其余部分中的项目的任何信息。

如果没有any元素,当XSD中未定义的元素出现在XML文档中时,我会生成错误。

如何安全地定义我想要的东西?

xml xsd
1个回答
1
投票

在XSD 1.1中,您不会在特定元素粒子和通配符粒子之间产生任何歧义;特定粒子具有更高的优先级。如果转到XSD 1.1(这意味着使用非Microsoft工具),您会发现更容易满足您的要求。

如果您准备将元数据元素限制在第一位,那么您可以使用内容模型(metadata,xs:any *)执行此操作(即使在XSD 1.0中),其中xs:any具有processContents =“lax”。 Lax验证基本上意味着是否存在全局元素声明,然后对其进行验证,否则不进行验证。然后你的firstItemStoragesecondItemStorage元素声明必须成为全局元素声明(xs:element作为xs:schema的孩子)。

迁移到XSD 1.1使您可以解除元数据必须首先出现的限制(我不确定您是否要将其限制为仅出现一次)。

© www.soinside.com 2019 - 2024. All rights reserved.