json.schema.entity.services.connections.dashboard.domoDashboardConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/dashboard/domoDashboardConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DomoDashboardConnection",
"description": "Domo Dashboard Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.dashboard.DomoDashboardConnection",
"definitions": {
"domoDashboardType": {
"description": " service type",
"type": "string",
"enum": ["DomoDashboard"],
"default": "DomoDashboard"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/domoDashboardType",
"default": "DomoDashboard"
},
"clientId": {
"title": "Client ID",
"description": "Client ID for DOMO",
"type": "string"
},
"secretToken": {
"title": "Secret Token",
"description": "Secret Token to connect DOMO",
"type": "string",
"format": "password"
},
"accessToken": {
"title": "Access Token",
"description": "Access token to connect to DOMO",
"type": "string"
},
"apiHost": {
"expose": true,
"title": "API Host",
"description": "API Host to connect to DOMO instance",
"default": "api.domo.com",
"type": "string",
"format": "string"
},
"instanceDomain": {
"title": "Instance Domain",
"description": "URL of your Domo instance, e.g., https://openmetadata.domo.com",
"type": "string",
"format": "uri"
},
"supportsMetadataExtraction": {
"title": "Supports Metadata Extraction",
"$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
}
},
"additionalProperties": false,
"required": ["clientId", "secretToken", "instanceDomain"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy