annotation |
appinfo | <xs:attribute name="defaultValue" type="SFBool" default="false"/>
<!-- note that anchors ^ and $ are implicit and not included in XML Schema regexes -->
<xs:pattern value="\s*(true|false)\s*"/>
SFBool is a logical type with possible values (true|false) to match the XML boolean type.
Hint: XML boolean values are lower case (true|false) in order to maintain compatibility with HTML and other XML documents.
|
|