NetSuite Connector Guide > NetSuite connections > Rules and guidelines for NetSuite connections
  

Rules and guidelines for NetSuite connections

Consider the following preconditions for NetSuite connections:
Consider the following rules and guidelines for NetSuite connections:
To handle Array, Integer, Double, and Boolean data types correctly and ensure proper behavior, you must specify annotation attributes in the request as shown in the following sample.
Example of an Array data type:

<root xmlns:m="urn:informatica:ae:xquery:json2xml:meta-data">
<field_array m:isArray="true">
<property_1> ...</property_1>
</field_array>
</root>
Example of an Integer data type:

<root xmlns:m="urn:informatica:ae:xquery:json2xml:meta-data">
<field_integer m:type="xs:int">10</field_integer>
</root>
Example of a Double data type:

<root xmlns:m="urn:informatica:ae:xquery:json2xml:meta-data">
<field_double m:type="xs:double">20.2</field_double>
</root>
Example of a Boolean data type:

<root xmlns:m="urn:informatica:ae:xquery:json2xml:meta-data">
<field_boolean m:type="xs:boolean">true</field_boolean>
</root>