/** The data classification. */
export interface DataClassificationTag {
  /** The color of the data classification object. */
  color?: string;
  /** The description of the data classification object. */
  description?: string;
  /** The guideline of the data classification object. */
  guideline?: string;
  /** The ID of the data classification object. */
  id: string;
  /** The name of the data classification object. */
  name?: string;
  /** The rank of the data classification object. */
  rank?: number;
  /** The status of the data classification object. */
  status: string;
}
