configurator.xsd

来自「一个web service的开发工具」· XSD 代码 · 共 29 行

XSD
29
字号
<?xml version="1.0" encoding="utf-8"?>
<!--
	September 14, 2002

	(c) Copyright 2002, The Web Services-Interoperability Organization (WS-I)
	Download or use of this file is governed by the Policies and Bylaws of WS-I.

	For more information, send email info@ws-i.org. 	
-->
<xs:schema targetNamespace="http://www.ws-i.org/SampleApplications/SupplyChainManagement/2002-08/Configurator.xsd" xmlns:tns="http://www.ws-i.org/SampleApplications/SupplyChainManagement/2002-08/Configurator.xsd" xmlns:cfgn="http://www.ws-i.org/SampleApplications/SupplyChainManagement/2002-08/Configuration.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
	<xs:import namespace="http://www.ws-i.org/SampleApplications/SupplyChainManagement/2002-08/Configuration.xsd" schemaLocation="Configuration.xsd"/>
	<xs:element name="configOption" type="tns:ConfigOptionType"/>
	<xs:complexType name="ConfigOptionType">
		<xs:sequence>
			<xs:element name="name" type="xs:string"/>
			<xs:element name="selectionParms" type="xs:string"/>
			<xs:element name="configurationEndpoint" type="cfgn:ConfigurationEndpointType"/>
		</xs:sequence>
	</xs:complexType>
	<xs:element name="configOptions" type="tns:ConfigOptionsType"/>
	<xs:complexType name="ConfigOptionsType">
		<xs:sequence>
			<xs:element ref="tns:configOption" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:element name="refresh" type="xs:boolean"/>
	<xs:element name="configError" type="xs:string"/>
</xs:schema>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?