Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active March 24, 2022 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garystafford/463118062df3a0219330cc0be84a3e76 to your computer and use it in GitHub Desktop.
Save garystafford/463118062df3a0219330cc0be84a3e76 to your computer and use it in GitHub Desktop.
# see sample: https://github.com/datahub-project/datahub/blob/master/metadata-ingestion/examples/bootstrap_data/business_glossary.yml
version: 1
source: DataHub
owners:
users:
- datahub
url: "https://github.com/datahub-project/datahub/"
nodes:
- name: Classification
description: A set of terms related to Data Classification
terms:
- name: Sensitive
description: Sensitive Data
custom_properties:
is_confidential: false
- name: Confidential
description: Confidential Data
custom_properties:
is_confidential: true
- name: HighlyConfidential
description: Highly Confidential Data
custom_properties:
is_confidential: true
- name: PersonalInformation
description: All terms related to personal information
owners:
users:
- datahub
terms:
- name: ID
description: An individual's unqiue identifier
inherits:
- Classification.Sensitive
- name: Name
description: An individual's Name
inherits:
- Classification.Sensitive
- name: SSN
description: An individual's SSN
inherits:
- Classification.Confidential
- name: DriverLicense
description: An individual's Driver License ID
inherits:
- Classification.Confidential
- name: Email
description: An individual's email address
inherits:
- Classification.Confidential
- name: Address
description: A physical address
- name: Gender
description: The gender identity of the individual
inherits:
- Classification.Sensitive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment