Skip to content

Enumeration: ValueType

core.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

schema.ts:38


Boolean

Boolean = "boolean"

Indicates a JavaScript boolean (true/false) should be returned.

Defined in

schema.ts:26


Number

Number = "number"

Indicates a JavaScript number should be returned.

Defined in

schema.ts:30


Object

Object = "object"

Indicates a JavaScript object should be returned. The schema of each object property must also be specified.

Defined in

schema.ts:42


String

String = "string"

Indicates a JavaScript string should be returned.

Defined in

schema.ts:34