diff --git a/catalog-rest-service/src/main/resources/json/schema/entity/services/dashboardService.json b/catalog-rest-service/src/main/resources/json/schema/entity/services/dashboardService.json index c7930276c5e..1e0602cbdfa 100644 --- a/catalog-rest-service/src/main/resources/json/schema/entity/services/dashboardService.json +++ b/catalog-rest-service/src/main/resources/json/schema/entity/services/dashboardService.json @@ -2,7 +2,7 @@ "$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 Messaging Service entity, such as Kafka and Pulsar.", + "description": "This schema defines the Dashboard Service entity, such as Looker and Superset.", "type": "object", "definitions": { "dashboardServiceType": { @@ -67,7 +67,7 @@ "$ref": "../../type/schedule.json" }, "href": { - "description": "Link to the resource corresponding to this messaging service.", + "description": "Link to the resource corresponding to this dashboard service.", "$ref": "../../type/basic.json#/definitions/href" } }, diff --git a/catalog-rest-service/src/main/resources/json/schema/entity/services/pipelineService.json b/catalog-rest-service/src/main/resources/json/schema/entity/services/pipelineService.json index 32010188862..31865d7ea59 100644 --- a/catalog-rest-service/src/main/resources/json/schema/entity/services/pipelineService.json +++ b/catalog-rest-service/src/main/resources/json/schema/entity/services/pipelineService.json @@ -38,7 +38,7 @@ "$ref": "#/definitions/pipelineServiceType" }, "description": { - "description": "Description of a messaging service instance.", + "description": "Description of a pipeline service instance.", "type": "string" }, "pipelineUrl": { @@ -51,7 +51,7 @@ "$ref": "../../type/schedule.json" }, "href": { - "description": "Link to the resource corresponding to this messaging service.", + "description": "Link to the resource corresponding to this pipeline service.", "$ref": "../../type/basic.json#/definitions/href" } }, diff --git a/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/dashboardService.ts b/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/dashboardService.ts index 92e3eb5e957..faca632966d 100644 --- a/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/dashboardService.ts +++ b/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/dashboardService.ts @@ -17,7 +17,7 @@ */ /** - * This schema defines the Messaging Service entity, such as Kafka and Pulsar. + * This schema defines the Dashboard Service entity, such as Looker and Superset. */ export interface DashboardService { /** @@ -29,7 +29,7 @@ export interface DashboardService { */ description?: string; /** - * Link to the resource corresponding to this messaging service. + * Link to the resource corresponding to this dashboard service. */ href?: string; /** diff --git a/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/pipelineService.ts b/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/pipelineService.ts index 321b16dcb4d..b6b5a38d782 100644 --- a/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/pipelineService.ts +++ b/catalog-rest-service/src/main/resources/ui/src/generated/entity/services/pipelineService.ts @@ -21,11 +21,11 @@ */ export interface PipelineService { /** - * Description of a messaging service instance. + * Description of a pipeline service instance. */ description?: string; /** - * Link to the resource corresponding to this messaging service. + * Link to the resource corresponding to this pipeline service. */ href?: string; /** diff --git a/docs/openmetadata-apis/schemas/entities/dashboardservice.md b/docs/openmetadata-apis/schemas/entities/dashboardservice.md index 43b2f14bec0..aeafd94d05c 100644 --- a/docs/openmetadata-apis/schemas/entities/dashboardservice.md +++ b/docs/openmetadata-apis/schemas/entities/dashboardservice.md @@ -1,6 +1,6 @@ # Dashboard Service -This schema defines the Messaging Service entity, such as Kafka and Pulsar. +This schema defines the Dashboard Service entity, such as Looker and Superset. **$id: https://open-metadata.org/schema/entity/services/dashboardService.json** @@ -34,7 +34,7 @@ Type: `object` - Schedule for running metadata ingestion jobs. - $ref: [../../type/schedule.json](../types/schedule.md) - **href** - - Link to the resource corresponding to this messaging service. + - Link to the resource corresponding to this dashboard service. - $ref: [../../type/basic.json#/definitions/href](../types/basic.md#href) diff --git a/ingestion/src/metadata/generated/schema/entity/services/dashboardService.py b/ingestion/src/metadata/generated/schema/entity/services/dashboardService.py index 54074d8a2a5..2a8a862a9d8 100644 --- a/ingestion/src/metadata/generated/schema/entity/services/dashboardService.py +++ b/ingestion/src/metadata/generated/schema/entity/services/dashboardService.py @@ -47,5 +47,5 @@ class DashboardService(BaseModel): ) href: Optional[basic.Href] = Field( None, - description='Link to the resource corresponding to this messaging service.', + description='Link to the resource corresponding to this dashboard service.', ) diff --git a/ingestion/src/metadata/generated/schema/entity/services/pipelineService.py b/ingestion/src/metadata/generated/schema/entity/services/pipelineService.py index afdf8b64810..9276dcb6bb7 100644 --- a/ingestion/src/metadata/generated/schema/entity/services/pipelineService.py +++ b/ingestion/src/metadata/generated/schema/entity/services/pipelineService.py @@ -28,7 +28,7 @@ class PipelineService(BaseModel): None, description='Type of pipeline service such as Airflow or Prefect...' ) description: Optional[str] = Field( - None, description='Description of a messaging service instance.' + None, description='Description of a pipeline service instance.' ) pipelineUrl: AnyUrl = Field(..., description='Pipeline Service Management/UI URL') ingestionSchedule: Optional[schedule.Schedule] = Field( @@ -36,5 +36,5 @@ class PipelineService(BaseModel): ) href: Optional[basic.Href] = Field( None, - description='Link to the resource corresponding to this messaging service.', + description='Link to the resource corresponding to this pipeline service.', )