feat(models): Adding searchable for chart and dashboard url (#8002)

This commit is contained in:
John Joyce 2023-05-10 10:53:25 -07:00 committed by GitHub
parent d061d8782f
commit da528da19b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -39,6 +39,9 @@ record ChartInfo includes CustomProperties, ExternalReference {
/**
* URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart
*/
@Searchable = {
"fieldType": "KEYWORD"
}
chartUrl: optional Url
/**

View File

@ -107,6 +107,9 @@ record DashboardInfo includes CustomProperties, ExternalReference {
/**
* URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard
*/
@Searchable = {
"fieldType": "KEYWORD"
}
dashboardUrl: optional Url
/**