This simple type designates a boolean with only two permissible values - true - false |
QName | Type | Fixed | Default | Use | Inheritable | Annotation |
---|---|---|---|---|---|---|
id | xsd:ID | optional |
<xsd:complexType name="true-falseType"> <xsd:annotation> <xsd:documentation>This simple type designates a boolean with only two permissible values - true - false</xsd:documentation> </xsd:annotation> <xsd:simpleContent> <xsd:restriction base="javaee:xsdBooleanType"> <xsd:pattern value="(true|false)"/> </xsd:restriction> </xsd:simpleContent> </xsd:complexType> |