diff --git a/ingestion/src/metadata/ingestion/source/dashboard/powerbi/metadata.py b/ingestion/src/metadata/ingestion/source/dashboard/powerbi/metadata.py index a918b46fd8a..6a0aeee8af8 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/powerbi/metadata.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/powerbi/metadata.py @@ -396,6 +396,7 @@ class PowerbiSource(DashboardServiceSource): ), "name": column.name, "displayName": column.name, + "description": column.description, } if column.dataType and column.dataType == DataType.ARRAY.value: parsed_column["arrayDataType"] = DataType.UNKNOWN diff --git a/ingestion/src/metadata/ingestion/source/dashboard/powerbi/models.py b/ingestion/src/metadata/ingestion/source/dashboard/powerbi/models.py index 4c8b177bc83..da8fcbe92b6 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/powerbi/models.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/powerbi/models.py @@ -95,6 +95,7 @@ class PowerBiColumns(BaseModel): name: str dataType: Optional[str] = None columnType: Optional[str] = None + description: Optional[str] = None class PowerBiTable(BaseModel):