1syntax = "proto3";
2
3package udpa.annotations;
4
5import "google/protobuf/descriptor.proto";
6
7extend google.protobuf.FieldOptions {
8  // Magic number is the 28 most significant bits in the sha256sum of "udpa.annotations.sensitive".
9  // When set to true, `sensitive` indicates that this field contains sensitive data, such as
10  // personally identifiable information, passwords, or private keys, and should be redacted for
11  // display by tools aware of this annotation. Note that that this has no effect on standard
12  // Protobuf functions such as `TextFormat::PrintToString`.
13  bool sensitive = 76569463;
14}
15