<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 1999-2012. Parallels IP Holdings GmbH. All Rights Reserved. -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:element name="description" type="xs:string">
		<xs:annotation>
			<xs:documentation>Description of a dump</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="dump-info">
		<xs:annotation>
			<xs:documentation>Dump presentation in Plesk GUI</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="description" minOccurs="0"/>
				<xs:element name="os-description" minOccurs="0">
					<xs:complexType>
						<xs:attribute name="type">
							<xs:simpleType>
								<xs:restriction base="xs:token">
									<xs:enumeration value="windows"/>
									<xs:enumeration value="unix"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
						<xs:attribute name="version" type="xs:string"/>
					</xs:complexType>
				</xs:element>
				<xs:element name="host-description" minOccurs="0">
					<xs:complexType>
						<xs:attribute name="netbios-name" type="xs:string"/>
					</xs:complexType>
				</xs:element>
				<xs:element name="cp-description" minOccurs="0">
					<xs:annotation>
						<xs:documentation>Description of backuped control panel</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:sequence>
							<xs:element name="directories" minOccurs="0">
								<xs:complexType>
									<xs:attribute name="vhosts">
										<xs:annotation>
											<xs:documentation>Absolute path to vhosts root</xs:documentation>
										</xs:annotation>
									</xs:attribute>
									<xs:attribute name="product_data">
										<xs:annotation>
											<xs:documentation>Absolute path to Plesk services root. Typically the same as product_root.</xs:documentation>
										</xs:annotation>
									</xs:attribute>
									<xs:attribute name="product_root">
										<xs:annotation>
											<xs:documentation>Absolute path to Plesk root</xs:documentation>
										</xs:annotation>
									</xs:attribute>
								</xs:complexType>
							</xs:element>
							<xs:element name="components-installed" minOccurs="0">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="component" maxOccurs="unbounded">
											<xs:complexType>
												<xs:attribute name="name">
													<xs:annotation>
														<xs:documentation>Example: httpd</xs:documentation>
													</xs:annotation>
												</xs:attribute>
												<xs:attribute name="configured" type="booleanType"/>
											</xs:complexType>
										</xs:element>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
						<xs:attribute name="type">
							<xs:annotation>
								<xs:documentation>Type of dumped control panel, f.e. Plesk, cPanel, Ensim etc.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="db-version">
							<xs:annotation>
								<xs:documentation>Control panel database version</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="version">
							<xs:annotation>
								<xs:documentation>Control panel version</xs:documentation>
							</xs:annotation>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element name="content-transport" minOccurs="0">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="rsync" minOccurs="0">
								<xs:annotation>
									<xs:documentation>Contains required parameters for processing of elements of 'cid-rsync' type</xs:documentation>
								</xs:annotation>
								<xs:complexType>
									<xs:attribute name="host" use="required"/>
									<xs:attribute name="port"/>
									<xs:attribute name="login" use="required"/>
									<xs:attribute name="password" use="required"/>
								</xs:complexType>
							</xs:element>
							<xs:element name="remote-win" minOccurs="0">
								<xs:annotation>
									<xs:documentation>Contains required parameters for remote content transfer</xs:documentation>
								</xs:annotation>
								<xs:complexType>
									<xs:attribute name="url" use="required"/>
									<xs:attribute name="login" use="required"/>
									<xs:attribute name="password" use="required"/>
									<xs:attribute name="transport" use="required"/>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:simpleType name="booleanType">
		<xs:restriction base="xs:token">
			<xs:enumeration value="true"/>
			<xs:enumeration value="false"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:element name="content">
		<xs:complexType>
			<xs:choice minOccurs="0" maxOccurs="unbounded">
				<xs:element name="cid">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="content-file" minOccurs="0" maxOccurs="unbounded">
								<xs:complexType>
									<xs:simpleContent>
										<xs:extension base="xs:string">
											<xs:attribute name="size" type="xs:long"/>
										</xs:extension>
									</xs:simpleContent>
								</xs:complexType>
							</xs:element>
							<xs:element ref="group-map" minOccurs="0" maxOccurs="unbounded"/>
							<xs:element name="include-item" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
							<xs:element name="exclude-item" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
						</xs:sequence>
						<xs:attribute name="type">
							<xs:simpleType>
								<xs:restriction base="xs:string">
									<xs:enumeration value="skeleton">
										<xs:annotation>
											<xs:documentation>Virtual host file structure (skeleton), content of skeleton folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="docroot">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/httpdocs folder (without siteapps-related folders)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="docroot_ssl">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/httpsdocs folder (without siteapps-related folders)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="cgi">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/cgi-bin folder (without siteapps-related folders)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="error_docs">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/error_docs folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="private"/>
									<xs:enumeration value="conf">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/conf folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="conf_ssl">
										<xs:annotation>
											<xs:documentation>vhost_ssl.conf file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="admin_private">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/admin_private folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="logs">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/logs folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="anon_ftpstat">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/anon_ftpstats folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sqldump">
										<xs:annotation>
											<xs:documentation>Text dump of a database, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="dbdump">
										<xs:annotation>
											<xs:documentation>Binary dump of a database, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webuser_home">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/web_users/WEB_USER folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webuser_private">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/private/WEB_USER folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="ftp_pub">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/anon_ftp/pub folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="ftp_incoming">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/anon_ftp/incoming folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailbox">
										<xs:annotation>
											<xs:documentation>Content of mailbox (mbox file or maildir) or maillist content as single mbox file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailbox_inbox">
										<xs:annotation>
											<xs:documentation>Content of mail inbox in mbox format, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailmsg">
										<xs:annotation>
											<xs:documentation>Mailbox content in internal Plesk independed format</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailnative">
										<xs:annotation>
											<xs:documentation>Mail content in mailserver (selected as used in Plesk) native format</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="attaches">
										<xs:annotation>
											<xs:documentation>Content of attaches folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="locale"/>
									<xs:enumeration value="skin"/>
									<xs:enumeration value="key">
										<xs:annotation>
											<xs:documentation>Key (plesk license, domain-key or any other key, depending of context), single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webstat">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/webstat folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webstat_ssl">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/webstat_ssl folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="ftp_stat">
										<xs:annotation>
											<xs:documentation>Conent of DOMAIN/statistics/ftp_stat folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="statistics">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="spam-assasin">
										<xs:annotation>
											<xs:documentation>Content of spamassassin folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-distrib">
										<xs:annotation>
											<xs:documentation>Content of siteapp distribution directory (usually /var/apspkgarc/SITEAPP)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-package">
										<xs:annotation>
											<xs:documentation>Site application package wrapped to archive</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="web-app">
										<xs:annotation>
											<xs:documentation>Tomcat application, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-scripts">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/vault_scripts/SITEAPP folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-https-scripts">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/vault_https_scripts/SITEAPP folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-cgi-bin">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/cgi-bin folder, the only files related to the siteapp</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-htdocs">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/httpdocs or DOMAIN/httpsdocs folder, the only files related to the siteapp</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-apsc">
										<xs:annotation>
											<xs:documentation>Content of APS controller</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="icon">
										<xs:annotation>
											<xs:documentation>Icon (picture) of custom button, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="vhost"/>
									<xs:enumeration value="domainmail"/>
									<xs:enumeration value="domainmaillist"/>
									<xs:enumeration value="vdirs"/>
									<xs:enumeration value="error_docs_cfg"/>
									<xs:enumeration value="sb-reseller">
										<xs:annotation>
											<xs:documentation>Deprecated</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sb-domain">
										<xs:annotation>
											<xs:documentation>Deprecated</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sb5-site"/>
									<xs:enumeration value="sb5-server"/>
									<xs:enumeration value="drilldowns-config"/>
									<xs:enumeration value="whole"/>
									<xs:enumeration value="aspnet_config"/>
									<xs:enumeration value="aps-cache">
										<xs:annotation>
											<xs:documentation>SMB server wide cache for APS files</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="smb-sqldump">
										<xs:annotation>
											<xs:documentation>Dump of SMB database. Tables in psa database, that begin with smb_</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sb-dump">
										<xs:annotation>
											<xs:documentation>Dump of SiteEditor content</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="file-sharing">
										<xs:annotation>
											<xs:documentation>Dump of File sharing content</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="file-sharing-passwd">
										<xs:annotation>
											<xs:documentation>Dump of File sharing passwd config file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailbox_whole">
										<xs:annotation>
											<xs:documentation>Mailbox content provided by pre9-backup-convertor. Includes all dirs in mailname(Maildir, .spamassassin, @attachments)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="custom-apache-templates">
										<xs:annotation>
											<xs:documentation>Templates for apache configuration files</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="branding-theme"/>
									<xs:enumeration value="theme-skin">
										<xs:annotation>
											<xs:documentation>New skins since 11.1.0</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="pd">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/pd folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="user-data">
										<xs:annotation>
											<xs:documentation>All user-accessible content including httpdocs, httpsdocs, etc.</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="system">
										<xs:annotation>
											<xs:documentation>All Plesk service data, like .Security files</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="security">
										<xs:annotation>
											<xs:documentation>Plesk security files .Security and .Web.webusername.Security</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="apache-files">
										<xs:annotation>
											<xs:documentation>Target the same location as user-data, but include only files owned by Apache (www-data), but inaccessible for others</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
						<xs:attribute name="path" type="xs:string"/>
						<xs:attribute name="unpacksize" type="xs:long">
							<xs:annotation>
								<xs:documentation>(in bytes)</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="referrer">
							<xs:simpleType>
								<xs:restriction base="xs:token">
									<xs:enumeration value="true"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
						<xs:attribute name="offset" type="xs:string"/>
						<xs:attribute name="transport" type="xs:string"/>
					</xs:complexType>
				</xs:element>
				<xs:element name="cid-rsync">
					<xs:complexType>
						<xs:sequence>
							<xs:element ref="group-map" minOccurs="0" maxOccurs="unbounded"/>
							<xs:element name="include-item" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
							<xs:element name="exclude-item" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
						</xs:sequence>
						<xs:attribute name="type">
							<xs:simpleType>
								<xs:restriction base="xs:string">
									<xs:enumeration value="skeleton">
										<xs:annotation>
											<xs:documentation>Virtual host file structure (skeleton), content of skeleton folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="docroot">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/httpdocs folder (without siteapps-related folders)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="docroot_ssl">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/httpsdocs folder (without siteapps-related folders)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="cgi">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/cgi-bin folder (without siteapps-related folders)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="error_docs">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/error_docs folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="private"/>
									<xs:enumeration value="conf">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/conf folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="conf_ssl">
										<xs:annotation>
											<xs:documentation>vhost_ssl.conf file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="admin_private">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/admin_private folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="logs">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/logs folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="anon_ftpstat">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/anon_ftpstats folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webuser_home">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/web_users/WEB_USER folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webuser_private">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/private/WEB_USER folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="ftp_pub">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/anon_ftp/pub folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="ftp_incoming">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/anon_ftp/incoming folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailbox">
										<xs:annotation>
											<xs:documentation>Content of mailbox (mbox file or maildir) or maillist content as single mbox file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailbox_inbox">
										<xs:annotation>
											<xs:documentation>Content of mail inbox in mbox format, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailmsg">
										<xs:annotation>
											<xs:documentation>Mailbox content in internal Plesk independed format</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailnative">
										<xs:annotation>
											<xs:documentation>Mail content in mailserver (selected as used in Plesk) native format</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="attaches">
										<xs:annotation>
											<xs:documentation>Content of attaches folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="locale"/>
									<xs:enumeration value="skin"/>
									<xs:enumeration value="key">
										<xs:annotation>
											<xs:documentation>Key (plesk license, domain-key or any other key, depending of context), single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webstat">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/webstat folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="webstat_ssl">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics/webstat_ssl folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="ftp_stat">
										<xs:annotation>
											<xs:documentation>Conent of DOMAIN/statistics/ftp_stat folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="statistics">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/statistics folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="spam-assasin">
										<xs:annotation>
											<xs:documentation>Content of spamassassin folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-distrib">
										<xs:annotation>
											<xs:documentation>Content of siteapp distribution directory (usually /var/apspkgarc/SITEAPP)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="web-app">
										<xs:annotation>
											<xs:documentation>Tomcat application, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-scripts">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/vault_scripts/SITEAPP folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-https-scripts">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/vault_https_scripts/SITEAPP folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-cgi-bin">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/cgi-bin folder, the only files related to the siteapp</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="sapp-htdocs">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/httpdocs or DOMAIN/httpsdocs folder, the only files related to the siteapp</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="icon">
										<xs:annotation>
											<xs:documentation>Icon (picture) of custom button, single file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="vhost"/>
									<xs:enumeration value="domainmail"/>
									<xs:enumeration value="domainmaillist"/>
									<xs:enumeration value="vdirs"/>
									<xs:enumeration value="error_docs_cfg"/>
									<xs:enumeration value="sb-reseller"/>
									<xs:enumeration value="sb-domain"/>
									<xs:enumeration value="whole"/>
									<xs:enumeration value="aspnet_config"/>
									<xs:enumeration value="aps-cache">
										<xs:annotation>
											<xs:documentation>SMB server wide cache for APS files</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="file-sharing">
										<xs:annotation>
											<xs:documentation>Dump of File sharing content</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="file-sharing-passwd">
										<xs:annotation>
											<xs:documentation>Dump of File sharing passwd config file</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="mailbox_whole">
										<xs:annotation>
											<xs:documentation>Mailbox content provided by pre9-backup-convertor. Includes all dirs in mailname(Maildir, .spamassassin, @attachments)</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="custom-apache-templates">
										<xs:annotation>
											<xs:documentation>Templates for apache configuration files</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="branding-theme"/>
									<xs:enumeration value="theme-skin">
										<xs:annotation>
											<xs:documentation>New skins since 11.1.0</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
									<xs:enumeration value="pd">
										<xs:annotation>
											<xs:documentation>Content of DOMAIN/pd folder</xs:documentation>
										</xs:annotation>
									</xs:enumeration>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
						<xs:attribute name="path" type="xs:string"/>
						<xs:attribute name="unpacksize" type="xs:long">
							<xs:annotation>
								<xs:documentation>(in bytes)</xs:documentation>
							</xs:annotation>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
			</xs:choice>
		</xs:complexType>
	</xs:element>
	<xs:element name="group-map">
		<xs:complexType>
			<xs:attribute name="name-from" use="required"/>
			<xs:attribute name="name-to" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="traffic" type="xs:string">
		<xs:annotation>
			<xs:documentation>Domain(Client,Reseller) traffic volume statistics	contains the set of text lines of the following format: 'yyyy-mm-dd type direction amount\n' where amount is in bytes, type is (http|ftp|smtp|pop3-imap), direction is (in|out)</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="odbc-dsn">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="description" type="xs:string" minOccurs="0"/>
				<xs:element name="driver" type="xs:string"/>
				<xs:element name="connection-string" type="xs:string"/>
			</xs:sequence>
			<xs:attribute name="name" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="grey-listing">
		<xs:annotation>
			<xs:documentation>Server wide grey listing settings</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="white-list" minOccurs="0"/>
				<xs:element ref="black-list" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="grey-interval">
				<xs:annotation>
					<xs:documentation>Minimal period between first attempt and next retrying. In seconds</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="expire-interval">
				<xs:annotation>
					<xs:documentation>During this period the data is stored from the last update</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="penalty-enabled" type="booleanType"/>
			<xs:attribute name="penalty-interval">
				<xs:annotation>
					<xs:documentation>Using only when penalty-enabled is true</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="enabled" type="booleanType"/>
			<xs:attribute ref="personal-conf"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="black-list">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="list-item" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="white-list">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="list-item" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="list-item">
		<xs:annotation>
			<xs:documentation>ACL IP address</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="action">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="del"/>
						<xs:enumeration value="mark"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:attribute name="personal-conf" type="booleanType"/>
	<xs:element name="iis-app-pool-cpu-usage-monitoring">
		<xs:complexType>
			<xs:attribute name="state" type="booleanType" use="required"/>
			<xs:attribute name="value" type="xs:int"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="sapp-item">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="sapp-spec"/>
				<xs:element ref="license-type" minOccurs="0"/>
				<xs:element ref="shared" minOccurs="0"/>
				<xs:element ref="description" minOccurs="0">
					<xs:annotation>
						<xs:documentation> </xs:documentation>
					</xs:annotation>
				</xs:element>
				<xs:element ref="instances-limit" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="enabled" type="booleanType"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="instances-limit" type="xs:string"/>
	<xs:element name="shared" type="xs:string"/>
	<xs:element name="sapp-license">
		<xs:complexType>
			<xs:choice>
				<xs:sequence>
					<xs:element ref="key-number"/>
					<xs:element ref="license-type"/>
					<xs:element ref="license-text"/>
				</xs:sequence>
				<xs:sequence>
					<xs:element ref="aps-registry-id" minOccurs="0"/>
					<xs:element ref="license-type"/>
					<xs:element name="activation-code"/>
					<xs:element name="use-stub" type="booleanType" minOccurs="0"/>
				</xs:sequence>
			</xs:choice>
		</xs:complexType>
	</xs:element>
	<xs:element name="key-number" type="xs:string"/>
	<xs:element name="license-text" type="xs:string">
		<xs:annotation>
			<xs:documentation>License agreement</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="license-type" type="xs:string"/>
	<xs:element name="sapp-spec">
		<xs:annotation>
			<xs:documentation>Site application details</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="sapp-package-id" minOccurs="0"/>
				<xs:element ref="sapp-name"/>
				<xs:element ref="sapp-version" minOccurs="0"/>
				<xs:element ref="sapp-release" minOccurs="0"/>
				<xs:element ref="sapp-description" minOccurs="0"/>
				<xs:element ref="sapp-commercial" minOccurs="0"/>
				<xs:element ref="sapp-integrated" minOccurs="0"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="sapp-name" type="xs:string">
		<xs:annotation>
			<xs:documentation>Site application name. Example: openbiblio</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="sapp-version" type="xs:string"/>
	<xs:element name="sapp-release" type="xs:string"/>
	<xs:element name="sapp-description">
		<xs:complexType mixed="true">
			<xs:attribute ref="encoding"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="sapp-commercial">
		<xs:annotation>
			<xs:documentation>If present, the site application is commercial</xs:documentation>
		</xs:annotation>
		<xs:complexType/>
	</xs:element>
	<xs:element name="sapp-integrated">
		<xs:complexType/>
	</xs:element>
	<xs:element name="sapp-package-id" type="xs:string"/>
	<xs:attribute name="aps-registry-id" type="xs:string"/>
	<xs:element name="aps-registry-id" type="xs:string"/>
	<xs:element name="status" type="statusType">
		<xs:annotation>
			<xs:documentation>Object status. Allowed values:		true (if enabled), false (if disabled by Plesk Administrator), disabled-by-user (if disabled by Plesk user), disabled-by-parent (if parent object is disabled)</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:complexType name="statusType">
		<xs:choice>
			<xs:element ref="disabled-by" maxOccurs="unbounded"/>
			<xs:element ref="enabled"/>
		</xs:choice>
	</xs:complexType>
	<xs:element name="enabled">
		<xs:complexType/>
	</xs:element>
	<xs:element name="disabled-by">
		<xs:complexType>
			<xs:attribute name="name" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="domadm"/>
						<xs:enumeration value="parent"/>
						<xs:enumeration value="admin"/>
						<xs:enumeration value="client"/>
						<xs:enumeration value="expired"/>
						<xs:enumeration value="reseller"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="virusfilter">
		<xs:annotation>
			<xs:documentation>Antivirus settings</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="state" use="required">
				<xs:annotation>
					<xs:documentation>Check incoming (in), outgoing (out) or both (inout) mail messages for viruses</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="none"/>
						<xs:enumeration value="inout"/>
						<xs:enumeration value="in"/>
						<xs:enumeration value="out"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="allow-personal">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="none"/>
						<xs:enumeration value="in"/>
						<xs:enumeration value="out"/>
						<xs:enumeration value="both"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="spamassassin">
		<xs:annotation>
			<xs:documentation>Spam filter settings</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="content" minOccurs="0">
					<xs:annotation>
						<xs:documentation>Available content types: spam-assasin</xs:documentation>
					</xs:annotation>
				</xs:element>
				<xs:element ref="blacklist-member" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="whitelist-member" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="unblacklist-member" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="unwhitelist-member" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="trusted-locale" type="xs:string" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Letters written with the defined character sets will not be marked as spam</xs:documentation>
					</xs:annotation>
				</xs:element>
				<xs:element name="trusted-language" type="xs:string" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Letters written in the specified languages  will not be marked as spam</xs:documentation>
					</xs:annotation>
				</xs:element>
				<xs:element name="trusted-network" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>The relay hosts on trusted networks are considered not to be potentially operated by spammers, and they are not open relays, or open proxies.</xs:documentation>
					</xs:annotation>
				</xs:element>
			</xs:sequence>
			<xs:attribute name="status">
				<xs:annotation>
					<xs:documentation>Indicates if spam filtering is enabled</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="on"/>
						<xs:enumeration value="off"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="server-conf" type="booleanType">
				<xs:annotation>
					<xs:documentation>[deprecated since Plesk 9.0]</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute ref="personal-conf"/>
			<xs:attribute name="hits">
				<xs:annotation>
					<xs:documentation>Number of points a message must gain to be considered as spam. Type: real. Example: 7.5</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="action">
				<xs:annotation>
					<xs:documentation>Message handling instructions</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="delete"/>
						<xs:enumeration value="mark"/>
						<xs:enumeration value="move"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="modify-subj" type="booleanType">
				<xs:annotation>
					<xs:documentation>[deprecated since Plesk 9.0]</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="subj-text">
				<xs:annotation>
					<xs:documentation>Message subject text that marks spam</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="alert-text">
				<xs:annotation>
					<xs:documentation>The beginning of subject of each message recognized as spam</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="max-mail">
				<xs:annotation>
					<xs:documentation>Maximum size of the message that the spam filter will test.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="max-spam-threads">
				<xs:annotation>
					<xs:documentation>The maximum number of worker spamd processes to run. Allowed values: 1-5</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="blacklist-member" type="xs:string">
		<xs:annotation>
			<xs:documentation>Email address that  can contain "*" and "?" wildcards. Example: *.com</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="whitelist-member" type="xs:string">
		<xs:annotation>
			<xs:documentation>Email address that  can contain "*" and "?" wildcards. Example: *.com</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="unblacklist-member" type="xs:string">
		<xs:annotation>
			<xs:documentation>Email address that  can contain "*" and "?" wildcards. Example: *.com</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="unwhitelist-member" type="xs:string">
		<xs:annotation>
			<xs:documentation>Email address that  can contain "*" and "?" wildcards. Example: *.com</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="cron">
		<xs:annotation>
			<xs:documentation>crontab file text</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute ref="encoding"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="pinfo">
		<xs:annotation>
			<xs:documentation>General personal information item. Modifies Plesk user preferences only if Plesk is installed but not yet configured</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>Information item name</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="company"/>
						<xs:enumeration value="phone"/>
						<xs:enumeration value="fax"/>
						<xs:enumeration value="address"/>
						<xs:enumeration value="city"/>
						<xs:enumeration value="state"/>
						<xs:enumeration value="zip"/>
						<xs:enumeration value="country"/>
						<xs:enumeration value="locale"/>
						<xs:enumeration value="email"/>
						<xs:enumeration value="name"/>
						<xs:enumeration value="im"/>
						<xs:enumeration value="im-type"/>
						<xs:enumeration value="comment">
							<xs:annotation>
								<xs:documentation>is used only for smb users and resellers in the Plesk</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="phone-type"/>
						<xs:enumeration value="phone2"/>
						<xs:enumeration value="phone2-type"/>
						<xs:enumeration value="phone3"/>
						<xs:enumeration value="phone3-type"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="encoded">
				<xs:annotation>
					<xs:documentation>Indicates whether element content is base64 encoded</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="yes"/>
						<xs:enumeration value="no"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="permission">
		<xs:annotation>
			<xs:documentation>General permission item.	Presence of this element means that object has such permission.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:attribute name="name" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="create_domains">
							<xs:annotation>
								<xs:documentation>Allows or prohibits reseller to create domains. Allowed values:true, false</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_phosting">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing physical hosting</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_php_safe_mode">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing php safe mode</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_dns">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing DNS</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_log">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing log rotation</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_crontab">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing crontab (scheduler)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_anonftp">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing anonymous FTP</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_subftp">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing FTP accounts</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_webapps">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing Java applications</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_maillists">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing mailing lists</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_sh_access">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing system access</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_subdomains">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing subdomains</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_domain_aliases">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing domain aliases</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_quota">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits changing hard disk quota</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_virusfilter">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing antivirus</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_local_backups">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits the use of backup/restore functions, use local repository</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_ftp_backups">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits the use of backup/restore functions, use FTP repository</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="make_dumps">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits the use of backup/restore functions</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="select_db_server">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits the use of DB server from server pool</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_not_chroot_shell">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing non-chrooted shell</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="cp_access">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits control panel access</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="remote_access_interface">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits to use remote XML interface</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_domain_aliases">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing domain aliases</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_ftp_password">
							<xs:annotation>
								<xs:documentation>true|false; allow or prohibits managing ftp password</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="site_builder">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits to use sitebuilder</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_iis_app_pool">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits to configure IIS Application Pool</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_spamfilter">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits managing spamfilter</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_webstat">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits web statistics management </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_additional_permissions">
							<xs:annotation>
								<xs:documentation>true|false; there is no documentation for this permission</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_shared_ssl">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits configure Shared SSL</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_performance">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits performance management </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="create_clients">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits reseller to create clients</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_oversell">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits overselling management </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="multiple-sessions"/>
						<xs:enumeration value="access_appcatalog">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits access to application catalog</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_insecure_sites">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits insecure hosting options</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_mail_settings">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits possibility to change mail settings</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_protected_dirs">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits  visibility of corresponding menu and its content</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_website_maintenance">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits  visibility of corresponding menu and its content</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_php_settings">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits to manage php settings</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="access_service_users">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits to access to 'Users' tab</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_server_actionlog"/>
						<xs:enumeration value="manage_server_admin_access"/>
						<xs:enumeration value="manage_server_app_vault"/>
						<xs:enumeration value="manage_server_backup"/>
						<xs:enumeration value="manage_server_branding"/>
						<xs:enumeration value="manage_server_coldfusion"/>
						<xs:enumeration value="manage_server_components"/>
						<xs:enumeration value="manage_server_crontab"/>
						<xs:enumeration value="manage_server_custom_buttons"/>
						<xs:enumeration value="manage_server_db"/>
						<xs:enumeration value="manage_server_dns_template"/>
						<xs:enumeration value="manage_server_domain_traffic_report"/>
						<xs:enumeration value="manage_server_events"/>
						<xs:enumeration value="manage_server_filesharing"/>
						<xs:enumeration value="manage_server_firewall"/>
						<xs:enumeration value="manage_server_google_services"/>
						<xs:enumeration value="manage_server_info"/>
						<xs:enumeration value="manage_server_ip_addresses"/>
						<xs:enumeration value="manage_server_languages"/>
						<xs:enumeration value="manage_server_license"/>
						<xs:enumeration value="manage_server_mail"/>
						<xs:enumeration value="manage_server_maillist"/>
						<xs:enumeration value="manage_server_mass_email"/>
						<xs:enumeration value="manage_server_migration"/>
						<xs:enumeration value="manage_server_modules"/>
						<xs:enumeration value="manage_server_notifications"/>
						<xs:enumeration value="manage_server_optimization"/>
						<xs:enumeration value="manage_server_preview_domain"/>
						<xs:enumeration value="manage_server_reboot"/>
						<xs:enumeration value="manage_server_services"/>
						<xs:enumeration value="manage_server_sessions"/>
						<xs:enumeration value="manage_server_settings"/>
						<xs:enumeration value="manage_server_shutdown"/>
						<xs:enumeration value="manage_server_skeleton"/>
						<xs:enumeration value="manage_server_spam_filter"/>
						<xs:enumeration value="manage_server_ssl_certificates"/>
						<xs:enumeration value="manage_server_summary_report"/>
						<xs:enumeration value="manage_server_support"/>
						<xs:enumeration value="manage_server_time"/>
						<xs:enumeration value="manage_server_ui"/>
						<xs:enumeration value="manage_server_updates"/>
						<xs:enumeration value="manage_server_virus_protection"/>
						<xs:enumeration value="manage_server_vzpp"/>
						<xs:enumeration value="manage_server_webmail"/>
						<xs:enumeration value="manage_server_mail_black_white_lists"/>
						<xs:enumeration value="allow_license_stubs"/>
						<xs:enumeration value="manage_server_mailgate"/>
						<xs:enumeration value="change_limits"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="value">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="true"/>
						<xs:enumeration value="false"/>
						<xs:enumeration value="block"/>
						<xs:enumeration value="notify"/>
						<xs:enumeration value="normal"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="limit">
		<xs:annotation>
			<xs:documentation>Limits on resources, which Plesk object may own.	Element contains value of the limit. 'expiration' limit must be in form YYYY-MM-DD</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>Limit name</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="max_dom">
							<xs:annotation>
								<xs:documentation>number; limit number of available domains (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="disk_space">
							<xs:annotation>
								<xs:documentation>number[K|M|G]; limits amount of available disk space to the specified value (in bytes) (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="disk_space_soft">
							<xs:annotation>
								<xs:documentation>number[K|M|G]; Notify upon disk space reaching this value</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_traffic">
							<xs:annotation>
								<xs:documentation>number[K|M|G]; limits the amount of available traffic to the specified value (in bytes/month) (-1 is unlimited, default: 100G)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_traffic_soft">
							<xs:annotation>
								<xs:documentation>number[K|M|G]; Notify upon max traffic reaching this value</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_box">
							<xs:annotation>
								<xs:documentation>number; limits the allowed number of mailboxes to the specified value (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="mbox_quota">
							<xs:annotation>
								<xs:documentation>number[K|M|G]; limits the mailbox quota to the specified size (in bytes) (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="total_mbox_quota">
							<xs:annotation>
								<xs:documentation>number[K|M|G]; limits the total mailboxes quota to the specified size (in bytes) (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="total_mboxes_quota">
							<xs:annotation>
								<xs:documentation>number[K|M|G]; limits the total mailboxes quota to the specified size (in bytes) (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_wu">
							<xs:annotation>
								<xs:documentation>number; limits the number of web users (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_fpse_users">
							<xs:annotation>
								<xs:documentation>number; limits the number of frontpage additional users (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_subftp_users">
							<xs:annotation>
								<xs:documentation>number; limits the number of FTP additional accounts (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_db">
							<xs:annotation>
								<xs:documentation>number; limits the number of databases (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_mssql_db">
							<xs:annotation>
								<xs:documentation>number; limits the number of MSSQL databases (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="mysql_dbase_space">
							<xs:annotation>
								<xs:documentation>number; limits the disc space used by mysql databases (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="mssql_dbase_space">
							<xs:annotation>
								<xs:documentation>number; limits the disc space used by MSSQL databases (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_maillists">
							<xs:annotation>
								<xs:documentation>number; limits the number of mailing lists (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_webapps">
							<xs:annotation>
								<xs:documentation>number; limits the number of Java applications allowed (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_subdom">
							<xs:annotation>
								<xs:documentation>number; limits the number of subdomains (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_dom_aliases">
							<xs:annotation>
								<xs:documentation>number; limits the number of domain aliases (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_iis_app_pools">
							<xs:annotation>
								<xs:documentation>number; (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_shared_ssl_links">
							<xs:annotation>
								<xs:documentation>number; (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="expiration">
							<xs:annotation>
								<xs:documentation>YYYY-MM-DD; limits the validity period of reseller account (-1 is unlimited, default: current date + 1 year)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_cf_dsn">
							<xs:annotation>
								<xs:documentation>number; (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_cl">
							<xs:annotation>
								<xs:documentation>number; limit number of available clients (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_odbc">
							<xs:annotation>
								<xs:documentation>There is no documentation</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="oversell">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits overselling  </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="overuse">
							<xs:annotation>
								<xs:documentation>block|notify|normal|not_suspend|not_suspend_notify; sets overusing type </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_site">
							<xs:annotation>
								<xs:documentation>number; limit number of available sites (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_site_builder">
							<xs:annotation>
								<xs:documentation>number; limit number of available site builder; available value -1 and 0 (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_mn">
							<xs:annotation>
								<xs:documentation>number; limit number of available mail names (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_unity_mobile_sites">
							<xs:annotation>
								<xs:documentation>number; limit number of sites to publish in unity mobile  (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="ip">
		<xs:annotation>
			<xs:documentation>IP address representation.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="ip-type"/>
				<xs:element ref="ip-address"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="ip-type" type="xs:string"/>
	<xs:element name="ip-address" type="xs:string"/>
	<xs:element name="php-settings">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="notice-text" minOccurs="0"/>
				<xs:element name="setting" type="nameValueType" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="notice-text" type="xs:string"/>
	<xs:element name="aps-bundle">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="filter" minOccurs="0">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="item" minOccurs="0" maxOccurs="unbounded">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="name" type="xs:string"/>
										<xs:element name="value" type="xs:string"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
						<xs:attribute name="type" use="required">
							<xs:simpleType>
								<xs:restriction base="xs:string">
									<xs:enumeration value="black"/>
									<xs:enumeration value="white"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="custom-button">
		<xs:annotation>
			<xs:documentation>Buttons on Plesk control panel</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="content" minOccurs="0">
					<xs:annotation>
						<xs:documentation>Available content types: icon</xs:documentation>
					</xs:annotation>
				</xs:element>
				<xs:element ref="url-option" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="template-plan-item" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="url" use="required"/>
			<xs:attribute name="text" use="required">
				<xs:annotation>
					<xs:documentation>Button caption</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="sort-priority" use="required">
				<xs:annotation>
					<xs:documentation>The button priority in GUI</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="interface-place" use="required">
				<xs:annotation>
					<xs:documentation>Plesk screen on which the button is displayed</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="domain"/>
						<xs:enumeration value="client"/>
						<xs:enumeration value="reseller"/>
						<xs:enumeration value="reseller-settings"/>
						<xs:enumeration value="navigation"/>
						<xs:enumeration value="admin"/>
						<xs:enumeration value="admin-settings"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="conhelp">
				<xs:annotation>
					<xs:documentation>Text that appears when mouse cursor is over the button</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="open-in-same-frame" type="booleanType" use="required"/>
			<xs:attribute name="visible-to-sublogins" type="booleanType" use="required"/>
			<xs:attribute name="no-frame" use="optional">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="true"/>
						<xs:enumeration value="false"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="url-option">
		<xs:annotation>
			<xs:documentation>URL assigned to a custom button</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>Additional parameters that are added to URL</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="domain-id"/>
						<xs:enumeration value="domain-name"/>
						<xs:enumeration value="ftp-login"/>
						<xs:enumeration value="ftp-password"/>
						<xs:enumeration value="client-id"/>
						<xs:enumeration value="client-company-name"/>
						<xs:enumeration value="client-contact-name"/>
						<xs:enumeration value="client-email"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="subscription">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="plan" minOccurs="0" maxOccurs="unbounded">
					<xs:complexType>
						<xs:attribute name="quantity" type="xs:int" use="required"/>
						<xs:attribute name="plan-guid" use="required"/>
						<xs:attribute name="is-addon" type="booleanType"/>
					</xs:complexType>
				</xs:element>
				<xs:element name="properties" minOccurs="0">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="property" type="nameValueType" minOccurs="0" maxOccurs="unbounded"/>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
			<xs:attribute name="locked" type="booleanType"/>
			<xs:attribute name="synchronized" type="booleanType">
				<xs:annotation>
					<xs:documentation>Used on restore to decide must be a subscription synced with plan or not. Added as fix of bug in 11.0.9, where subscription with changed permissions was not locked and synchronized</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="iis-application-pool">
		<xs:annotation>
			<xs:documentation>IIS application pool settings</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="iis-app-pool-cpu-usage-monitoring" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="turned-on" type="booleanType" use="required"/>
			<xs:attribute name="identity" type="xs:string" use="optional"/>
		</xs:complexType>
	</xs:element>
	<!--
		type: 'plain' - password is plain-text
		'encrypted' - password is encrypted with some algorithm
		'empty' - no password specified
		encoding: whether password text is incoded or not
	-->
	<xs:element name="password">
		<xs:annotation>
			<xs:documentation>Plain or encrypted password</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="type" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="plain"/>
						<xs:enumeration value="sym"/>
						<xs:enumeration value="encrypted">
							<xs:annotation>
								<xs:documentation>password is encrypted with some algorithm</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="empty">
							<xs:annotation>
								<xs:documentation>no password specified</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute ref="encoding"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="template-plan-item">
		<xs:annotation>
			<xs:documentation>Custom Plan Item</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="name" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:simpleType name="certificateRef">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:element name="dns-zone">
		<xs:annotation>
			<xs:documentation>DNS zone attached to domain or domain alias. Allowed statuses: enabled, disabled-by-domadm, disabled-with-parent				Zone parameters must not have duplicate names inside one zone, and omitted zone parameters are considered having default values.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="status">
					<xs:annotation>
						<xs:documentation>Object status. Allowed values:		true (if enabled), false (if disabled by Plesk Administrator), disabled-by-user (if disabled by Plesk user), disabled-by-parent (if parent object is disabled)</xs:documentation>
					</xs:annotation>
				</xs:element>
				<xs:element ref="dns-zone-param" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="dnsrec" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="email">
				<xs:annotation>
					<xs:documentation>Zone administrator email</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="type" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="master"/>
						<xs:enumeration value="slave"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="serial-format">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="UNIXTIMESTAMP"/>
						<xs:enumeration value="YYYYMMDDNN"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<!--
		DNS zone parameters, attached to dns zone
		@unit is the value to display in UI
		@value is the zone param, always in seconds
	-->
	<xs:element name="dns-zone-param">
		<xs:annotation>
			<xs:documentation>DNS zone parameters, attached to dns zone</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:attribute name="name" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="ttl"/>
						<xs:enumeration value="refresh"/>
						<xs:enumeration value="retry"/>
						<xs:enumeration value="expire"/>
						<xs:enumeration value="minimum"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="unit" use="required">
				<xs:annotation>
					<xs:documentation>The value to display in UI</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="second"/>
						<xs:enumeration value="minutes"/>
						<xs:enumeration value="hours"/>
						<xs:enumeration value="days"/>
						<xs:enumeration value="weeks"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="value">
				<xs:annotation>
					<xs:documentation>Zone parameter value (in seconds)</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="dnsrec">
		<xs:annotation>
			<xs:documentation>DNS record</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:attribute name="type" use="required">
				<xs:annotation>
					<xs:documentation>Record type</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="A"/>
						<xs:enumeration value="AAAA"/>
						<xs:enumeration value="NS"/>
						<xs:enumeration value="MX"/>
						<xs:enumeration value="CNAME"/>
						<xs:enumeration value="PTR"/>
						<xs:enumeration value="TXT"/>
						<xs:enumeration value="master"/>
						<xs:enumeration value="SRV"/>
						<xs:enumeration value="AXFR"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="src" use="required">
				<xs:annotation>
					<xs:documentation>Source record</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="dst">
				<xs:annotation>
					<xs:documentation>Destination record</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="opt">
				<xs:annotation>
					<xs:documentation>Optional record (MX priority, PTR subnet)</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="db-server">
		<xs:annotation>
			<xs:documentation>Database server. Is
restored when full dump is restored</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="host"/>
				<xs:element ref="port"/>
				<xs:element ref="db-admin" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="type" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="mysql"/>
						<xs:enumeration value="mssql"/>
						<xs:enumeration value="postgresql"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="default">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="true"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="host" type="xs:string"/>
	<xs:element name="port" type="xs:string"/>
	<xs:element name="db-admin">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="password"/>
			</xs:sequence>
			<xs:attribute name="name" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:complexType name="userType">
		<xs:sequence>
			<xs:element name="properties">
				<xs:complexType>
					<xs:sequence>
						<xs:element ref="password"/>
						<xs:element ref="status"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="limits-and-permissions">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="role-ref">
							<xs:annotation>
								<xs:documentation>Contains role name</xs:documentation>
							</xs:annotation>
						</xs:element>
						<xs:element name="assigned-application" minOccurs="0" maxOccurs="unbounded"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="preferences">
				<xs:complexType>
					<xs:sequence>
						<xs:element ref="pinfo" minOccurs="0" maxOccurs="unbounded"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
		<xs:attribute name="name" type="xs:string" use="required"/>
		<xs:attribute name="contact" type="xs:string" use="required"/>
		<xs:attribute name="guid" type="xs:string" use="required"/>
		<xs:attribute name="email" type="xs:string" use="optional"/>
		<xs:attribute name="is-domain-admin" type="booleanType" use="required"/>
		<xs:attribute name="is-built-in" type="booleanType"/>
		<xs:attribute name="cr-date">
			<xs:annotation>
				<xs:documentation>Creation date</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="external-id" use="optional">
			<xs:annotation>
				<xs:documentation>External id</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="subscription-name" type="xs:string"/>
		<xs:attribute name="is-legacy-user" type="booleanType"/>
		<xs:attribute name="file-sharing-id" use="optional">
			<xs:annotation>
				<xs:documentation>Identificator of users filesharing</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	<xs:attribute name="external-email" type="booleanType" use="optional"/>
	</xs:complexType>
	<xs:complexType name="roleType">
		<xs:sequence>
			<xs:element name="limits-and-permissions" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="permission" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:attribute name="name" type="xs:string" use="required"/>
								<xs:attribute name="value" type="booleanType"/>
							</xs:complexType>
						</xs:element>
						<xs:element name="service-permission" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:attribute name="classname" type="xs:string" use="required"/>
								<xs:attribute name="description" type="xs:string" use="required"/>
								<xs:attribute name="externalId" type="xs:string" use="required"/>
								<xs:attribute name="permissionCode" type="xs:string" use="required"/>
								<xs:attribute name="class" type="xs:string" use="required"/>
								<xs:attribute name="value" type="booleanType"/>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
		<xs:attribute name="name" type="xs:string" use="required"/>
		<xs:attribute name="is-built-in" type="booleanType"/>
	</xs:complexType>
	<xs:element name="certificate-data" type="xs:string"/>
	<xs:element name="signing-request" type="xs:string">
		<xs:annotation>
			<xs:documentation>Certificate CSR (certificate signing request)</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:element name="ca-certificate" type="xs:string"/>
	<xs:element name="private-key" type="xs:string"/>
	<xs:element name="sapp-package">
		<xs:annotation>
			<xs:documentation>Site applications packages specification</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="content" minOccurs="0">
					<xs:annotation>
						<xs:documentation>Available content types: sapp-distrib</xs:documentation>
					</xs:annotation>
				</xs:element>
				<xs:element ref="sapp-package-id" minOccurs="0"/>
				<xs:element ref="sapp-name"/>
				<xs:element ref="sapp-version" minOccurs="0"/>
				<xs:element ref="sapp-release" minOccurs="0"/>
				<xs:element name="sapp-uploaded" minOccurs="0"/>
				<xs:element name="sapp-visible" minOccurs="0"/>
				<xs:element ref="sapp-settings" minOccurs="0"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="logrotation">
		<xs:annotation>
			<xs:documentation>Logrotation settings: rotate logs by size (in bytes) or by time</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:choice>
				<xs:element ref="logrotation-period"/>
				<xs:element ref="logrotation-maxsize"/>
			</xs:choice>
			<xs:attribute name="max-number-of-logfiles" use="required"/>
			<xs:attribute name="compress" type="booleanType" use="required"/>
			<xs:attribute name="email">
				<xs:annotation>
					<xs:documentation>Email address to which processed log files will be sent</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="enabled" type="booleanType" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="logrotation-period">
		<xs:complexType>
			<xs:attribute name="period" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="daily"/>
						<xs:enumeration value="weekly"/>
						<xs:enumeration value="monthly"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="logrotation-maxsize" type="xs:string"/>
	<xs:complexType name="certificateType">
		<xs:sequence>
			<xs:element ref="certificate-data" minOccurs="0"/>
			<xs:element ref="signing-request" minOccurs="0"/>
			<xs:element ref="ca-certificate" minOccurs="0"/>
			<xs:element ref="private-key" minOccurs="0"/>
		</xs:sequence>
		<xs:attribute name="name"/>
		<xs:attribute name="default">
			<xs:annotation>
				<xs:documentation>Indicates if the certificate is default</xs:documentation>
			</xs:annotation>
			<xs:simpleType>
				<xs:restriction base="xs:token">
					<xs:enumeration value="true"/>
				</xs:restriction>
			</xs:simpleType>
		</xs:attribute>
	</xs:complexType>
	<xs:element name="scripting">
		<xs:annotation>
			<xs:documentation>Scripting permissions</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:attribute name="ssi" type="booleanType"/>
			<xs:attribute name="ssi_html" type="booleanType">
				<xs:annotation>
					<xs:documentation>Windows supported only</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="php" type="booleanType"/>
			<xs:attribute name="php_handler_type">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="fastcgi"/>
						<xs:enumeration value="cgi"/>
						<xs:enumeration value="isapi"/>
						<xs:enumeration value="module"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="php_isapi" type="booleanType">
				<xs:annotation>
					<xs:documentation>Not supported now!</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="php_safe_mode" type="booleanType">
				<xs:annotation>
					<xs:documentation>Not supported now!</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="php_version">
				<xs:annotation>
					<xs:documentation>Windows supported only</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="php_handler_id">
				<xs:annotation>
					<xs:documentation>Identifier used to link particular PHP configuration with hosting</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="cgi" type="booleanType"/>
			<xs:attribute name="perl" type="booleanType"/>
			<xs:attribute name="asp" type="booleanType"/>
			<xs:attribute name="asp_dot_net" type="booleanType">
				<xs:annotation>
					<xs:documentation>Windows supported only</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="python" type="booleanType"/>
			<xs:attribute name="coldfusion" type="booleanType"/>
			<xs:attribute name="ruby" type="booleanType">
				<xs:annotation>
					<xs:documentation>Not supported now!</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="fastcgi" type="booleanType"/>
			<xs:attribute name="miva" type="booleanType"/>
			<xs:attribute name="fp" type="booleanType"/>
			<xs:attribute name="fp_enable" type="booleanType">
				<xs:annotation>
					<xs:documentation>Windows supported only</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="fp_no_index" type="booleanType">
				<xs:annotation>
					<xs:documentation>Windows supported only</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="managed_runtime_version"/>
			<xs:attribute name="write_modify"/>
			<xs:attribute name="webdeploy"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="service-node">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="ip_pool" minOccurs="0"/>
				<xs:element name="used-scripting" minOccurs="0">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="ssi" type="xs:boolean"/>
							<xs:element name="cgi" type="xs:boolean"/>
							<xs:element name="perl" type="xs:boolean"/>
							<xs:element name="python" type="xs:boolean"/>
							<xs:element name="coldfusion" type="xs:boolean"/>
							<xs:element name="miva" type="xs:boolean"/>
							<xs:element name="fp" type="xs:boolean"/>
							<xs:element name="php">
								<xs:complexType>
									<xs:choice minOccurs="0">
										<xs:element name="version" maxOccurs="unbounded"/>
										<xs:element name="any"/>
									</xs:choice>
								</xs:complexType>
							</xs:element>
							<xs:element name="asp_dot_net">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="version" minOccurs="0" maxOccurs="unbounded"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
			<xs:attribute name="os-type" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="windows"/>
						<xs:enumeration value="unix"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="local" type="booleanType" use="required"/>
			<xs:attribute name="ip-address"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="ip_pool">
		<xs:annotation>
			<xs:documentation>List of IP addresses which are assigned to domains</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="ip" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>IP address representation</xs:documentation>
					</xs:annotation>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="sysuser">
		<xs:annotation>
			<xs:documentation>System user characteristics and credentials. System user may have crontab</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="password" minOccurs="0"/>
				<xs:element ref="cron" minOccurs="0"/>
				<xs:element ref="data-modification" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>Login name</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="home">
				<xs:annotation>
					<xs:documentation>Home directory</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="quota">
				<xs:annotation>
					<xs:documentation>Amount of HDD space (in bytes)</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="shell">
				<xs:annotation>
					<xs:documentation>Path to user shell</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="domain-info">
		<xs:complexType>
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>IDN</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="guid" use="optional"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="client-info">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="domain-info" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>IDN</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="guid" use="optional"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="reseller-info">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="client-info" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="domain-info" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>IDN</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="guid" use="optional"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="service-nodes">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="web" minOccurs="0">
					<xs:complexType>
						<xs:sequence>
							<xs:element ref="service-node" minOccurs="0" maxOccurs="unbounded"/>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
				<xs:element name="dns" minOccurs="0">
					<xs:complexType>
						<xs:sequence>
							<xs:element ref="service-node" minOccurs="0" maxOccurs="unbounded"/>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
				<xs:element name="mail" minOccurs="0">
					<xs:complexType>
						<xs:sequence>
							<xs:element ref="service-node" minOccurs="0" maxOccurs="unbounded"/>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
				<xs:element name="db-server-info" minOccurs="0" maxOccurs="unbounded">
					<xs:complexType>
						<xs:sequence>
							<xs:element ref="host"/>
							<xs:element ref="port"/>
							<xs:element name="version" minOccurs="0"/>
						</xs:sequence>
						<xs:attribute name="type" use="required">
							<xs:simpleType>
								<xs:restriction base="xs:token">
									<xs:enumeration value="mysql"/>
									<xs:enumeration value="mssql"/>
									<xs:enumeration value="postgresql"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="db-servers">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="db-server" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="default-db-servers">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="db-server" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="misc">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="param" type="nameValueType" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:complexType name="nameValueType">
		<xs:sequence>
			<xs:element name="name"/>
			<xs:element name="value"/>
		</xs:sequence>
	</xs:complexType>
	<xs:element name="dom-param">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="param" type="nameValueType" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="template-item">
		<xs:annotation>
			<xs:documentation>Template parameter</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="name" use="required">
				<xs:annotation>
					<xs:documentation>Limits and permissions</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="cp_access">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits control panel access</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="create_domains">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits reseller to create domains</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_phosting">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing physical hosting</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_php_safe_mode">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing php safe mode</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_quota">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits changing hard disk quota</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_dns">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing DNS</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_log">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing log rotation</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_crontab">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing crontab (scheduler)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_anonftp">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing anonymous FTP</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_webapps">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing Java applications</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_maillists">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing mailing lists</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_sh_access">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing system access</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_not_chroot_shell">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing non_chrooted shell</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_subdomains">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing subdomains</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_virusfilter">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing antivirus</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_drweb">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing antivirus [deprecated]</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_local_backups">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits the use of backup/restore functions, use local repository</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_ftp_backups">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits the use of backup/restore functions, use FTP repository</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="remote_access_interface">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits to use remote XML interface</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_domain_aliases">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing domain aliases</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_spamfilter">
							<xs:annotation>
								<xs:documentation>true|false; Allows or prohibits managing spamfilter</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_webstat">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits web statistics management </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_performance">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits performance management </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="create_clients">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits reseller to create clients</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_oversell">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits overselling management </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="oversell">
							<xs:annotation>
								<xs:documentation>true|false; allows or prohibits overselling  </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="overuse">
							<xs:annotation>
								<xs:documentation>block|notify|normal|not_suspend|not_suspend_notify; sets overusing type </xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_dom">
							<xs:annotation>
								<xs:documentation>number; Limits the number of available domains (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_subdom">
							<xs:annotation>
								<xs:documentation>number; Limits the number of subdomains (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_dom_aliases">
							<xs:annotation>
								<xs:documentation>number; Limits the number of domain aliases (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="disk_space">
							<xs:annotation>
								<xs:documentation>number; Limits the amount of disk space that can be occupied by reseller in bytes. This is a soft limit. (_1 is unlimited, default: _1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="disk_space_soft">
							<xs:annotation>
								<xs:documentation>number; Notify upon disk space reaching this value</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_traffic">
							<xs:annotation>
								<xs:documentation>number; Limits the amount of traffic for reseller in bytes/month (-1 is unlimited, default: _1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_traffic_soft">
							<xs:annotation>
								<xs:documentation>number; Notify upon max traffic reaching this value</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_wu">
							<xs:annotation>
								<xs:documentation>number; Limits the number of web users (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_db">
							<xs:annotation>
								<xs:documentation>number; Limits the number of databases (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_box">
							<xs:annotation>
								<xs:documentation>number; Limits number of mailboxes (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="mbox_quota">
							<xs:annotation>
								<xs:documentation>number; Limits mailbox quota in bytes (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_maillists">
							<xs:annotation>
								<xs:documentation>number; Limits the number of mailing lists (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_webapps">
							<xs:annotation>
								<xs:documentation>number; Limits the number of allowed web applications (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="expiration">
							<xs:annotation>
								<xs:documentation>numberY|M|D; Limits a validity period for reseller (-1 is unlimited, default: -1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_cl">
							<xs:annotation>
								<xs:documentation>number; limit number of available clients (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="webmail">
							<xs:annotation>
								<xs:documentation>true|false; Allows use of Webmail (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="keep_traf_stat">
							<xs:annotation>
								<xs:documentation>number; Sets the system to retain traffic statistics for the specified number of months (specify -1 if you do not want to delete statistical reports)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="maillist">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows mailing lists (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="wuscripts">
							<xs:annotation>
								<xs:documentation>true|false; Enables scripting support for a web user(default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="no_usr">
							<xs:annotation>
								<xs:documentation>bounce:txt|email|reject; Specifies how to deal with mail to nonexistent users: you can set up a bounce message, enable forwarding to an e-mail address, or reject mail (default: "bounce:This address no longer accepts mail.")</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="log_rotate">
							<xs:annotation>
								<xs:documentation>true|false; Log rotation status (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="log_bysize">
							<xs:annotation>
								<xs:documentation>number; Log rotation by size in bytes</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="log_bytime">
							<xs:annotation>
								<xs:documentation>daily|weekly|monthly; Enables log rotation by time (default: daily)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="log_max_num">
							<xs:annotation>
								<xs:documentation>number; Defines maximum number of log file instances</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="log_compress">
							<xs:annotation>
								<xs:documentation>true|false; Enables log files compression (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="log_email">
							<xs:annotation>
								<xs:documentation>email; Enables sending log files to e-mail</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="hosting">
							<xs:annotation>
								<xs:documentation>true|false; Enables/disables physical hosting for domains created by the template (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="quota">
							<xs:annotation>
								<xs:documentation>number; The maximum amount of disk space that can be occupied by an FTP user account in bytes. This is a hard limit that cannot be exceeded. By default it is unlimited (-1)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="ssl">
							<xs:annotation>
								<xs:documentation>true|false; Enables/disables SSL support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="same_ssl">
							<xs:annotation>
								<xs:documentation>true|false; Enables Plesk to store secured and non-secured content in a single directory (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="fp">
							<xs:annotation>
								<xs:documentation>true|false; Turns on/off FrontPage support (default: false) [deprecated]</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="fp_ssl">
							<xs:annotation>
								<xs:documentation>true|false; Turns on/off FrontPage over SSL support (default: false) [deprecated]</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="fpauth">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows FrontPage authoring (default: false) [deprecated]</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="asp">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows ASP support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="ssi">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows SSI support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="php">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows PHP support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="cgi">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows CGI support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="perl">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows Perl support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="python">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows Python support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="fastcgi">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows FastCGI support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="coldfusion">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows ColdFusion support (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="webstat">
							<xs:annotation>
								<xs:documentation>none|awstats|webalizer; Web statistic support on domain (default: none)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="err_docs">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows custom error documents (default: false)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="shell">
							<xs:annotation>
								<xs:documentation>shell_name|false; Allows/disallows access to server shell with FTP user account credentials</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="webstat_protdir">
							<xs:annotation>
								<xs:documentation>true|false; Allows/disallows access to web statistics through the protected directory</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="dns_zone_type">
							<xs:annotation>
								<xs:documentation>master|slave; Instructs Plesk DNS server to act as a master or slave for the domain zone (default: master)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="publish-sb-site">
							<xs:annotation>
								<xs:documentation>true|false; Publish Site with SiteBuilder</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="bounce_mess"/>
						<xs:enumeration value="dns_type"/>
						<xs:enumeration value="errdocs"/>
						<xs:enumeration value="fp_auth"/>
						<xs:enumeration value="maillists"/>
						<xs:enumeration value="nonexist_mail"/>
						<xs:enumeration value="pdir_plesk_stat"/>
						<xs:enumeration value="stat_ttl"/>
						<xs:enumeration value="vh_type"/>
						<xs:enumeration value="wu_script"/>
						<xs:enumeration value="excl_ip_num"/>
						<xs:enumeration value="excl_ipv6_num"/>
						<xs:enumeration value="catch_addr"/>
						<xs:enumeration value="bandwidth"/>
						<xs:enumeration value="catch_ip"/>
						<xs:enumeration value="catch_mode"/>
						<xs:enumeration value="cpu_usage"/>
						<xs:enumeration value="iis_app_pool"/>
						<xs:enumeration value="mssql_dbase_space"/>
						<xs:enumeration value="mysql_dbase_space"/>
						<xs:enumeration value="php_handler_type"/>
						<xs:enumeration value="php_handler_id"/>
						<xs:enumeration value="php_version"/>
						<xs:enumeration value="sb_publish"/>
						<xs:enumeration value="sb_subdomains"/>
						<xs:enumeration value="use_sbnet"/>
						<xs:enumeration value="total_mboxes_quota"/>
						<xs:enumeration value="write_modify"/>
						<xs:enumeration value="webdeploy"/>
						<xs:enumeration value="site_builder"/>
						<xs:enumeration value="predefined_template"/>
						<xs:enumeration value="max_cf_dsn"/>
						<xs:enumeration value="max_connections"/>
						<xs:enumeration value="max_fpse_users"/>
						<xs:enumeration value="max_mssql_db"/>
						<xs:enumeration value="max_odbc"/>
						<xs:enumeration value="max_shared_ssl_links"/>
						<xs:enumeration value="max_subftp_users"/>
						<xs:enumeration value="max_iis_app_pools"/>
						<xs:enumeration value="asp_dot_net"/>
						<xs:enumeration value="managed_runtime_version"/>
						<xs:enumeration value="miva"/>
						<xs:enumeration value="ssi_html"/>
						<xs:enumeration value="select_db_server"/>
						<xs:enumeration value="make_dumps"/>
						<xs:enumeration value="manage_additional_permissions"/>
						<xs:enumeration value="manage_iis_app_pool"/>
						<xs:enumeration value="manage_shared_ssl"/>
						<xs:enumeration value="manage_subftp"/>
						<xs:enumeration value="max_site">
							<xs:annotation>
								<xs:documentation>number; Limits the number of available sites (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="max_site_builder">
							<xs:annotation>
								<xs:documentation>number; limit number of available site builder; available value -1 and 0 (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="access_appcatalog">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits access to application catalog</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="allow_insecure_sites">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits insecure hosting options</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="php_safe_mode"/>
						<xs:enumeration value="max_unity_mobile_sites">
							<xs:annotation>
								<xs:documentation>number; limit number of sites to publish in unity mobile  (-1 is unlimited)</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="upsell_site_builder">
							<xs:annotation>
								<xs:documentation>true|false; allow upsell scenario for Sitebuilder sites</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_mail_settings">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits possibility to change mail settings</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_protected_dirs">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits  visibility of corresponding menu and its content</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_website_maintenance">
							<xs:annotation>
								<xs:documentation>true|false; permission for allows or prohibits  visibility of corresponding menu and its content</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_php_settings">
							<xs:annotation>
								<xs:documentation>true|false; permission to allow or prohibit php settings management</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="access_service_users">
							<xs:annotation>
								<xs:documentation>true|false; permission to allow or prohibit access to 'Users' tab</xs:documentation>
							</xs:annotation>
						</xs:enumeration>
						<xs:enumeration value="manage_server_actionlog"/>
						<xs:enumeration value="manage_server_admin_access"/>
						<xs:enumeration value="manage_server_app_vault"/>
						<xs:enumeration value="manage_server_backup"/>
						<xs:enumeration value="manage_server_branding"/>
						<xs:enumeration value="manage_server_coldfusion"/>
						<xs:enumeration value="manage_server_components"/>
						<xs:enumeration value="manage_server_crontab"/>
						<xs:enumeration value="manage_server_custom_buttons"/>
						<xs:enumeration value="manage_server_db"/>
						<xs:enumeration value="manage_server_dns_template"/>
						<xs:enumeration value="manage_server_domain_traffic_report"/>
						<xs:enumeration value="manage_server_events"/>
						<xs:enumeration value="manage_server_filesharing"/>
						<xs:enumeration value="manage_server_firewall"/>
						<xs:enumeration value="manage_server_google_services"/>
						<xs:enumeration value="manage_server_info"/>
						<xs:enumeration value="manage_server_ip_addresses"/>
						<xs:enumeration value="manage_server_languages"/>
						<xs:enumeration value="manage_server_license"/>
						<xs:enumeration value="manage_server_mail"/>
						<xs:enumeration value="manage_server_maillist"/>
						<xs:enumeration value="manage_server_mass_email"/>
						<xs:enumeration value="manage_server_migration"/>
						<xs:enumeration value="manage_server_modules"/>
						<xs:enumeration value="manage_server_notifications"/>
						<xs:enumeration value="manage_server_optimization"/>
						<xs:enumeration value="manage_server_preview_domain"/>
						<xs:enumeration value="manage_server_reboot"/>
						<xs:enumeration value="manage_server_services"/>
						<xs:enumeration value="manage_server_sessions"/>
						<xs:enumeration value="manage_server_settings"/>
						<xs:enumeration value="manage_server_shutdown"/>
						<xs:enumeration value="manage_server_skeleton"/>
						<xs:enumeration value="manage_server_spam_filter"/>
						<xs:enumeration value="manage_server_ssl_certificates"/>
						<xs:enumeration value="manage_server_summary_report"/>
						<xs:enumeration value="manage_server_support"/>
						<xs:enumeration value="manage_server_time"/>
						<xs:enumeration value="manage_server_ui"/>
						<xs:enumeration value="manage_server_updates"/>
						<xs:enumeration value="manage_server_virus_protection"/>
						<xs:enumeration value="manage_server_vzpp"/>
						<xs:enumeration value="manage_server_webmail"/>
						<xs:enumeration value="allow_license_stubs"/>
						<xs:enumeration value="additionalSettings"/>
						<xs:enumeration value="additionalSslSettings"/>
						<xs:enumeration value="additionalNginxSettings"/>
						<xs:enumeration value="unpaid_website_status"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:complexType name="depredatedElementType">
		<xs:annotation>
			<xs:documentation>This element is dropped, so here is xs:any to avoid validation fails</xs:documentation>
		</xs:annotation>
		<xs:sequence minOccurs="0">
			<xs:any processContents="skip" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:anyAttribute processContents="skip"/>
	</xs:complexType>
	<xs:element name="pmm-extension-package">
		<xs:complexType>
			<xs:annotation>
				<xs:documentation>This element contains data from Panel BL. Here is xs:any to avoid validation fails</xs:documentation>
			</xs:annotation>
			<xs:sequence minOccurs="0">
				<xs:any processContents="skip" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="data-modification">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="property-name" type="xs:string"/>
				<xs:element name="old-value" type="xs:string" minOccurs="0"/>
				<xs:element name="new-value" type="xs:string"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="shosting">
		<xs:annotation>
			<xs:documentation>Standard forwarding hosting. Element contains URL to forward incoming HTTP requests to</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:complexContent>
				<xs:extension base="forwardingType">
					<xs:sequence>
						<xs:element name="httpcode" type="xs:string" minOccurs="0"/>
					</xs:sequence>
				</xs:extension>
			</xs:complexContent>
		</xs:complexType>
	</xs:element>
	<xs:complexType name="forwardingType">
		<xs:sequence>
			<xs:element name="url" type="xs:string"/>
			<xs:element name="properties" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element ref="ip" minOccurs="0" maxOccurs="2">
							<xs:annotation>
								<xs:documentation>IP address on which domain resides. If no IP specified, it will be set automatically on adding a domain</xs:documentation>
							</xs:annotation>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:element name="web-settings">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="setting" minOccurs="0" maxOccurs="unbounded">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="name"/>
							<xs:element name="value">
								<xs:complexType>
									<xs:simpleContent>
										<xs:extension base="xs:string">
											<xs:attribute ref="encoding"/>
										</xs:extension>
									</xs:simpleContent>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
						<xs:attribute ref="encoding"/>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
			<xs:attribute name="vhost-name" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="autoresponder-limit">
		<xs:annotation>
			<xs:documentation>Limitations on number of replies to the unique email address</xs:documentation>
		</xs:annotation>
		<xs:complexType mixed="true">
			<xs:attribute name="name" use="required">
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="ans-freq"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="sapp-settings">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="setting" minOccurs="0" maxOccurs="unbounded">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="name" type="xs:string"/>
							<xs:element name="value" minOccurs="0" maxOccurs="unbounded"/>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="domainuser">
		<xs:annotation>
			<xs:documentation>Domain administrator. Has its own access password, personal information and a set of permissions for various operations.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="password" minOccurs="0"/>
				<xs:element ref="pinfo" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="permission" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="contact"/>
			<xs:attribute name="status">
				<xs:annotation>
					<xs:documentation>Explicit indication if domain Administrator access to control panel is enabled or disabled</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="true"/>
						<xs:enumeration value="false"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="max-button-length">
				<xs:annotation>
					<xs:documentation>GUI customization parameter</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="skin">
				<xs:annotation>
					<xs:documentation>GUI customization parameter</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="lock-screen">
				<xs:annotation>
					<xs:documentation>GUI customization parameter</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:token">
						<xs:enumeration value="true"/>
						<xs:enumeration value="false"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:attribute name="encoding">
		<xs:simpleType>
			<xs:restriction base="xs:token">
				<xs:enumeration value="plain"/>
				<xs:enumeration value="base64"/>
			</xs:restriction>
		</xs:simpleType>
	</xs:attribute>
</xs:schema>
