Files
alfresco-community-repo/source/test-resources/xforms/unit-tests/interesting-schema-test/multi-namespace-test.xsd
Ariel Backenroth 95a3f272c9 renaming this set of tests.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2007-01-25 23:26:41 +00:00

19 lines
769 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mynsprefix="http://mine.org/mynsuri"
xmlns:othernsprefix="http://other.org/othernsuri"
elementFormDefault="qualified"
attributeFormDefault="qualified"
targetNamespace="http://mine.org/mynsuri">
<xs:import namespace="http://other.org/othernsuri" schemaLocation="/multi-namespace-test-other.xsd"/>
<xs:element name="multi-namespace-test">
<xs:complexType>
<xs:sequence>
<xs:element name="element_type_1" type="othernsprefix:type1"/>
</xs:sequence>
<xs:attribute name="attribute_type_1" type="othernsprefix:type1" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>