TRUEFALSE Simple Type (DeploymentManifest)

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Specifies Boolean values using specific typographical forms.


<xs:simpleType name="TRUEFALSE">
   <xs:restriction base="xs:string">
      <xs:enumeration value="TRUE" />
      <xs:enumeration value="FALSE" />
      <xs:enumeration value="true" />
      <xs:enumeration value="false" />
   </xs:restriction>
</xs:simpleType>

Type

xs:string

Enumeration Values

Value

Description

TRUE

Specifies Boolean true using all capital letters.

FALSE

Specifies Boolean false using all capital letters.

true

Specifies Boolean true using all lowercase letters.

false

Specifies Boolean false using all lowercase letters.

See Also

Concepts

DeploymentManifest Schema