Data Type in document |
Description |
Example |
---|---|---|
int |
Integer |
1 |
String |
String |
This is a string |
Date |
ISO 8601 date string YYYY-MM-DD |
2012-03-31 |
DateTime |
ISO 8601 datetime string YYYY-MM-DD HH:mm:SS |
2012-03-31 23:59:59 |
A(n) |
Alpha string. [n] characters required |
Alpha string |
AN(n) |
Alphanumeric string. [n] characters required |
Alphanumeric string |
N(n) |
Numeric string. [n] characters required. Number is left-padded with zeroes. |
000123 |
double |
Numeric string with a decimal point. Only point is used (no commas or other characters for decimal point) |
34.56 |
BASE64 |
Sting used to pass binary data. The binary data should be converted to base64 standard. |
bXlwb3MgZGVtbw== |
XML |
Simple in place XML array. |
<body> <param>1</param> <value>2</value> </body> |