Fix #6313: Add om-comment to entities (#6315)

* Fix #6313: Add om-comment to entities

* Fix #6313: Add om-comment to entities
This commit is contained in:
Sriharsha Chintalapani 2022-07-24 23:58:21 -07:00 committed by GitHub
parent 7c7e19b36f
commit 67339a6c25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 1 deletions

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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__"]