blob: facafe22373dece9dbb8ab6898430ba4e55011ff (
plain)
1
2
3
4
5
6
7
8
9
|
<simpleType name="YesNoType">
<annotation>
<documentation>Values of this type will either be "yes" or "no".</documentation>
</annotation>
<restriction base="xs:NMTOKEN">
<enumeration value="no" />
<enumeration value="yes" />
</restriction>
</simpleType>
|