这是一种方法。问题是,您一次只能扩展/限制一个,因此采用两步法。
我保持原来的不变仅供参考,否则第一个服务元素可能是“限制”类型。
<?xml version="1.0" encoding="utf-8" ?>
<!-- XML Schema generated by QTAssistant/XSD Module (http://www.paschidev.com) -->
<xsd:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" xmlns="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="Service">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="loan.CreateLead"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:simpleType name="arestriction">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="loan.CreateLead"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:element name="Service1">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="arestriction"/>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:schema>