Files
openide/xml/tests/testData/xmlRename/SchemaRename2.xsd
Dmitry Jemerov cf096a989d Get rid of refactoring-tests module, move tests and testdata out of it to proper places
GitOrigin-RevId: 908db51805c0e20a99609dd2f3f39317b41a0844
2021-07-08 18:30:39 +00:00

17 lines
550 B
XML

<xsd:schema
xmlns = "http://aaa.bbb"
xmlns:xsd = "http://www.w3.org/2001/XMLSchema"
targetNamespace = "http://aaa.bbb"
elementFormDefault = "qualified"
attributeFormDefault = "unqualified">
<xsd:element name="Co<caret>mpany">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Person" type="xsd:string" maxOccurs="unbounded"/>
<xsd:element ref="Company"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="zzz" substitutionGroup="Company" />
</xsd:schema>