1
0
mirror of synced 2026-01-06 15:03:36 -05:00
Files
airbyte/airbyte-integrations/connectors/source-firebolt/source_firebolt/spec.json
Petro Tiurin 7b0aecb286 Source Firebolt: allow reading from views (#16583)
* 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>
2022-12-06 21:42:32 -03:00

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."
}
}
}
}