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