Expand description
A simple data taxonomy with universal data classes.
Data classes in this taxonomy are generic in nature and are useful in a few situations:
Insensitive
is used when data is specifically not classified.UnknownSensitivity
is used when data is sensitive, but the specific classification is unknown.Sensitive
is primarily intended for libraries to indicate particular data contains some form of sensitive information. General-purpose libraries are usually agnostic to the application’s specific data taxonomy, so if they need to classify data, they can use Sensitive as a general indication to the application that the data is sensitive.
Structs§
- Insensitive
- A classified data container for the
insensitive
class of thecommon
taxonomy. - Sensitive
- A classified data container for the
sensitive
class of thecommon
taxonomy. - Unknown
Sensitivity - A classified data container for the
unknown_sensitivity
class of thecommon
taxonomy.
Enums§
- Common
Taxonomy - A simple data taxonomy with universal data classes.