forked from ch-robinson/dotnet-avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsonAttributeToken.cs
78 lines (65 loc) · 2.03 KB
/
JsonAttributeToken.cs
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
namespace Chr.Avro
{
/// <summary>
/// JSON object keys defined by the Avro spec.
/// </summary>
public static class JsonAttributeToken
{
/// <summary>
/// The named schema aliases key.
/// </summary>
public const string Aliases = "aliases";
/// <summary>
/// The record field default value key.
/// </summary>
public const string Default = "default";
/// <summary>
/// The enum/record schema documentation key.
/// </summary>
public const string Doc = "doc";
/// <summary>
/// The record schema fields key.
/// </summary>
public const string Fields = "fields";
/// <summary>
/// The array schema items key.
/// </summary>
public const string Items = "items";
/// <summary>
/// The schema logical type key.
/// </summary>
public const string LogicalType = "logicalType";
/// <summary>
/// The named schema name key.
/// </summary>
public const string Name = "name";
/// <summary>
/// The named schema namespace key.
/// </summary>
public const string Namespace = "namespace";
/// <summary>
/// The decimal logical type precision key.
/// </summary>
public const string Precision = "precision";
/// <summary>
/// The decimal logical type scale key.
/// </summary>
public const string Scale = "scale";
/// <summary>
/// The fixed schema size key.
/// </summary>
public const string Size = "size";
/// <summary>
/// The enum schema symbols key.
/// </summary>
public const string Symbols = "symbols";
/// <summary>
/// The schema type key.
/// </summary>
public const string Type = "type";
/// <summary>
/// The map schema values key.
/// </summary>
public const string Values = "values";
}
}