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