XML Schema:定义子complextype中的默认值

时间:2013-07-15 17:07:30

标签: xml xsd schema

我们有一个父元素,它具有“implementationClass”属性。这个父元素有许多子节点,我们希望在其中定义默认值。以下是父元素的定义:

<xsd:complexType name="serviceType">
    <xsd:sequence>
        <xsd:element name="name" type="xsd:ID" />
        <xsd:element name="connection">
            <xsd:complexType>
                <xsd:attribute name="reference" type="xsd:IDREF" use="required" />
            </xsd:complexType>
        </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="implementationClass" type="xsd:string" use="optional" />
</xsd:complexType>

要创建具有additionnal属性的子元素,我们需要使用“extension”。要定义默认值,我们需要使用“限制”。但是,这两者是相互排斥的。

任何人都可以帮我弄清楚如何做到这一点?

提前致谢

1 个答案:

答案 0 :(得分:0)

你可以达到“延伸”和“限制”的效果 通过一些中间类型:

serviceType -> serviceTypeIntermediate -> serviceTypeResult

例如:

<xsd:complexType name="serviceTypeIntermediate">
  <xsd:complexContent>
    <xsd:extension base="serviceType">
      <xsd:sequence>
        <xsd:element name="something" type="xsd:String"/>
      <xsd:sequence>
    <xsd:extension>
  </xsd:complexContent>
</xsd:complexType>

<xsd:complexType name="serviceTypeResult">
  <xsd:complexContent>
    <xsd:restriction base="serviceTypeIntermediate">
      ...
    <xsd:restriction>
  </xsd:complexContent>
</xsd:complexType>

但请注意以下事项:

扩展(复杂内容)工作,以便新的子元素(在其中声明) 作为序列添加到初始内容中。 也就是说,您无法“扩展”已在基类型中声明的子项。

限制中,您必须重新定义整个内容模型。 但是,新内容必须与基本类型中定义的内容完全兼容。