29 lines
996 B
Plaintext
29 lines
996 B
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
||
|
<xs:element name="root">
|
||
|
<xs:complexType>
|
||
|
<xs:attribute name="bug1" use="prohibited">
|
||
|
<xs:simpleType>
|
||
|
<xs:restriction base="xs:string"/>
|
||
|
</xs:simpleType>
|
||
|
</xs:attribute>
|
||
|
<xs:attribute name="bug2" use="prohibited">
|
||
|
<xs:simpleType>
|
||
|
<xs:restriction base="xs:string">
|
||
|
<xs:length value="10"/>
|
||
|
</xs:restriction>
|
||
|
</xs:simpleType>
|
||
|
</xs:attribute>
|
||
|
<xs:attribute name="bug3" use="prohibited">
|
||
|
<xs:simpleType>
|
||
|
<xs:restriction base="xs:string">
|
||
|
<xs:enumeration value="1"/>
|
||
|
<xs:enumeration value="2"/>
|
||
|
<xs:enumeration value="3"/>
|
||
|
</xs:restriction>
|
||
|
</xs:simpleType>
|
||
|
</xs:attribute>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
</xs:schema>
|