在XSD中的枚举中指定值

本文关键字:XSD 枚举 | 更新日期: 2023-09-27 18:00:29

我在XSD文件中定义了如下枚举

 <xs:simpleType name="PaperSizes">
    <xs:restriction base="xs:string">
      <xs:enumeration value="NUMBERS"></xs:enumeration>
      <xs:enumeration value="PICTURE"></xs:enumeration>
      <xs:enumeration value="RTF"></xs:enumeration>
    </xs:restriction>

我需要覆盖编译器指定的detault值。即:对于NUMBERS,默认值为0。我需要它的值2。

我需要做什么改变?

谢谢。

在XSD中的枚举中指定值

不能为集合中的每个值设置不同的默认值。您可以使用"default"关键字为任何xsd简单类型设置一个默认值。

因此,如果你想在上面的例子中设置一个默认值,你可以这样做:

<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="root">
    <xs:complexType>
      <xs:sequence>
        <xs:element default="PICTURE" name="PaperSizes">
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="NUMBERS" />
              <xs:enumeration value="PICTURE" />
              <xs:enumeration value="RTF" />
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

我希望这能有所帮助。