using System;
namespace DPumpHydr.WinFrmUI.WenSkin.Json.Schema
{
///
///
/// The value types allowed by the .
///
///
/// JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
///
///
[Flags]
[Obsolete("JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.")]
public enum JsonSchemaType
{
///
/// No type specified.
///
None = 0x0,
///
/// String type.
///
String = 0x1,
///
/// Float type.
///
Float = 0x2,
///
/// Integer type.
///
Integer = 0x4,
///
/// Boolean type.
///
Boolean = 0x8,
///
/// Object type.
///
Object = 0x10,
///
/// Array type.
///
Array = 0x20,
///
/// Null type.
///
Null = 0x40,
///
/// Any type.
///
Any = 0x7F
}
}