diff --git a/ydb/public/lib/validation/helpers.cpp b/ydb/public/lib/validation/helpers.cpp index c909e274d400..2f8103b5c9f2 100644 --- a/ydb/public/lib/validation/helpers.cpp +++ b/ydb/public/lib/validation/helpers.cpp @@ -4,6 +4,7 @@ #include #include #include +#include #include #include @@ -52,6 +53,9 @@ bool IsCustomMessage(const google::protobuf::Descriptor* message) { if (message->full_name() == google::protobuf::Empty::descriptor()->full_name()) { return false; } + if (message->full_name() == google::protobuf::Struct::descriptor()->full_name()) { + return false; + } if (message->full_name() == google::protobuf::Timestamp::descriptor()->full_name()) { return false; }