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/HEAD/root@13746 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
elementFormDefault="qualified">
|
|
<xs:attributeGroup name="attribute-group">
|
|
<xs:attribute name="ag-att-1" type="xs:normalizedString" use="required"/>
|
|
<xs:attribute name="ag-att-2" type="xs:normalizedString" use="optional"/>
|
|
<xs:attribute name="ag-att-3" type="xs:normalizedString" fixed="fixed attribute value"/>
|
|
</xs:attributeGroup>
|
|
|
|
<xs:element name="attributes">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="element_string_no_default"
|
|
type="xs:normalizedString"
|
|
minOccurs="1"
|
|
maxOccurs="1"/>
|
|
<xs:element name="element_string_with_default"
|
|
type="xs:normalizedString"
|
|
minOccurs="1"
|
|
maxOccurs="1"
|
|
default="default string value"/>
|
|
</xs:sequence>
|
|
<xs:attribute name="att-1"
|
|
type="xs:normalizedString"
|
|
use="required"/>
|
|
<xs:attributeGroup ref="attribute-group"/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|
|
|