<xsd:complexType name="dataBoolType">
<xsd:annotation>
<xsd:documentation>Describes simple boolean data along with the standard data element attributes. The empty string is listed to allow and element of this type to be empty. This might occur when an error is reported on that element.</xsd:documentation>
<xsd:appinfo>
<attributes>(includes dataAttributes)</attributes>
<content>boolean</content>
<child_elements>none</child_elements>
</xsd:appinfo>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="system_characteristics:dataStringType">
<xsd:enumeration value="true" />
<xsd:enumeration value="false" />
<xsd:enumeration value="1" />
<xsd:enumeration value="0" />
<xsd:enumeration value="" />
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
|