boolean property

mdex:boolean property values are useful for tracking true/false conditions.

The valid Boolean values for the mdex:boolean property type are:
  • true or 1 (i.e., 1 is a synonym for true)
  • false or 0 (i.e., 0 is a synonym for false)

Note that true and false are case sensitive and must be specified in lower case.

For example, the following request updates Record 492 with two Boolean properties:
<ns:ingestChanges>
<ns:updateRecords>
  <ns:recordSpecifier>FactSalesID='492'</ns:recordSpecifier>
   <ns:addAssignments>
     <ns1:attribute name="IsInStock" type="mdex:boolean">true</ns1:attribute>
     <ns1:attribute name="IsActive" type="mdex:boolean">1</ns1:attribute>
    </ns:addAssignments>
   </ns:updateRecords>
</ns:ingestChanges>

In the example, both properties (isInStock and isActive) are set to true.