JsonSchemaType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the type of a JSON schema.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum JsonSchemaType
[<System.Flags>]
type JsonSchemaType =
Public Enum JsonSchemaType
- Inheritance
-
JsonSchemaType
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| Null | 1 | Represents a null type. |
| Boolean | 2 | Represents a boolean type. |
| Integer | 4 | Represents an integer type. |
| Number | 8 | Represents a number type. |
| String | 16 | Represents a string type. |
| Object | 32 | Represents an object type. |
| Array | 64 | Represents an array type. |