From ae0e55df6e2d62b8ca9857dee11b54fa7a8fc931 Mon Sep 17 00:00:00 2001 From: Snow Pettersen Date: Thu, 12 Feb 2026 10:59:50 -0600 Subject: [PATCH] make index in json path unsigned --- .../protobuf/value_matcher/v1/value_matcher.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitdrift_public/protobuf/value_matcher/v1/value_matcher.proto b/src/bitdrift_public/protobuf/value_matcher/v1/value_matcher.proto index f2276b5..dac2b87 100644 --- a/src/bitdrift_public/protobuf/value_matcher/v1/value_matcher.proto +++ b/src/bitdrift_public/protobuf/value_matcher/v1/value_matcher.proto @@ -69,7 +69,7 @@ message JsonPathValueMatch { option (validate.required) = true; string key = 1 [(validate.rules).string = {min_len: 1}]; - int32 index = 2; + uint32 index = 2; } }