mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-09 05:56:17 +00:00
* Fix #6313: Add om-comment to entities * Fix #6313: Add om-comment to entities
This commit is contained in:
parent
7c7e19b36f
commit
67339a6c25
@ -2,6 +2,7 @@
|
||||
"$id": "https://open-metadata.org/schema/entity/data/dashboard.json",
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Dashboard",
|
||||
"$comment": "@om-entity-type",
|
||||
"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",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"$id": "https://open-metadata.org/schema/entity/data/mlmodel.json",
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "MlModel",
|
||||
"$comment": "@om-entity-type",
|
||||
"description": "This schema defines the Model entity. Models are algorithms trained on data to find patterns or make predictions.",
|
||||
"type": "object",
|
||||
"javaType": "org.openmetadata.catalog.entity.data.MlModel",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"$id": "https://open-metadata.org/schema/entity/data/pipeline.json",
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Pipeline",
|
||||
"$comment": "@om-entity-type",
|
||||
"description": "This schema defines the Pipeline entity. A pipeline enables the flow of data from source to destination through a series of processing steps. ETL is a type of pipeline where the series of steps Extract, Transform and Load the data.",
|
||||
"type": "object",
|
||||
"javaType": "org.openmetadata.catalog.entity.data.Pipeline",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"$id": "https://open-metadata.org/schema/entity/data/topic.json",
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Topic",
|
||||
"$comment": "@om-entity-type",
|
||||
"description": "This schema defines the Topic entity. A topic is a feed into which message are published to by publishers and read from by consumers in a messaging service.",
|
||||
"type": "object",
|
||||
"javaType": "org.openmetadata.catalog.entity.data.Topic",
|
||||
|
||||
@ -7,5 +7,5 @@ Provides metadata version information.
|
||||
|
||||
from incremental import Version
|
||||
|
||||
__version__ = Version("metadata", 0, 12, 0, dev=1)
|
||||
__version__ = Version("metadata", 0, 12, 0, dev=2)
|
||||
__all__ = ["__version__"]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user