All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
json.schema.entity.services.connections.pipeline.dbtCloudConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/pipeline/dbtCloudConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DBTCloudConnection",
"description": "DBTCloud Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.pipeline.DBTCloudConnection",
"definitions": {
"DBTCloudType": {
"description": "Service type.",
"type": "string",
"enum": ["DBTCloud"],
"default": "DBTCloud"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/DBTCloudType",
"default": "DBTCloud"
},
"host": {
"expose": true,
"title": "Host",
"description": "DBT cloud Access URL.",
"type": "string",
"format": "uri"
},
"discoveryAPI": {
"expose": true,
"title": "Discovery API URL",
"description": "DBT cloud Metadata API URL.",
"type": "string",
"format": "uri"
},
"accountId": {
"title": "Account Id",
"description": "ID of your DBT cloud account",
"type": "string"
},
"jobId": {
"title": "Job Id",
"description": "ID of your DBT cloud job",
"type": "string",
"default": null
},
"token": {
"title": "Token",
"description": "Generated Token to connect to DBTCloud.",
"type": "string",
"format": "password"
}
},
"additionalProperties": false,
"required": ["host", "discoveryAPI", "accountId", "token"]
}