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