security
Glossary ↗Data Classification
Data classification is the practice of sorting information into a small number of tiers according to the harm that would follow from its exposure, and then attaching rules to those tiers rather than to individual files. Most schemes settle on something like public, internal, confidential and restricted. The exact labels matter less than the principle behind them: the tier reflects consequence, not the department the data came from or how important someone feels it is. The classification only earns its keep when it drives enforcement. Labels should determine who can open a record, how long it is kept, whether it may be copied outside the environment, whether it must be encrypted at rest with keys the customer controls, and which regions it may live in. A scheme that produces a document and no configuration change is an exercise, and it will drift out of date without anyone noticing, because nothing breaks when it does. AI made classification more load-bearing than it used to be. Any statement of the form restricted data never goes to an external model is only checkable if restricted is a property that exists on the data. Without classification, the control degrades into asking staff to use judgement about what they paste into a prompt, which is a control in name only. With it, the same rule can be enforced at the point where data leaves — in the retrieval layer, the connector, or the gateway in front of the model. Retrieval is where this most often breaks in practice. An index built by crawling everything a service account can see inherits that account's access, not the reader's, and a system that answers well is a system that will answer with whatever it indexed. Classification labels have to travel with the chunk into the index and be applied as a filter at query time, otherwise the search layer becomes a route around every permission the source system enforces. The common failure modes are predictable. Too many tiers, so nobody can recall the difference between the middle two and everything lands in the safest-sounding one. Classification performed once at creation and never revisited, so aggregation quietly raises sensitivity while the label stays put. Labels applied to systems instead of records, which is easier and wrong the moment one system holds several kinds of data. And automated classifiers, which are genuinely useful for scale but produce a confident-looking coverage number that conceals the categories they were never tuned to find. A workable scheme is small, has one obvious default, has an owner per tier who can approve exceptions, and gets reviewed when the data landscape changes rather than on a calendar. Fewer tiers that are actually applied beat a detailed taxonomy that lives in a policy document.
Related terms