diff --git a/protobuf/flagd/evaluation/v1/evaluation.proto b/protobuf/flagd/evaluation/v1/evaluation.proto index a142419..6b7c092 100644 --- a/protobuf/flagd/evaluation/v1/evaluation.proto +++ b/protobuf/flagd/evaluation/v1/evaluation.proto @@ -27,6 +27,9 @@ message ResolveAllRequest { message ResolveAllResponse { // Object structure describing the evaluated flags for the provided context. map flags = 1; + + // Metadata for the bulk evaluation + google.protobuf.Struct metadata = 2; } // A variant type flag response. @@ -45,7 +48,7 @@ message AnyFlag { google.protobuf.Struct object_value = 6; } - // Metadata about this flag, see https://openfeature.dev/specification/types/#flag-metadata + // Metadata for this evaluation google.protobuf.Struct metadata = 7; }