You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
370 B
16 lines
370 B
<schema xmlns:my='http://my.ns/'
|
|
xmlns='http://www.w3.org/2001/XMLSchema'
|
|
targetNamespace='http://my.ns/'
|
|
>
|
|
<attribute name='other' type='string'/>
|
|
<element name='my'>
|
|
<complexType>
|
|
<simpleContent>
|
|
<extension base='string'>
|
|
<attribute ref='my:other'/>
|
|
</extension>
|
|
</simpleContent>
|
|
</complexType>
|
|
</element>
|
|
</schema>
|