avrotize 2.21.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- avrotize/__init__.py +66 -0
- avrotize/__main__.py +6 -0
- avrotize/_version.py +34 -0
- avrotize/asn1toavro.py +160 -0
- avrotize/avrotize.py +152 -0
- avrotize/avrotocpp/CMakeLists.txt.jinja +77 -0
- avrotize/avrotocpp/build.bat.jinja +7 -0
- avrotize/avrotocpp/build.sh.jinja +7 -0
- avrotize/avrotocpp/dataclass_body.jinja +108 -0
- avrotize/avrotocpp/vcpkg.json.jinja +21 -0
- avrotize/avrotocpp.py +483 -0
- avrotize/avrotocsharp/README.md.jinja +166 -0
- avrotize/avrotocsharp/class_test.cs.jinja +266 -0
- avrotize/avrotocsharp/dataclass_core.jinja +293 -0
- avrotize/avrotocsharp/enum_test.cs.jinja +20 -0
- avrotize/avrotocsharp/project.csproj.jinja +30 -0
- avrotize/avrotocsharp/project.sln.jinja +34 -0
- avrotize/avrotocsharp/run_coverage.ps1.jinja +98 -0
- avrotize/avrotocsharp/run_coverage.sh.jinja +149 -0
- avrotize/avrotocsharp/testproject.csproj.jinja +19 -0
- avrotize/avrotocsharp.py +1180 -0
- avrotize/avrotocsv.py +121 -0
- avrotize/avrotodatapackage.py +173 -0
- avrotize/avrotodb.py +1383 -0
- avrotize/avrotogo/go_enum.jinja +12 -0
- avrotize/avrotogo/go_helpers.jinja +31 -0
- avrotize/avrotogo/go_struct.jinja +151 -0
- avrotize/avrotogo/go_test.jinja +47 -0
- avrotize/avrotogo/go_union.jinja +38 -0
- avrotize/avrotogo.py +476 -0
- avrotize/avrotographql.py +197 -0
- avrotize/avrotoiceberg.py +210 -0
- avrotize/avrotojava/class_test.java.jinja +212 -0
- avrotize/avrotojava/enum_test.java.jinja +21 -0
- avrotize/avrotojava/testproject.pom.jinja +54 -0
- avrotize/avrotojava.py +2156 -0
- avrotize/avrotojs.py +250 -0
- avrotize/avrotojsons.py +481 -0
- avrotize/avrotojstruct.py +345 -0
- avrotize/avrotokusto.py +364 -0
- avrotize/avrotomd/README.md.jinja +49 -0
- avrotize/avrotomd.py +137 -0
- avrotize/avrotools.py +168 -0
- avrotize/avrotoparquet.py +208 -0
- avrotize/avrotoproto.py +359 -0
- avrotize/avrotopython/dataclass_core.jinja +241 -0
- avrotize/avrotopython/enum_core.jinja +87 -0
- avrotize/avrotopython/pyproject_toml.jinja +18 -0
- avrotize/avrotopython/test_class.jinja +97 -0
- avrotize/avrotopython/test_enum.jinja +23 -0
- avrotize/avrotopython.py +626 -0
- avrotize/avrotorust/dataclass_enum.rs.jinja +74 -0
- avrotize/avrotorust/dataclass_struct.rs.jinja +204 -0
- avrotize/avrotorust/dataclass_union.rs.jinja +105 -0
- avrotize/avrotorust.py +435 -0
- avrotize/avrotots/class_core.ts.jinja +140 -0
- avrotize/avrotots/class_test.ts.jinja +77 -0
- avrotize/avrotots/enum_core.ts.jinja +46 -0
- avrotize/avrotots/gitignore.jinja +34 -0
- avrotize/avrotots/index.ts.jinja +0 -0
- avrotize/avrotots/package.json.jinja +23 -0
- avrotize/avrotots/tsconfig.json.jinja +21 -0
- avrotize/avrotots.py +687 -0
- avrotize/avrotoxsd.py +344 -0
- avrotize/cddltostructure.py +1841 -0
- avrotize/commands.json +3496 -0
- avrotize/common.py +834 -0
- avrotize/constants.py +87 -0
- avrotize/csvtoavro.py +132 -0
- avrotize/datapackagetoavro.py +76 -0
- avrotize/dependencies/cpp/vcpkg/vcpkg.json +19 -0
- avrotize/dependencies/cs/net90/dependencies.csproj +29 -0
- avrotize/dependencies/go/go121/go.mod +6 -0
- avrotize/dependencies/java/jdk21/pom.xml +91 -0
- avrotize/dependencies/python/py312/requirements.txt +13 -0
- avrotize/dependencies/rust/stable/Cargo.toml +17 -0
- avrotize/dependencies/typescript/node22/package.json +16 -0
- avrotize/dependency_resolver.py +348 -0
- avrotize/dependency_version.py +432 -0
- avrotize/generic/generic.avsc +57 -0
- avrotize/jsonstoavro.py +2167 -0
- avrotize/jsonstostructure.py +2864 -0
- avrotize/jstructtoavro.py +878 -0
- avrotize/kstructtoavro.py +93 -0
- avrotize/kustotoavro.py +455 -0
- avrotize/openapitostructure.py +717 -0
- avrotize/parquettoavro.py +157 -0
- avrotize/proto2parser.py +498 -0
- avrotize/proto3parser.py +403 -0
- avrotize/prototoavro.py +382 -0
- avrotize/prototypes/any.avsc +19 -0
- avrotize/prototypes/api.avsc +106 -0
- avrotize/prototypes/duration.avsc +20 -0
- avrotize/prototypes/field_mask.avsc +18 -0
- avrotize/prototypes/struct.avsc +60 -0
- avrotize/prototypes/timestamp.avsc +20 -0
- avrotize/prototypes/type.avsc +253 -0
- avrotize/prototypes/wrappers.avsc +117 -0
- avrotize/structuretocddl.py +597 -0
- avrotize/structuretocpp/CMakeLists.txt.jinja +76 -0
- avrotize/structuretocpp/build.bat.jinja +3 -0
- avrotize/structuretocpp/build.sh.jinja +3 -0
- avrotize/structuretocpp/dataclass_body.jinja +50 -0
- avrotize/structuretocpp/vcpkg.json.jinja +11 -0
- avrotize/structuretocpp.py +697 -0
- avrotize/structuretocsharp/class_test.cs.jinja +180 -0
- avrotize/structuretocsharp/dataclass_core.jinja +156 -0
- avrotize/structuretocsharp/enum_test.cs.jinja +36 -0
- avrotize/structuretocsharp/json_structure_converters.cs.jinja +399 -0
- avrotize/structuretocsharp/program.cs.jinja +49 -0
- avrotize/structuretocsharp/project.csproj.jinja +17 -0
- avrotize/structuretocsharp/project.sln.jinja +34 -0
- avrotize/structuretocsharp/testproject.csproj.jinja +18 -0
- avrotize/structuretocsharp/tuple_converter.cs.jinja +121 -0
- avrotize/structuretocsharp.py +2295 -0
- avrotize/structuretocsv.py +365 -0
- avrotize/structuretodatapackage.py +659 -0
- avrotize/structuretodb.py +1125 -0
- avrotize/structuretogo/go_enum.jinja +12 -0
- avrotize/structuretogo/go_helpers.jinja +26 -0
- avrotize/structuretogo/go_interface.jinja +18 -0
- avrotize/structuretogo/go_struct.jinja +187 -0
- avrotize/structuretogo/go_test.jinja +70 -0
- avrotize/structuretogo.py +729 -0
- avrotize/structuretographql.py +502 -0
- avrotize/structuretoiceberg.py +355 -0
- avrotize/structuretojava/choice_core.jinja +34 -0
- avrotize/structuretojava/class_core.jinja +23 -0
- avrotize/structuretojava/enum_core.jinja +18 -0
- avrotize/structuretojava/equals_hashcode.jinja +30 -0
- avrotize/structuretojava/pom.xml.jinja +26 -0
- avrotize/structuretojava/tuple_core.jinja +49 -0
- avrotize/structuretojava.py +938 -0
- avrotize/structuretojs/class_core.js.jinja +33 -0
- avrotize/structuretojs/enum_core.js.jinja +10 -0
- avrotize/structuretojs/package.json.jinja +12 -0
- avrotize/structuretojs/test_class.js.jinja +84 -0
- avrotize/structuretojs/test_enum.js.jinja +58 -0
- avrotize/structuretojs/test_runner.js.jinja +45 -0
- avrotize/structuretojs.py +657 -0
- avrotize/structuretojsons.py +498 -0
- avrotize/structuretokusto.py +639 -0
- avrotize/structuretomd/README.md.jinja +204 -0
- avrotize/structuretomd.py +322 -0
- avrotize/structuretoproto.py +764 -0
- avrotize/structuretopython/dataclass_core.jinja +363 -0
- avrotize/structuretopython/enum_core.jinja +45 -0
- avrotize/structuretopython/map_alias.jinja +21 -0
- avrotize/structuretopython/pyproject_toml.jinja +23 -0
- avrotize/structuretopython/test_class.jinja +103 -0
- avrotize/structuretopython/test_enum.jinja +34 -0
- avrotize/structuretopython.py +799 -0
- avrotize/structuretorust/dataclass_enum.rs.jinja +63 -0
- avrotize/structuretorust/dataclass_struct.rs.jinja +121 -0
- avrotize/structuretorust/dataclass_union.rs.jinja +81 -0
- avrotize/structuretorust.py +714 -0
- avrotize/structuretots/class_core.ts.jinja +78 -0
- avrotize/structuretots/enum_core.ts.jinja +6 -0
- avrotize/structuretots/gitignore.jinja +8 -0
- avrotize/structuretots/index.ts.jinja +1 -0
- avrotize/structuretots/package.json.jinja +39 -0
- avrotize/structuretots/test_class.ts.jinja +35 -0
- avrotize/structuretots/tsconfig.json.jinja +21 -0
- avrotize/structuretots.py +740 -0
- avrotize/structuretoxsd.py +679 -0
- avrotize/xsdtoavro.py +413 -0
- avrotize-2.21.1.dist-info/METADATA +1319 -0
- avrotize-2.21.1.dist-info/RECORD +171 -0
- avrotize-2.21.1.dist-info/WHEEL +4 -0
- avrotize-2.21.1.dist-info/entry_points.txt +3 -0
- avrotize-2.21.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "Syntax",
|
|
4
|
+
"type": "enum",
|
|
5
|
+
"namespace": "google.protobuf",
|
|
6
|
+
"symbols": [
|
|
7
|
+
"SYNTAX_PROTO2",
|
|
8
|
+
"SYNTAX_PROTO3",
|
|
9
|
+
"SYNTAX_EDITIONS"
|
|
10
|
+
],
|
|
11
|
+
"doc": "The syntax in which a protocol buffer element is defined."
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "Cardinality",
|
|
15
|
+
"type": "enum",
|
|
16
|
+
"namespace": "google.protobuf",
|
|
17
|
+
"symbols": [
|
|
18
|
+
"CARDINALITY_UNKNOWN",
|
|
19
|
+
"CARDINALITY_OPTIONAL",
|
|
20
|
+
"CARDINALITY_REQUIRED",
|
|
21
|
+
"CARDINALITY_REPEATED"
|
|
22
|
+
],
|
|
23
|
+
"doc": "Whether a field is optional, required, or repeated."
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"type": "record",
|
|
27
|
+
"name": "EnumValue",
|
|
28
|
+
"namespace": "google.protobuf",
|
|
29
|
+
"fields": [
|
|
30
|
+
{
|
|
31
|
+
"name": "name",
|
|
32
|
+
"type": "string",
|
|
33
|
+
"doc": "Enum value name."
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "number",
|
|
37
|
+
"type": "int",
|
|
38
|
+
"doc": "Enum value number."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "options",
|
|
42
|
+
"type": {
|
|
43
|
+
"type": "array",
|
|
44
|
+
"items": "Option"
|
|
45
|
+
},
|
|
46
|
+
"doc": "Protocol buffer options."
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"doc": "Enum value definition."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"type": "record",
|
|
53
|
+
"name": "Field",
|
|
54
|
+
"namespace": "google.protobuf",
|
|
55
|
+
"fields": [
|
|
56
|
+
{
|
|
57
|
+
"name": "kind",
|
|
58
|
+
"type": "Kind",
|
|
59
|
+
"doc": "The field type."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "cardinality",
|
|
63
|
+
"type": "Cardinality",
|
|
64
|
+
"doc": "The field cardinality."
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "number",
|
|
68
|
+
"type": "int",
|
|
69
|
+
"doc": "The field number."
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "name",
|
|
73
|
+
"type": "string",
|
|
74
|
+
"doc": "The field name."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "type_url",
|
|
78
|
+
"type": "string",
|
|
79
|
+
"doc": "The field type URL, without the scheme, for message or enumeration types. Example: `\"type.googleapis.com/google.protobuf.Timestamp\"`."
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "oneof_index",
|
|
83
|
+
"type": "int",
|
|
84
|
+
"doc": "The index of the field type in `Type.oneofs`, for message or enumeration types. The first type has index 1; zero means the type is not in the list."
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "packed",
|
|
88
|
+
"type": "boolean",
|
|
89
|
+
"doc": "Whether to use alternative packed wire representation."
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "options",
|
|
93
|
+
"type": {
|
|
94
|
+
"type": "array",
|
|
95
|
+
"items": "Option"
|
|
96
|
+
},
|
|
97
|
+
"doc": "The protocol buffer options."
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "json_name",
|
|
101
|
+
"type": "string",
|
|
102
|
+
"doc": "The field JSON name."
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "default_value",
|
|
106
|
+
"type": "string",
|
|
107
|
+
"doc": "The string value of the default value of this field. Proto2 syntax only."
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"doc": "A single field of a message type."
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "record",
|
|
114
|
+
"name": "Option",
|
|
115
|
+
"namespace": "google.protobuf",
|
|
116
|
+
"fields": [
|
|
117
|
+
{
|
|
118
|
+
"name": "name",
|
|
119
|
+
"type": "string",
|
|
120
|
+
"doc": "The option's name. For protobuf built-in options (options defined in descriptor.proto), this is the short name. For example, `\"map_entry\"`. For custom options, it should be the fully-qualified name. For example, `\"google.api.http\"`."
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "value",
|
|
124
|
+
"type": "Any",
|
|
125
|
+
"doc": "The option's value packed in an Any message. If the value is a primitive, the corresponding wrapper type defined in google/protobuf/wrappers.proto should be used. If the value is an enum, it should be stored as an int32 value using the google.protobuf.Int32Value type."
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"doc": "A protocol buffer option, which can be attached to a message, field, enumeration, etc."
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "record",
|
|
132
|
+
"name": "Enum",
|
|
133
|
+
"namespace": "google.protobuf",
|
|
134
|
+
"fields": [
|
|
135
|
+
{
|
|
136
|
+
"name": "name",
|
|
137
|
+
"type": "string",
|
|
138
|
+
"doc": "Enum type name."
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "enumvalue",
|
|
142
|
+
"type": {
|
|
143
|
+
"type": "array",
|
|
144
|
+
"items": "EnumValue"
|
|
145
|
+
},
|
|
146
|
+
"doc": "Enum value definitions."
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "options",
|
|
150
|
+
"type": {
|
|
151
|
+
"type": "array",
|
|
152
|
+
"items": "Option"
|
|
153
|
+
},
|
|
154
|
+
"doc": "Protocol buffer options."
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "source_context",
|
|
158
|
+
"type": "SourceContext",
|
|
159
|
+
"doc": "The source context."
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "syntax",
|
|
163
|
+
"type": "Syntax",
|
|
164
|
+
"doc": "The source syntax."
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "edition",
|
|
168
|
+
"type": "string",
|
|
169
|
+
"doc": "The source edition string, only valid when syntax is SYNTAX_EDITIONS."
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"doc": "Enum type definition."
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "Kind",
|
|
176
|
+
"type": "enum",
|
|
177
|
+
"namespace": "google.protobuf",
|
|
178
|
+
"symbols": [
|
|
179
|
+
"TYPE_UNKNOWN",
|
|
180
|
+
"TYPE_DOUBLE",
|
|
181
|
+
"TYPE_FLOAT",
|
|
182
|
+
"TYPE_INT64",
|
|
183
|
+
"TYPE_UINT64",
|
|
184
|
+
"TYPE_INT32",
|
|
185
|
+
"TYPE_FIXED64",
|
|
186
|
+
"TYPE_FIXED32",
|
|
187
|
+
"TYPE_BOOL",
|
|
188
|
+
"TYPE_STRING",
|
|
189
|
+
"TYPE_GROUP",
|
|
190
|
+
"TYPE_MESSAGE",
|
|
191
|
+
"TYPE_BYTES",
|
|
192
|
+
"TYPE_UINT32",
|
|
193
|
+
"TYPE_ENUM",
|
|
194
|
+
"TYPE_SFIXED32",
|
|
195
|
+
"TYPE_SFIXED64",
|
|
196
|
+
"TYPE_SINT32",
|
|
197
|
+
"TYPE_SINT64"
|
|
198
|
+
],
|
|
199
|
+
"doc": "Basic field types."
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"type": "record",
|
|
203
|
+
"name": "Type",
|
|
204
|
+
"namespace": "google.protobuf",
|
|
205
|
+
"fields": [
|
|
206
|
+
{
|
|
207
|
+
"name": "name",
|
|
208
|
+
"type": "string",
|
|
209
|
+
"doc": "The fully qualified message name."
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "fields",
|
|
213
|
+
"type": {
|
|
214
|
+
"type": "array",
|
|
215
|
+
"items": "Field"
|
|
216
|
+
},
|
|
217
|
+
"doc": "The list of fields."
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "oneofs",
|
|
221
|
+
"type": {
|
|
222
|
+
"type": "array",
|
|
223
|
+
"items": "string"
|
|
224
|
+
},
|
|
225
|
+
"doc": "The list of types appearing in `oneof` definitions in this type."
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "options",
|
|
229
|
+
"type": {
|
|
230
|
+
"type": "array",
|
|
231
|
+
"items": "Option"
|
|
232
|
+
},
|
|
233
|
+
"doc": "The protocol buffer options."
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "source_context",
|
|
237
|
+
"type": "SourceContext",
|
|
238
|
+
"doc": "The source context."
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "syntax",
|
|
242
|
+
"type": "Syntax",
|
|
243
|
+
"doc": "The source syntax."
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "edition",
|
|
247
|
+
"type": "string",
|
|
248
|
+
"doc": "The source edition string, only valid when syntax is SYNTAX_EDITIONS."
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"doc": "A protocol buffer message type."
|
|
252
|
+
}
|
|
253
|
+
]
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "record",
|
|
4
|
+
"name": "StringValue",
|
|
5
|
+
"namespace": "google.protobuf",
|
|
6
|
+
"fields": [
|
|
7
|
+
{
|
|
8
|
+
"name": "value",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"doc": "The string value."
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"doc": "The JSON representation for `StringValue` is JSON string."
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "record",
|
|
17
|
+
"name": "UInt64Value",
|
|
18
|
+
"namespace": "google.protobuf",
|
|
19
|
+
"fields": [
|
|
20
|
+
{
|
|
21
|
+
"name": "value",
|
|
22
|
+
"type": "long",
|
|
23
|
+
"doc": "The uint64 value."
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"doc": "The JSON representation for `UInt64Value` is JSON string."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"type": "record",
|
|
30
|
+
"name": "UInt32Value",
|
|
31
|
+
"namespace": "google.protobuf",
|
|
32
|
+
"fields": [
|
|
33
|
+
{
|
|
34
|
+
"name": "value",
|
|
35
|
+
"type": "int",
|
|
36
|
+
"doc": "The uint32 value."
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"doc": "Wrapper message for `uint32`. The JSON representation for `UInt32Value` is JSON number."
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"type": "record",
|
|
43
|
+
"name": "FloatValue",
|
|
44
|
+
"namespace": "google.protobuf",
|
|
45
|
+
"fields": [
|
|
46
|
+
{
|
|
47
|
+
"name": "value",
|
|
48
|
+
"type": "float",
|
|
49
|
+
"doc": "The float value."
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"type": "record",
|
|
55
|
+
"name": "BytesValue",
|
|
56
|
+
"namespace": "google.protobuf",
|
|
57
|
+
"fields": [
|
|
58
|
+
{
|
|
59
|
+
"name": "value",
|
|
60
|
+
"type": "bytes",
|
|
61
|
+
"doc": "The bytes value."
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"doc": "Wrapper message for `bytes`. The JSON representation for `BytesValue` is JSON string."
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"type": "record",
|
|
68
|
+
"name": "BoolValue",
|
|
69
|
+
"namespace": "google.protobuf",
|
|
70
|
+
"fields": [
|
|
71
|
+
{
|
|
72
|
+
"name": "value",
|
|
73
|
+
"type": "boolean",
|
|
74
|
+
"doc": "The bool value."
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"doc": "The JSON representation for `BoolValue` is JSON `true` and `false`."
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"type": "record",
|
|
81
|
+
"name": "Int32Value",
|
|
82
|
+
"namespace": "google.protobuf",
|
|
83
|
+
"fields": [
|
|
84
|
+
{
|
|
85
|
+
"name": "value",
|
|
86
|
+
"type": "int",
|
|
87
|
+
"doc": "The int32 value."
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"doc": "Wrapper message for `int32`. The JSON representation for `Int32Value` is JSON number."
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"type": "record",
|
|
94
|
+
"name": "Int64Value",
|
|
95
|
+
"namespace": "google.protobuf",
|
|
96
|
+
"fields": [
|
|
97
|
+
{
|
|
98
|
+
"name": "value",
|
|
99
|
+
"type": "long",
|
|
100
|
+
"doc": "The int64 value."
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"type": "record",
|
|
106
|
+
"name": "DoubleValue",
|
|
107
|
+
"namespace": "google.protobuf",
|
|
108
|
+
"fields": [
|
|
109
|
+
{
|
|
110
|
+
"name": "value",
|
|
111
|
+
"type": "double",
|
|
112
|
+
"doc": "The double value."
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"doc": "Wrapper message for `double`. The JSON representation for `DoubleValue` is JSON number."
|
|
116
|
+
}
|
|
117
|
+
]
|