1.4 KiB
1.4 KiB
- run
npm run storybookinairbyte-webappdirectory - open
ServiceFormcomponent story http://localhost:9009/?path=/story/views-serviceform--source - press
rawon the specifications property, so you will be able to past json in string format. - edit specifications property to the connectionConfigration you want
e.g.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BigQuery Destination Spec",
"type": "object",
"required": ["project_id", "dataset_id"],
"additionalProperties": true,
"properties": {
"project_id": {
"type": "string",
"description": "The GCP project ID for the project containing the target BigQuery dataset.",
"title": "Project ID"
},
"dataset_id": {
"type": "string",
"description": "Default BigQuery Dataset ID tables are replicated to if the source does not specify a namespace.",
"title": "Default Dataset ID"
},
"credentials_json": {
"type": "string",
"description": "The contents of the JSON service account key. Check out the <a href=\"https://docs.airbyte.io/integrations/destinations/bigquery\">docs</a> if you need help generating this key. Default credentials will be used if this field is left empty.",
"title": "Credentials JSON",
"airbyte_secret": true
}
}
}
