source |
<xs:simpleType name="TrueFalseType">
<xs:annotation>
<xs:documentation>For any element with "True" and "False" enumerations</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="True"/>
<xs:enumeration value="False"/>
</xs:restriction>
</xs:simpleType> |