forked from googleapis/python-bigquery-dataframes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepeated_schema.json
More file actions
42 lines (42 loc) · 803 Bytes
/
repeated_schema.json
File metadata and controls
42 lines (42 loc) · 803 Bytes
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
[
{
"name": "rowindex",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "int_list_col",
"type": "INTEGER",
"mode": "REPEATED"
},
{
"name": "bool_list_col",
"type": "BOOLEAN",
"mode": "REPEATED"
},
{
"name": "float_list_col",
"type": "FLOAT",
"mode": "REPEATED"
},
{
"name": "date_list_col",
"type": "DATE",
"mode": "REPEATED"
},
{
"name": "date_time_list_col",
"type": "DATETIME",
"mode": "REPEATED"
},
{
"name": "numeric_list_col",
"type": "NUMERIC",
"mode": "REPEATED"
},
{
"name": "string_list_col",
"type": "STRING",
"mode": "REPEATED"
}
]