如何在需要属性时防止XSD中出现空元素

时间:2015-03-11 12:47:21

标签: xml xsd xml-validation

我正在使用以下XSD验证XML文档,我想确保reportPath的值不为空。

这是我目前的XSD ..

    <xs:element name="reportPath">
      <xs:complexType>
        <xs:simpleContent>
          <xs:extension base="xs:string">
            <xs:attribute name="Name" type="xs:string" use="required" />
          </xs:extension>
        </xs:simpleContent>
      </xs:complexType>
    </xs:element>

示例:

我希望我的XSD验证程序在reportPath

中没有值时返回false
<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns="ReportAutomation"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="ReportAutomation CommandLine.xsd">
  <templatePath Name="sourcePath">C:\Users\vm821231 Documents\sdtwetrwer.docx</templatePath>
  <reportPath Name="destPath"></reportPath>
  <filter Name="filters">ProjectName=PAL Controller;FolderName=Regression 2 Protocols\!03 Controller 3: Pump Operation;</filter>
</configuration>

1 个答案:

答案 0 :(得分:1)

您可以通过<xs:minLength value="1"/>将长度限制为至少1个字符(正如Ken White在评论中提到的那样)。

以下是这些内容如何适合您的XML示例,包括如何在同时需要xs:restriction属性时使用Name

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:ra="ReportAutomation"
           targetNamespace="ReportAutomation"
           elementFormDefault="qualified">

  <xs:element name="configuration">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="templatePath" type="ra:namedNonEmptyType"/>
        <xs:element name="reportPath" type="ra:namedNonEmptyType"/>
        <xs:element name="filter" type="ra:namedNonEmptyType"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>

  <xs:complexType name="namedNonEmptyType">
    <xs:simpleContent>
      <xs:extension base="ra:nonEmptyString">
        <xs:attribute name="Name" use="required"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>

  <xs:simpleType name="nonEmptyString">
    <xs:restriction base="xs:string">
      <xs:minLength value="1"/>
    </xs:restriction>
  </xs:simpleType>

</xs:schema>