You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows.
@@ -26488,13 +26490,14 @@ components:
26488
26490
description: Upload configuration specifying how data is uploaded by the user, and properties of the table to associate the upload with.
26489
26491
properties:
26490
26492
headers:
26491
-
description: The CSV file headers that define the schema fields, provided in the same order as the columns in the uploaded file.
26493
+
description: The CSV file headers that define the schema fields, provided in the same order as the columns in the uploaded file. Maximum of 200 columns.
26492
26494
example:
26493
26495
- "field_1"
26494
26496
- "field_2"
26495
26497
items:
26496
26498
description: A column header name from the CSV file.
26497
26499
type: string
26500
+
maxItems: 200
26498
26501
type: array
26499
26502
part_count:
26500
26503
description: Number of parts to split the file into for multipart upload.
@@ -80983,9 +80986,11 @@ components:
80983
80986
description: Schema defining the updates to the structure and columns of the reference table. Schema fields cannot be deleted or renamed.
80984
80987
properties:
80985
80988
fields:
80986
-
description: The schema fields.
80989
+
description: The schema fields. Maximum of 200 columns.
description: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows. Primary keys cannot be changed after table creation.
@@ -110145,9 +110150,11 @@ components:
110145
110150
description: Schema defining the structure and columns of the reference table.
110146
110151
properties:
110147
110152
fields:
110148
-
description: The schema fields.
110153
+
description: The schema fields. Maximum of 200 columns.
description: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows.
:param primary_keys: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows.
Upload configuration specifying how data is uploaded by the user, and properties of the table to associate the upload with.
40
43
41
-
:param headers: The CSV file headers that define the schema fields, provided in the same order as the columns in the uploaded file.
44
+
:param headers: The CSV file headers that define the schema fields, provided in the same order as the columns in the uploaded file. Maximum of 200 columns.
42
45
:type headers: [str]
43
46
44
47
:param part_count: Number of parts to split the file into for multipart upload.
:param primary_keys: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows. Primary keys cannot be changed after table creation.
:param primary_keys: List of field names that serve as primary keys for the table. Only one primary key is supported, and it is used as an ID to retrieve rows.
0 commit comments