json.schema.entity.services.dashboardService.json Maven / Gradle / Ivy
The newest version!
{
"$id": "https://open-metadata.org/schema/entity/services/dashboardService.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Dashboard Service",
"description": "This schema defines the Dashboard Service entity, such as Looker and Superset.",
"type": "object",
"javaType": "org.openmetadata.catalog.entity.services.DashboardService",
"javaInterfaces": ["org.openmetadata.core.entity.interfaces.EntityInterface", "org.openmetadata.core.entity.interfaces.ServiceEntityInterface"],
"definitions": {
"dashboardServiceType": {
"description": "Type of Dashboard service - Superset, Looker, Redash, Tableau, Metabase, PowerBi or Mode",
"type": "string",
"enum": [
"Superset",
"Looker",
"Tableau",
"Redash",
"Metabase",
"PowerBI",
"Mode"
],
"javaEnums": [
{
"name": "Superset"
},
{
"name": "Looker"
},
{
"name": "Tableau"
},
{
"name": "Redash"
},
{
"name": "Metabase"
},
{
"name": "PowerBI"
},
{
"name": "Mode"
}
]
},
"dashboardConnection": {
"type": "object",
"javaType": "org.openmetadata.catalog.type.DashboardConnection",
"description": "Dashboard Connection.",
"javaInterfaces": ["org.openmetadata.core.entity.interfaces.ServiceConnectionEntityInterface"],
"properties": {
"config": {
"oneOf": [
{
"$ref": "./connections/dashboard/lookerConnection.json"
},
{
"$ref": "./connections/dashboard/metabaseConnection.json"
},
{
"$ref": "./connections/dashboard/powerBIConnection.json"
},
{
"$ref": "./connections/dashboard/redashConnection.json"
},
{
"$ref": "./connections/dashboard/supersetConnection.json"
},
{
"$ref": "./connections/dashboard/tableauConnection.json"
},
{
"$ref": "./connections/dashboard/modeConnection.json"
}
]
}
},
"additionalProperties": false
}
},
"properties": {
"id": {
"description": "Unique identifier of this dashboard service instance.",
"$ref": "../../type/basic.json#/definitions/uuid"
},
"name": {
"description": "Name that identifies this dashboard service.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"fullyQualifiedName": {
"description": "FullyQualifiedName same as `name`.",
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"displayName": {
"description": "Display Name that identifies this dashboard service.",
"type": "string"
},
"serviceType": {
"description": "Type of dashboard service such as Looker or Superset...",
"$ref": "#/definitions/dashboardServiceType"
},
"description": {
"description": "Description of a dashboard service instance.",
"$ref": "../../type/basic.json#/definitions/markdown"
},
"connection": {
"$ref": "#/definitions/dashboardConnection"
},
"pipelines": {
"description": "References to pipelines deployed for this dashboard service.",
"$ref": "../../type/entityReference.json#/definitions/entityReferenceList"
},
"owner": {
"description": "Owner of this dashboard service.",
"$ref": "../../type/entityReference.json"
},
"version": {
"description": "Metadata version of the entity.",
"$ref": "../../type/entityHistory.json#/definitions/entityVersion"
},
"updatedAt": {
"description": "Last update time corresponding to the new version of the entity in Unix epoch time milliseconds.",
"$ref": "../../type/basic.json#/definitions/timestamp"
},
"updatedBy": {
"description": "User who made the update.",
"type": "string"
},
"href": {
"description": "Link to the resource corresponding to this dashboard service.",
"$ref": "../../type/basic.json#/definitions/href"
},
"changeDescription": {
"description": "Change that lead to this version of the entity.",
"$ref": "../../type/entityHistory.json#/definitions/changeDescription"
},
"deleted": {
"description": "When `true` indicates the entity has been soft deleted.",
"type": "boolean",
"default": false
}
},
"required": ["id", "name", "serviceType"],
"additionalProperties": false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy