mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
16 lines
446 B
XML
16 lines
446 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="Company">
|
|
<xsd:complexType>
|
|
<xsd:sequence>
|
|
<xsd:element name="Person" type="xsd:string" maxOccurs="unbounded"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
|
|
</xsd:schema>
|