Click or drag to resize
Json.NET

JsonSchemaType Enumeration

 

Note: This API is now obsolete.

The value types allowed by the JsonSchema.

Caution note Caution
JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.

Namespace:  Newtonsoft.Json.Schema
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
[FlagsAttribute]
[ObsoleteAttribute("JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.")]
public enum JsonSchemaType
Members
  Member nameValueDescription
None0 No type specified.
String1 String type.
Float2 Float type.
Integer4 Integer type.
Boolean8 Boolean type.
Object16 Object type.
Array32 Array type.
Null64 Null type.
Any127 Any type.
See Also