diff --git a/catalog-rest-service/src/main/resources/json/schema/entity/data/dashboard.json b/catalog-rest-service/src/main/resources/json/schema/entity/data/dashboard.json index c4619b25270..2d87168090f 100644 --- a/catalog-rest-service/src/main/resources/json/schema/entity/data/dashboard.json +++ b/catalog-rest-service/src/main/resources/json/schema/entity/data/dashboard.json @@ -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", diff --git a/catalog-rest-service/src/main/resources/json/schema/entity/data/mlmodel.json b/catalog-rest-service/src/main/resources/json/schema/entity/data/mlmodel.json index 34b94c015aa..d0b234594b0 100644 --- a/catalog-rest-service/src/main/resources/json/schema/entity/data/mlmodel.json +++ b/catalog-rest-service/src/main/resources/json/schema/entity/data/mlmodel.json @@ -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", diff --git a/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json b/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json index a836fcd7dfe..b97d677106b 100644 --- a/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json +++ b/catalog-rest-service/src/main/resources/json/schema/entity/data/pipeline.json @@ -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", diff --git a/catalog-rest-service/src/main/resources/json/schema/entity/data/topic.json b/catalog-rest-service/src/main/resources/json/schema/entity/data/topic.json index 34ed95670ca..87604cffc94 100644 --- a/catalog-rest-service/src/main/resources/json/schema/entity/data/topic.json +++ b/catalog-rest-service/src/main/resources/json/schema/entity/data/topic.json @@ -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", diff --git a/ingestion-core/src/metadata/_version.py b/ingestion-core/src/metadata/_version.py index 300dd875a8a..1218a920918 100644 --- a/ingestion-core/src/metadata/_version.py +++ b/ingestion-core/src/metadata/_version.py @@ -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__"]