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