Enum consisting of simple type names for the type keyword

Enumeration Members

Array: "array"

Value MUST be an array.

Boolean: "boolean"

Value MUST be a boolean.

Integer: "integer"

Value MUST be an integer, no floating point numbers are allowed. This is a subset of the number type.

Null: "null"

Value MUST be null. Note this is mainly for purpose of being able use union types to define nullability. If this type is not included in a union, null values are not allowed (the primitives listed above do not allow nulls on their own).

Number: "number"

Value MUST be a number, floating point numbers are allowed.

Object: "object"

Value MUST be an object.

String: "string"

Value MUST be a string.

Generated using TypeDoc