Skip to content

Commit 8d4b7fe

Browse files
committed
Add Dataset ID limit regex
1 parent f0502ef commit 8d4b7fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firestore-bigquery-export/extension.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ params:
8585
type: string
8686
label: Collection path
8787
description: >-
88-
What is the path of the collection that you would like to export?
88+
What is the path of the collection that you would like to export?
8989
You may use `{wildcard}` notation to match a subcollection of all documents in a collection
9090
(for example: `chatrooms/{chatid}/posts`).
9191
default: posts
@@ -100,7 +100,7 @@ params:
100100
description: >-
101101
What ID would you like to use for your BigQuery dataset? This
102102
extension will create the dataset, if it doesn't already exist.
103-
validationRegex: "^[a-zA-Z0-9_]+$"
103+
validationRegex: "^[a-zA-Z0-9_]{1,1024}$"
104104
validationErrorMessage: >
105105
BigQuery dataset IDs must be alphanumeric (plus underscores) and must be no more than
106106
1024 characters.

0 commit comments

Comments
 (0)