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
|
[
{
"name": "a",
"type": "INTEGER",
"mode": "NULLABLE",
"description": "Description of field a -- this is an int32"
},
{
"name": "b",
"type": "RECORD",
"mode": "NULLABLE",
"description": "Nested b structure",
"fields": [
{
"name": "a",
"type": "INTEGER",
"mode": "REPEATED"
}
]
},
{
"name": "c",
"type": "STRING",
"mode": "REPEATED",
"description": "Repeated c string"
},
{
"name": "e",
"type": "TIMESTAMP",
"mode": "REQUIRED",
"description": "TIMESTAMP (uint64 in proto) - required in BigQuery"
},
{
"name": "wkt1",
"type": "INTEGER",
"mode": "NULLABLE"
},
{
"name": "wkt2",
"type": "TIMESTAMP",
"mode": "NULLABLE"
},
{
"name": "sub_baz",
"type": "RECORD",
"mode": "NULLABLE",
"description": "Sub-message within the file",
"fields": [
{
"name": "a",
"type": "INTEGER",
"mode": "NULLABLE"
}
]
},
{
"name": "share_data",
"type": "RECORD",
"mode": "NULLABLE",
"description": "Shared data defined in common.proto",
"fields": [
{
"name": "data_descriptor",
"type": "STRING",
"mode": "NULLABLE",
"description": "Required: The message origination domain"
}
]
}
]
|