Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

scrollbar

Page properties
TypeTermboolean
Description

Excerpt

The boolean data type is used to specify a true or false value.

Comments

Additional information below

XML typexs:boolean
StatusApproved
Ref from

Incoming Links
modeflat
spaces@all

Labels
Page info
labels
labels
typeflat

Additional information

The following is an example of a boolean declaration in a schema:

...

<xs:attribute name="disabled" type="xs:boolean"/

...

An element in your document might look like this:

...

<prize disabled="true">999</

...

prize> 

Note: Legal values for boolean are true, false, 1 (which indicates true), and 0 (which indicates false).

...