mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4021 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
16 lines
575 B
XML
16 lines
575 B
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
elementFormDefault="qualified">
|
|
<xs:element name="note">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="to" type="xs:string" minOccurs="1" maxOccurs="unbounded"/>
|
|
<xs:element name="from" type="xs:string"/>
|
|
<xs:element name="subject" type="xs:string"/>
|
|
<xs:element name="body" type="xs:anyType"/>
|
|
</xs:sequence>
|
|
<xs:attribute name="important" type="xs:boolean" default="false"/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|