* Source Firebolt: allow reading from views * setting cdk version * Decimal is now enabled * Bump sdk version to 0.12 * fix integration tests * Disabling backwards compatibility test * address comments: - revert .pre-commit-config.yaml - update versions manually under the seed file - update the doc to reflect the PR link * fix docs and bump source_specs.yaml Co-authored-by: Yiyang Li <yiyangli2010@gmail.com>
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.com/integrations/sources/firebolt",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Firebolt Spec",
|
|
"type": "object",
|
|
"required": ["username", "password", "database"],
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"username": {
|
|
"type": "string",
|
|
"title": "Username",
|
|
"description": "Firebolt email address you use to login.",
|
|
"examples": ["username@email.com"]
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"title": "Password",
|
|
"description": "Firebolt password.",
|
|
"airbyte_secret": true
|
|
},
|
|
"account": {
|
|
"type": "string",
|
|
"title": "Account",
|
|
"description": "Firebolt account to login."
|
|
},
|
|
"host": {
|
|
"type": "string",
|
|
"title": "Host",
|
|
"description": "The host name of your Firebolt database.",
|
|
"examples": ["api.app.firebolt.io"]
|
|
},
|
|
"database": {
|
|
"type": "string",
|
|
"title": "Database",
|
|
"description": "The database to connect to."
|
|
},
|
|
"engine": {
|
|
"type": "string",
|
|
"title": "Engine",
|
|
"description": "Engine name or url to connect to."
|
|
}
|
|
}
|
|
}
|
|
}
|