ISSUE-19546: PowerBiColumns description added (#19547)

This commit is contained in:
mloetscher 2025-01-29 09:33:25 +01:00 committed by GitHub
parent 9cf1d34f98
commit d142edceb7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

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

View File

@ -95,6 +95,7 @@ class PowerBiColumns(BaseModel):
name: str
dataType: Optional[str] = None
columnType: Optional[str] = None
description: Optional[str] = None
class PowerBiTable(BaseModel):