notification.xsd

来自「找了很久才找到到源代码」· XSD 代码 · 共 35 行

XSD
35
字号

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
	
	<xsd:include schemaLocation="opencms://opencms-xmlcontent.xsd"/>

		
	<xsd:element name="ContentNotifications" type="OpenCmsContentNotifications"/>
	
	<xsd:complexType name="OpenCmsContentNotifications">
		<xsd:sequence>
			<xsd:element name="ContentNotification" type="OpenCmsContentNotification" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="OpenCmsContentNotification">
		<xsd:sequence>
			<xsd:element name="Subject" type="OpenCmsString" />
			<xsd:element name="Header" type="OpenCmsHtml"/>	
			<xsd:element name="Footer" type="OpenCmsHtml"/>	
		</xsd:sequence>
		<xsd:attribute name="language" type="OpenCmsLocale" use="required"/>
	</xsd:complexType>

	<xsd:annotation>
		<xsd:appinfo>
			<resourcebundle name="org.opencms.frontend.templateone.modules.workplace"/>
			<mappings>
				<mapping element="Subject" mapto="property:Title" />
			</mappings>
			<defaults/>
			<validationrules/>
		</xsd:appinfo>

	</xsd:annotation>  
</xsd:schema>

⌨️ 快捷键说明

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