Enumeration: ValueType¶
The set of primitive value types that can be used as return values for formulas or in object schemas.
Enumeration members¶
Array¶
• Array = "array"
Indicates a JavaScript array should be returned. The schema of the array items must also be specified.
Defined in¶
Boolean¶
• Boolean = "boolean"
Indicates a JavaScript boolean (true/false) should be returned.
Defined in¶
Number¶
• Number = "number"
Indicates a JavaScript number should be returned.
Defined in¶
Object¶
• Object = "object"
Indicates a JavaScript object should be returned. The schema of each object property must also be specified.
Defined in¶
String¶
• String = "string"
Indicates a JavaScript string should be returned.