mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
6293: WCM fixes by Ariel (no details) 6294: Fogotten file for above git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6717 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
elementFormDefault="qualified">
|
|
<xs:element name="switch-test">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="string" type="xs:normalizedString"/>
|
|
<xs:element name="choice-with-2-options">
|
|
<xs:complexType>
|
|
<xs:choice>
|
|
<xs:element name="choice-string" type="xs:normalizedString"/>
|
|
<xs:element name="choice-number" type="xs:decimal"/>
|
|
</xs:choice>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
<xs:element name="choice-with-1-option">
|
|
<xs:complexType>
|
|
<xs:choice>
|
|
<xs:element name="the-only-choice" type="xs:normalizedString"/>
|
|
</xs:choice>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
<xs:element name="no-choices">
|
|
<xs:complexType>
|
|
<xs:choice/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
<xs:element name="sequence-with-2-elements">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="sequence-string" type="xs:normalizedString"/>
|
|
<xs:element name="sequence-number" type="xs:decimal"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
<xs:element name="sequence-with-choice">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="outside-choice-string" type="xs:normalizedString"/>
|
|
<xs:choice>
|
|
<xs:element name="inside-choice-string" type="xs:normalizedString"/>
|
|
<xs:element name="inside-choice-number" type="xs:decimal"/>
|
|
</xs:choice>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|