ST_TrueFalseBlank is defined in vml-officeDrawing.xsd and vml-spreadsheetDrawing.xsd. In vml-officeDrawing, it takes values "true" and "false" (among others). In vml-spreadsheetDrawing, these values must be "True" or "False". Terminology should be consistent within a standard.
Remedy: Change "True" and "False" in the latter to "true" and "false".
ST_TrueFalseBlank
te
Proposed Disposition of DIS 29500 Comment GB-0632 (Modified: 2008-01-04) Agreed; the VML section has been deprecated in the responses to CA-0076, CL-0025, CL-0206, CO-0076, CO-0223, CZ-0004, CZ-0011, DE-0018, DE-0020, DE-0021, DE-0115, DE-0116, DK-0058, DK-0095, DK-0150, DK-0155, FI-0008, GB-0177, GB-0190, GB-0476, GB-0477, GR-0087, IE-0009, JP-0030, KE-0047, KE-0064, MX-0006, US-0092, US-0152, UY-0002, VE-0013, and ZA-0016. While VML is being deprecated, it is still present in the spec for transitional purposes. We will update the VML schemas to provide consistency on this simple type as follows: vml-spreadsheetDrawing.xsd <xsd:simpleType name="ST_TrueFalseBlank"> <xsd:annotation> <xsd:documentation>Boolean Value with Blank State</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:string"> <xsd:enumeration value="True"> <xsd:annotation> <xsd:documentation>Logical True</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="true"> <xsd:annotation> <xsd:documentation>Logical True</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="t"> <xsd:annotation> <xsd:documentation>Logical True</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="False"> <xsd:annotation> <xsd:documentation>Logical False</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="false"> <xsd:annotation> <xsd:documentation>Logical False</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="f"> <xsd:annotation> <xsd:documentation>Logical False</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value=""> <xsd:annotation> <xsd:documentation>Blank - Default Value</xsd:documentation> </xsd:annotation> </xsd:enumeration> </xsd:restriction> </xsd:simpleType> vml-officeDrawing.xsd <xsd:simpleType name="ST_TrueFalseBlank"> <xsd:annotation> <xsd:documentation>Boolean Value with Blank [False] State</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:string"> <xsd:enumeration value=""> <xsd:annotation> <xsd:documentation>Blank Logical False</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="t"> <xsd:annotation> <xsd:documentation>Logical True</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="f"> <xsd:annotation> <xsd:documentation>Logical False</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="true"> <xsd:annotation> <xsd:documentation>Logical True</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="false"> <xsd:annotation> <xsd:documentation>Logical False</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="True"> <xsd:annotation> <xsd:documentation>Logical True</xsd:documentation> </xsd:annotation> </xsd:enumeration> <xsd:enumeration value="False"> <xsd:annotation> <xsd:documentation>Logical False</xsd:documentation> </xsd:annotation> </xsd:enumeration> </xsd:restriction> </xsd:simpleType>
