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

How to prevent empty element in XSD while requiring an attribute

我正在使用以下 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>

示例:

reportPath

中没有值时,我希望我的 XSD 验证器 return 为假
<?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>

您可以通过 <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>