mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13746 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
22 lines
751 B
XML
22 lines
751 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:pr="http://www.example.lk/Date_Bug"
|
|
targetNamespace="http://www.example.lk/Date_Bug"
|
|
elementFormDefault="qualified">
|
|
|
|
<xs:element name="Date_Bug" type="pr:Bug"/>
|
|
|
|
<xs:complexType name="Bug">
|
|
<xs:sequence>
|
|
<xs:element name="Test_Field_1" type="xs:normalizedString"/>
|
|
<xs:element name="Test_Field_2" type="xs:normalizedString"/>
|
|
<xs:element name="Date" type="xs:date"/>
|
|
<!--Only the label of the Date element can be viewed when the created XML needs to be edited-->
|
|
<xs:element name="Test_Field_3" type="xs:normalizedString"/>
|
|
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:schema>
|
|
|