forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ingest): support knowledge links in business glossary (datahub-p…
…roject#6375) Co-authored-by: Shirshanka Das <[email protected]> Co-authored-by: MohdSiddique Bagwan <[email protected]> Co-authored-by: Harshal Sheth <[email protected]>
- Loading branch information
1 parent
8d6498f
commit a66390c
Showing
8 changed files
with
775 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
metadata-ingestion/tests/integration/business-glossary/business_glossary.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
version: 1 | ||
source: DataHub | ||
owners: | ||
users: | ||
- mjames | ||
url: "https://github.com/datahub-project/datahub/" | ||
nodes: | ||
- name: Classification | ||
description: A set of terms related to Data Classification | ||
knowledge_links: | ||
- label: Wiki link for classification | ||
url: "https://en.wikipedia.org/wiki/Classification" | ||
terms: | ||
- name: Sensitive | ||
description: Sensitive Data | ||
custom_properties: | ||
is_confidential: false | ||
knowledge_links: | ||
- label: Google Link | ||
url: "https://www.google.com" | ||
- name: Confidential | ||
description: Confidential Data | ||
custom_properties: | ||
is_confidential: true | ||
- name: Highly Confidential | ||
description: Highly Confidential Data | ||
custom_properties: | ||
is_confidential: true | ||
- name: Personal Information | ||
description: All terms related to personal information | ||
owners: | ||
users: | ||
- mjames | ||
terms: | ||
- name: Email | ||
description: An individual's email address | ||
inherits: | ||
- Classification.Confidential | ||
owners: | ||
groups: | ||
- Trust and Safety | ||
- name: Address | ||
description: A physical address | ||
- name: Gender | ||
description: The gender identity of the individual | ||
inherits: | ||
- Classification.Sensitive | ||
- name: Clients And Accounts | ||
description: Provides basic concepts such as account, account holder, account provider, relationship manager that are commonly used by financial services providers to describe customers and to determine counterparty identities | ||
owners: | ||
groups: | ||
- finance | ||
terms: | ||
- name: Account | ||
description: Container for records associated with a business arrangement for regular transactions and services | ||
term_source: "EXTERNAL" | ||
source_ref: FIBO | ||
source_url: "https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/ClientsAndAccounts/Account" | ||
inherits: | ||
- Classification.Highly Confidential | ||
contains: | ||
- Clients And Accounts.Balance | ||
- name: Balance | ||
description: Amount of money available or owed | ||
term_source: "EXTERNAL" | ||
source_ref: FIBO | ||
source_url: "https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/ClientsAndAccounts/Balance" | ||
- name: KPIs | ||
description: Common Business KPIs | ||
terms: | ||
- name: CSAT % | ||
description: Customer Satisfaction Score |
Oops, something went wrong.