json.schema.entity.data.dashboard.json Maven / Gradle / Ivy
The newest version!
{
"$id": "https://open-metadata.org/schema/entity/data/dashboard.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Dashboard",
"description": "This schema defines the Dashboard entity. Dashboards are computed from data and visually present data, metrics, and KPIs. They are updated in real-time and allow interactive data exploration.",
"type": "object",
"javaType": "org.openmetadata.catalog.entity.data.Dashboard",
"javaInterfaces": ["org.openmetadata.core.entity.interfaces.EntityInterface"],
"properties": {
"id": {
"description": "Unique identifier that identifies a dashboard instance.",
"$ref": "../../type/basic.json#/definitions/uuid"
},
"name": {
"description": "Name that identifies this dashboard.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"displayName": {
"description": "Display Name that identifies this Dashboard. It could be title or label from the source services.",
"type": "string"
},
"fullyQualifiedName": {
"description": "A unique name that identifies a dashboard in the format 'ServiceName.DashboardName'.",
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"description": {
"description": "Description of the dashboard, what it is, and how to use it.",
"$ref": "../../type/basic.json#/definitions/markdown"
},
"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"
},
"dashboardUrl": {
"description": "Dashboard URL suffix from its service.",
"type": "string"
},
"charts": {
"description": "All the charts included in this Dashboard.",
"type": "array",
"items": {
"$ref": "../../type/entityReference.json"
},
"default": null
},
"href": {
"description": "Link to the resource corresponding to this entity.",
"$ref": "../../type/basic.json#/definitions/href"
},
"owner": {
"description": "Owner of this dashboard.",
"$ref": "../../type/entityReference.json"
},
"followers": {
"description": "Followers of this dashboard.",
"$ref": "../../type/entityReference.json#/definitions/entityReferenceList"
},
"tags": {
"description": "Tags for this dashboard.",
"type": "array",
"items": {
"$ref": "../../type/tagLabel.json"
},
"default": null
},
"service": {
"description": "Link to service where this dashboard is hosted in.",
"$ref": "../../type/entityReference.json"
},
"serviceType": {
"description": "Service type where this dashboard is hosted in.",
"$ref": "../services/dashboardService.json#/definitions/dashboardServiceType"
},
"usageSummary": {
"description": "Latest usage information for this database.",
"$ref": "../../type/usageDetails.json",
"default": null
},
"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
},
"extension": {
"description": "Entity extension data with custom attributes added to the entity.",
"$ref": "../../type/basic.json#/definitions/entityExtension"
}
},
"required": ["id", "name", "service"],
"additionalProperties": false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy