我想为跟随xml元素定义XSD,该元素具有属性“type”,决定了它的数据类型。
<kpp:property name = "SUPorganisationId" type = "integer">xxx </kpp:property>
有没有办法根据属性定义xsd元素类型?
<xs:element name="SUPorganisationId" type="This type should be defined from the value of TYPE attribute below">
<xs:complexType>
<xs:attribute name="TYPE" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>