1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| using System;
|
| namespace DPumpHydr.WinFrmUI.WenSkin.Json.Schema
| {
| /// <summary>
| /// <para>
| /// The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" />.
| /// </para>
| /// <note type="caution">
| /// JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
| /// </note>
| /// </summary>
| [Flags]
| [Obsolete("JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.")]
| public enum JsonSchemaType
| {
| /// <summary>
| /// No type specified.
| /// </summary>
| None = 0x0,
| /// <summary>
| /// String type.
| /// </summary>
| String = 0x1,
| /// <summary>
| /// Float type.
| /// </summary>
| Float = 0x2,
| /// <summary>
| /// Integer type.
| /// </summary>
| Integer = 0x4,
| /// <summary>
| /// Boolean type.
| /// </summary>
| Boolean = 0x8,
| /// <summary>
| /// Object type.
| /// </summary>
| Object = 0x10,
| /// <summary>
| /// Array type.
| /// </summary>
| Array = 0x20,
| /// <summary>
| /// Null type.
| /// </summary>
| Null = 0x40,
| /// <summary>
| /// Any type.
| /// </summary>
| Any = 0x7F
| }
| }
|
|