JsonSchemaType Enumeration |
Note: This API is now obsolete.
The value types allowed by the JsonSchema.
| JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. |
Namespace: Newtonsoft.Json.Schema
[FlagsAttribute] [ObsoleteAttribute("JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.")] public enum JsonSchemaType
| Member name | Value | Description | |
|---|---|---|---|
| None | 0 | No type specified. | |
| String | 1 | String type. | |
| Float | 2 | Float type. | |
| Integer | 4 | Integer type. | |
| Boolean | 8 | Boolean type. | |
| Object | 16 | Object type. | |
| Array | 32 | Array type. | |
| Null | 64 | Null type. | |
| Any | 127 | Any type. |