Capitalization of Type Names
In the REST API, the type names start with a capital letter, i.e.,String instead of string.
Serialized and Deserialized Object Values
Object Values are instances of (non primitive) Java types. When working with the REST API, it is generally advisable to work with the serialized value of a variable. In that case the value is retrieved from the database and directly returned in the http response. If the client you are building is not a Java Applications by itself, make sure you use a text-based serialization dataformat (such as XML or JSON).To retrieve the serialized form of a variable, use the
deserializeValues=false GET parameter.