json.schema.entity.services.connections.dashboard.metabaseConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/dashboard/metabaseConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MetabaseConnection",
"description": "Metabase Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.dashboard.MetabaseConnection",
"definitions": {
"metabaseType": {
"description": "Metabase service type",
"type": "string",
"enum": ["Metabase"],
"default": "Metabase"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/metabaseType",
"default": "Metabase"
},
"username": {
"title": "Username",
"description": "Username to connect to Metabase. This user should have privileges to read all the metadata in Metabase.",
"type": "string"
},
"password": {
"title": "Password",
"description": "Password to connect to Metabase.",
"type": "string",
"format": "password"
},
"hostPort": {
"expose": true,
"title": "Host and Port",
"description": "Host and Port of the Metabase instance.",
"type": "string",
"format": "uri"
},
"supportsMetadataExtraction": {
"title": "Supports Metadata Extraction",
"$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
}
},
"additionalProperties": false,
"required": ["hostPort", "username"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy