Table of Contents

Enum JsonSchemaType

Namespace
Newtonsoft.Json.Schema
Assembly
Newtonsoft.Json.dll

The value types allowed by the JsonSchema.

[Flags]
public enum JsonSchemaType

Fields

Any = String | Float | Integer | Boolean | Object | Array | Null

Any type.

Array = 32

Array type.

Boolean = 8

Boolean type.

Float = 2

Float type.

Integer = 4

Integer type.

None = 0

No type specified.

Null = 64

Null type.

Object = 16

Object type.

String = 1

String type.