True, False, or Unknown. This datatype is the same as the boolean datatype, with three case variations of unknown added.
This datatype was developed to support the Epicentre logical data type. Its intended usage is shown in the PEF logical element document. Usage as a useful datatype is shown in the following sample usage schema and sample XML.
<xsd:simpleType name="logical">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="true"/>
<xsd:enumeration value="True"/>
<xsd:enumeration value="TRUE"/>
<xsd:enumeration value="false"/>
<xsd:enumeration value="False"/>
<xsd:enumeration value="FALSE"/>
<xsd:enumeration value="unknown"/>
<xsd:enumeration value="Unknown"/>
<xsd:enumeration value="UNKNOWN"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:element name="someFlag" type="logical"/>
<someFlag>True</someFlag>