From a876f2b8f6fe350247c94095d543772224cec8e9 Mon Sep 17 00:00:00 2001 From: Chris Roche Date: Wed, 8 May 2024 13:07:08 -0700 Subject: [PATCH] JSON Schema: Ignore fields via comment (#14) * JSON Schema: Ignore fields via comment * checkpoint * checkpoint --- Makefile | 4 +- .../cmd/jsonschema-generate-testdata/main.go | 6 +- internal/cmd/pubsub-generate-testdata/main.go | 6 +- .../buf/protoschema/test/v1/test_cases.pb.go | 130 ++++++++++++++---- .../conformance/proto3/test_all_types.pb.go | 2 +- .../buf/protoschema/test/v1/test_cases.proto | 7 + internal/protoschema/golden/golden.go | 45 ++++-- internal/protoschema/jsonschema/jsonschema.go | 10 ++ .../protoschema/jsonschema/jsonschema_test.go | 4 +- internal/protoschema/pubsub/pubsub_test.go | 4 +- internal/testdata/codegenrequest/input.json | 2 +- ...rotoschema.test.v1.IgnoreField.schema.json | 12 ++ ...ance.proto3.NestedTestAllTypes.schema.json | 1 + ...to3.TestAllTypes.NestedMessage.schema.json | 1 + ...onformance.proto3.TestAllTypes.schema.json | 9 +- .../google.protobuf.BoolValue.schema.json | 1 + .../google.protobuf.BytesValue.schema.json | 1 + .../google.protobuf.DoubleValue.schema.json | 1 + .../google.protobuf.FloatValue.schema.json | 1 + .../google.protobuf.Int32Value.schema.json | 1 + .../google.protobuf.Int64Value.schema.json | 1 + .../google.protobuf.StringValue.schema.json | 1 + .../google.protobuf.UInt32Value.schema.json | 1 + .../google.protobuf.UInt64Value.schema.json | 1 + ...otoschema.test.v1.IgnoreField.pubsub.proto | 6 + 25 files changed, 218 insertions(+), 40 deletions(-) create mode 100644 internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json create mode 100644 internal/testdata/pubsub/buf.protoschema.test.v1.IgnoreField.pubsub.proto diff --git a/Makefile b/Makefile index a51f4e3..6f64f20 100644 --- a/Makefile +++ b/Makefile @@ -35,9 +35,9 @@ test: build $(BIN)/jv ## Run unit tests golden: generate rm -rf internal/testdata/pubsub rm -rf internal/testdata/jsonschema + buf build ./internal/proto -o -#format=json > ./internal/testdata/codegenrequest/input.json go run internal/cmd/pubsub-generate-testdata/main.go internal/testdata/pubsub go run internal/cmd/jsonschema-generate-testdata/main.go internal/testdata/jsonschema - buf build ./internal/proto --exclude-source-info -o -#format=json > ./internal/testdata/codegenrequest/input.json .PHONY: build build: generate ## Build all packages @@ -89,7 +89,7 @@ $(BIN)/license-header: $(BIN) Makefile go install github.com/bufbuild/buf/private/pkg/licenseheader/cmd/license-header@latest $(BIN)/golangci-lint: $(BIN) Makefile - go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest + go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.57.1 $(BIN)/jv: $(BIN) Makefile go install github.com/santhosh-tekuri/jsonschema/cmd/jv@latest diff --git a/internal/cmd/jsonschema-generate-testdata/main.go b/internal/cmd/jsonschema-generate-testdata/main.go index d009dee..6f4e99f 100644 --- a/internal/cmd/jsonschema-generate-testdata/main.go +++ b/internal/cmd/jsonschema-generate-testdata/main.go @@ -41,7 +41,11 @@ func run() error { } outputDir := os.Args[1] - for _, testDesc := range golden.GetTestDescriptors() { + testDescs, err := golden.GetTestDescriptors("./internal/testdata") + if err != nil { + return err + } + for _, testDesc := range testDescs { // Generate the JSON schema result := jsonschema.Generate(testDesc) diff --git a/internal/cmd/pubsub-generate-testdata/main.go b/internal/cmd/pubsub-generate-testdata/main.go index 92fb979..1b68f05 100644 --- a/internal/cmd/pubsub-generate-testdata/main.go +++ b/internal/cmd/pubsub-generate-testdata/main.go @@ -51,7 +51,11 @@ func run() error { } // Generate the testdata - for _, testDesc := range golden.GetTestDescriptors() { + testDescs, err := golden.GetTestDescriptors("./internal/testdata") + if err != nil { + return err + } + for _, testDesc := range testDescs { filePath := filepath.Join(dirPath, fmt.Sprintf("%s.%s", testDesc.FullName(), pubsub.FileExtension)) data, err := pubsub.Generate(testDesc) if err != nil { diff --git a/internal/gen/proto/buf/protoschema/test/v1/test_cases.pb.go b/internal/gen/proto/buf/protoschema/test/v1/test_cases.pb.go index f4d196e..2f9cbb4 100644 --- a/internal/gen/proto/buf/protoschema/test/v1/test_cases.pb.go +++ b/internal/gen/proto/buf/protoschema/test/v1/test_cases.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.33.0 +// protoc-gen-go v1.34.1 // protoc (unknown) // source: buf/protoschema/test/v1/test_cases.proto @@ -158,6 +158,70 @@ type CustomOptions_StringField struct { func (*CustomOptions_StringField) isCustomOptions_Kind() {} +type IgnoreField struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + StringField string `protobuf:"bytes,1,opt,name=string_field,json=stringField,proto3" json:"string_field,omitempty"` // jsonschema:ignore + // jsonschema:ignore + Int32Field int32 `protobuf:"varint,2,opt,name=int32_field,json=int32Field,proto3" json:"int32_field,omitempty"` + BoolField bool `protobuf:"varint,3,opt,name=bool_field,json=boolField,proto3" json:"bool_field,omitempty"` +} + +func (x *IgnoreField) Reset() { + *x = IgnoreField{} + if protoimpl.UnsafeEnabled { + mi := &file_buf_protoschema_test_v1_test_cases_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *IgnoreField) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*IgnoreField) ProtoMessage() {} + +func (x *IgnoreField) ProtoReflect() protoreflect.Message { + mi := &file_buf_protoschema_test_v1_test_cases_proto_msgTypes[2] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use IgnoreField.ProtoReflect.Descriptor instead. +func (*IgnoreField) Descriptor() ([]byte, []int) { + return file_buf_protoschema_test_v1_test_cases_proto_rawDescGZIP(), []int{2} +} + +func (x *IgnoreField) GetStringField() string { + if x != nil { + return x.StringField + } + return "" +} + +func (x *IgnoreField) GetInt32Field() int32 { + if x != nil { + return x.Int32Field + } + return 0 +} + +func (x *IgnoreField) GetBoolField() bool { + if x != nil { + return x.BoolField + } + return false +} + var File_buf_protoschema_test_v1_test_cases_proto protoreflect.FileDescriptor var file_buf_protoschema_test_v1_test_cases_proto_rawDesc = []byte{ @@ -193,24 +257,31 @@ var file_buf_protoschema_test_v1_test_cases_proto_rawDesc = []byte{ 0x28, 0x0a, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x12, 0x0c, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x74, 0x72, 0x75, 0x65, 0x1a, 0x06, 0x31, 0x20, 0x3d, 0x3d, 0x20, 0x31, 0x10, 0x01, 0x42, 0x0d, 0x0a, 0x04, 0x6b, - 0x69, 0x6e, 0x64, 0x12, 0x05, 0xba, 0x48, 0x02, 0x08, 0x01, 0x42, 0x87, 0x02, 0x0a, 0x1b, 0x63, - 0x6f, 0x6d, 0x2e, 0x62, 0x75, 0x66, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, - 0x6d, 0x61, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x76, 0x31, 0x42, 0x0e, 0x54, 0x65, 0x73, 0x74, - 0x43, 0x61, 0x73, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x59, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x62, 0x75, 0x66, 0x62, 0x75, 0x69, 0x6c, - 0x64, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2d, 0x70, 0x6c, - 0x75, 0x67, 0x69, 0x6e, 0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x67, - 0x65, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x62, 0x75, 0x66, 0x2f, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x76, 0x31, - 0x3b, 0x74, 0x65, 0x73, 0x74, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x42, 0x50, 0x54, 0xaa, 0x02, 0x17, - 0x42, 0x75, 0x66, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, - 0x54, 0x65, 0x73, 0x74, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x17, 0x42, 0x75, 0x66, 0x5c, 0x50, 0x72, - 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5c, 0x54, 0x65, 0x73, 0x74, 0x5c, 0x56, - 0x31, 0xe2, 0x02, 0x23, 0x42, 0x75, 0x66, 0x5c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, - 0x65, 0x6d, 0x61, 0x5c, 0x54, 0x65, 0x73, 0x74, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x1a, 0x42, 0x75, 0x66, 0x3a, 0x3a, 0x50, - 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x3a, 0x3a, 0x54, 0x65, 0x73, 0x74, - 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x69, 0x6e, 0x64, 0x12, 0x05, 0xba, 0x48, 0x02, 0x08, 0x01, 0x22, 0x70, 0x0a, 0x0b, 0x49, 0x67, + 0x6e, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x74, 0x72, + 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0b, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x1f, 0x0a, 0x0b, + 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0a, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x1d, 0x0a, + 0x0a, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x09, 0x62, 0x6f, 0x6f, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x87, 0x02, 0x0a, + 0x1b, 0x63, 0x6f, 0x6d, 0x2e, 0x62, 0x75, 0x66, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, + 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x76, 0x31, 0x42, 0x0e, 0x54, 0x65, + 0x73, 0x74, 0x43, 0x61, 0x73, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x59, + 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x62, 0x75, 0x66, 0x62, 0x75, + 0x69, 0x6c, 0x64, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2d, + 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x62, 0x75, 0x66, 0x2f, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2f, + 0x76, 0x31, 0x3b, 0x74, 0x65, 0x73, 0x74, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x42, 0x50, 0x54, 0xaa, + 0x02, 0x17, 0x42, 0x75, 0x66, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, + 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x17, 0x42, 0x75, 0x66, 0x5c, + 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5c, 0x54, 0x65, 0x73, 0x74, + 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x23, 0x42, 0x75, 0x66, 0x5c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, + 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5c, 0x54, 0x65, 0x73, 0x74, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, + 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x1a, 0x42, 0x75, 0x66, 0x3a, + 0x3a, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x3a, 0x3a, 0x54, 0x65, + 0x73, 0x74, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -225,14 +296,15 @@ func file_buf_protoschema_test_v1_test_cases_proto_rawDescGZIP() []byte { return file_buf_protoschema_test_v1_test_cases_proto_rawDescData } -var file_buf_protoschema_test_v1_test_cases_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_buf_protoschema_test_v1_test_cases_proto_msgTypes = make([]protoimpl.MessageInfo, 3) var file_buf_protoschema_test_v1_test_cases_proto_goTypes = []interface{}{ (*NestedReference)(nil), // 0: buf.protoschema.test.v1.NestedReference (*CustomOptions)(nil), // 1: buf.protoschema.test.v1.CustomOptions - (*proto3.TestAllTypes_NestedMessage)(nil), // 2: bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage + (*IgnoreField)(nil), // 2: buf.protoschema.test.v1.IgnoreField + (*proto3.TestAllTypes_NestedMessage)(nil), // 3: bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage } var file_buf_protoschema_test_v1_test_cases_proto_depIdxs = []int32{ - 2, // 0: buf.protoschema.test.v1.NestedReference.nested_message:type_name -> bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage + 3, // 0: buf.protoschema.test.v1.NestedReference.nested_message:type_name -> bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage 1, // [1:1] is the sub-list for method output_type 1, // [1:1] is the sub-list for method input_type 1, // [1:1] is the sub-list for extension type_name @@ -270,6 +342,18 @@ func file_buf_protoschema_test_v1_test_cases_proto_init() { return nil } } + file_buf_protoschema_test_v1_test_cases_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*IgnoreField); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } } file_buf_protoschema_test_v1_test_cases_proto_msgTypes[1].OneofWrappers = []interface{}{ (*CustomOptions_StringField)(nil), @@ -280,7 +364,7 @@ func file_buf_protoschema_test_v1_test_cases_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_buf_protoschema_test_v1_test_cases_proto_rawDesc, NumEnums: 0, - NumMessages: 2, + NumMessages: 3, NumExtensions: 0, NumServices: 0, }, diff --git a/internal/gen/proto/bufext/cel/expr/conformance/proto3/test_all_types.pb.go b/internal/gen/proto/bufext/cel/expr/conformance/proto3/test_all_types.pb.go index ba79870..e0cbbdd 100644 --- a/internal/gen/proto/bufext/cel/expr/conformance/proto3/test_all_types.pb.go +++ b/internal/gen/proto/bufext/cel/expr/conformance/proto3/test_all_types.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.33.0 +// protoc-gen-go v1.34.1 // protoc (unknown) // source: bufext/cel/expr/conformance/proto3/test_all_types.proto diff --git a/internal/proto/buf/protoschema/test/v1/test_cases.proto b/internal/proto/buf/protoschema/test/v1/test_cases.proto index 6152efe..66b21ad 100644 --- a/internal/proto/buf/protoschema/test/v1/test_cases.proto +++ b/internal/proto/buf/protoschema/test/v1/test_cases.proto @@ -49,3 +49,10 @@ message CustomOptions { }]; } } + +message IgnoreField { + string string_field = 1; // jsonschema:ignore + // jsonschema:ignore + int32 int32_field = 2; + bool bool_field = 3; +} diff --git a/internal/protoschema/golden/golden.go b/internal/protoschema/golden/golden.go index f06e53b..df87e28 100644 --- a/internal/protoschema/golden/golden.go +++ b/internal/protoschema/golden/golden.go @@ -18,21 +18,50 @@ import ( "fmt" "io" "os" + "path/filepath" - testv1 "github.com/bufbuild/protoschema-plugins/internal/gen/proto/buf/protoschema/test/v1" - "github.com/bufbuild/protoschema-plugins/internal/gen/proto/bufext/cel/expr/conformance/proto3" + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/reflect/protodesc" "google.golang.org/protobuf/reflect/protoreflect" + "google.golang.org/protobuf/types/descriptorpb" + "google.golang.org/protobuf/types/dynamicpb" ) // GetTestDescriptors returns the test descriptors that were generated from the ./internal/proto // directory. -func GetTestDescriptors() []protoreflect.MessageDescriptor { - return []protoreflect.MessageDescriptor{ - (&proto3.TestAllTypes{}).ProtoReflect().Descriptor(), - (&proto3.NestedTestAllTypes{}).ProtoReflect().Descriptor(), - (&testv1.NestedReference{}).ProtoReflect().Descriptor(), - (&testv1.CustomOptions{}).ProtoReflect().Descriptor(), +func GetTestDescriptors(testdataPath string) ([]protoreflect.MessageDescriptor, error) { + inputPath := filepath.Join(filepath.FromSlash(testdataPath), "codegenrequest", "input.json") + input, err := os.ReadFile(inputPath) + if err != nil { + return nil, fmt.Errorf("failed to open input file descritpor set at %q: %w", inputPath, err) + } + fdset := &descriptorpb.FileDescriptorSet{} + if err = (&protojson.UnmarshalOptions{DiscardUnknown: true}).Unmarshal(input, fdset); err != nil { + return nil, fmt.Errorf("failed to parse file descriptor set at %q: %w", inputPath, err) + } + files, err := protodesc.NewFiles(fdset) + if err != nil { + return nil, fmt.Errorf("failed to link file descriptor set at %q: %w", inputPath, err) + } + types := dynamicpb.NewTypes(files) + + fqns := []protoreflect.FullName{ + "bufext.cel.expr.conformance.proto3.TestAllTypes", + "bufext.cel.expr.conformance.proto3.NestedTestAllTypes", + "buf.protoschema.test.v1.NestedReference", + "buf.protoschema.test.v1.CustomOptions", + "buf.protoschema.test.v1.IgnoreField", + } + + msgs := make([]protoreflect.MessageDescriptor, len(fqns)) + for i, fqn := range fqns { + mType, err := types.FindMessageByName(fqn) + if err != nil { + return nil, fmt.Errorf("failed to find message %q: %w", fqn, err) + } + msgs[i] = mType.Descriptor() } + return msgs, nil } // CheckGolden checks the golden file exists and matches the given data. diff --git a/internal/protoschema/jsonschema/jsonschema.go b/internal/protoschema/jsonschema/jsonschema.go index f86081f..08022a6 100644 --- a/internal/protoschema/jsonschema/jsonschema.go +++ b/internal/protoschema/jsonschema/jsonschema.go @@ -74,6 +74,9 @@ func (p *jsonSchemaGenerator) generateDefault(result map[string]interface{}, des var properties = make(map[string]interface{}) for i := range desc.Fields().Len() { field := desc.Fields().Get(i) + if p.shouldIgnoreField(field) { + continue + } name := string(field.Name()) properties[name] = p.generateField(field) } @@ -262,3 +265,10 @@ func (p *jsonSchemaGenerator) makeWktGenerators() map[protoreflect.FullName]func result["google.protobuf.UInt64Value"] = p.generateWrapperValidation return result } + +func (p *jsonSchemaGenerator) shouldIgnoreField(fdesc protoreflect.FieldDescriptor) bool { + const ignoreComment = "jsonschema:ignore" + srcLoc := fdesc.ParentFile().SourceLocations().ByDescriptor(fdesc) + return strings.Contains(srcLoc.LeadingComments, ignoreComment) || + strings.Contains(srcLoc.TrailingComments, ignoreComment) +} diff --git a/internal/protoschema/jsonschema/jsonschema_test.go b/internal/protoschema/jsonschema/jsonschema_test.go index cf81f49..c0bff92 100644 --- a/internal/protoschema/jsonschema/jsonschema_test.go +++ b/internal/protoschema/jsonschema/jsonschema_test.go @@ -26,7 +26,9 @@ import ( func TestJSONSchemaGolden(t *testing.T) { t.Parallel() dirPath := filepath.FromSlash("../../testdata/jsonschema") - for _, testDesc := range golden.GetTestDescriptors() { + testDescs, err := golden.GetTestDescriptors("../../testdata") + require.NoError(t, err) + for _, testDesc := range testDescs { for _, entry := range Generate(testDesc) { // Serialize the JSON data, err := json.MarshalIndent(entry, "", " ") diff --git a/internal/protoschema/pubsub/pubsub_test.go b/internal/protoschema/pubsub/pubsub_test.go index 306d52b..fba1ac8 100644 --- a/internal/protoschema/pubsub/pubsub_test.go +++ b/internal/protoschema/pubsub/pubsub_test.go @@ -26,7 +26,9 @@ import ( func TestPubSubGolden(t *testing.T) { t.Parallel() dirPath := filepath.FromSlash("../../testdata/pubsub") - for _, testDesc := range golden.GetTestDescriptors() { + testDescs, err := golden.GetTestDescriptors("../../testdata") + require.NoError(t, err) + for _, testDesc := range testDescs { filePath := filepath.Join(dirPath, string(testDesc.FullName())) data, err := Generate(testDesc) require.NoError(t, err) diff --git a/internal/testdata/codegenrequest/input.json b/internal/testdata/codegenrequest/input.json index bae6353..eb52669 100644 --- a/internal/testdata/codegenrequest/input.json +++ b/internal/testdata/codegenrequest/input.json @@ -1 +1 @@ -{"file":[{"name":"buf/validate/expression.proto","package":"buf.validate","messageType":[{"name":"Constraint","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"message","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"},{"name":"expression","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expression"}]},{"name":"Violations","field":[{"name":"violations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.Violation","jsonName":"violations"}]},{"name":"Violation","field":[{"name":"field_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fieldPath"},{"name":"constraint_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"constraintId"},{"name":"message","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"},{"name":"for_key","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"forKey"}]}],"options":{"javaPackage":"build.buf.validate","javaOuterClassname":"ExpressionProto","javaMultipleFiles":true,"goPackage":"buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate"},"syntax":"proto3","bufExtension":{"isImport":true,"moduleInfo":{"name":{"remote":"buf.build","owner":"bufbuild","repository":"protovalidate"},"commit":"b983156c5e994cc9892e0ce3e64e17e0"},"isSyntaxUnspecified":false}},{"name":"google/protobuf/descriptor.proto","package":"google.protobuf","messageType":[{"name":"FileDescriptorSet","field":[{"name":"file","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FileDescriptorProto","jsonName":"file"}]},{"name":"FileDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"package","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"package"},{"name":"dependency","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dependency"},{"name":"public_dependency","number":10,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"publicDependency"},{"name":"weak_dependency","number":11,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"weakDependency"},{"name":"message_type","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto","jsonName":"messageType"},{"name":"enum_type","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumDescriptorProto","jsonName":"enumType"},{"name":"service","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.ServiceDescriptorProto","jsonName":"service"},{"name":"extension","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldDescriptorProto","jsonName":"extension"},{"name":"options","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FileOptions","jsonName":"options"},{"name":"source_code_info","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.SourceCodeInfo","jsonName":"sourceCodeInfo"},{"name":"syntax","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syntax"},{"name":"edition","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"edition"}]},{"name":"DescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"field","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldDescriptorProto","jsonName":"field"},{"name":"extension","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldDescriptorProto","jsonName":"extension"},{"name":"nested_type","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto","jsonName":"nestedType"},{"name":"enum_type","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumDescriptorProto","jsonName":"enumType"},{"name":"extension_range","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto.ExtensionRange","jsonName":"extensionRange"},{"name":"oneof_decl","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.OneofDescriptorProto","jsonName":"oneofDecl"},{"name":"options","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.MessageOptions","jsonName":"options"},{"name":"reserved_range","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto.ReservedRange","jsonName":"reservedRange"},{"name":"reserved_name","number":10,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"reservedName"}],"nestedType":[{"name":"ExtensionRange","field":[{"name":"start","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"start"},{"name":"end","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ExtensionRangeOptions","jsonName":"options"}]},{"name":"ReservedRange","field":[{"name":"start","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"start"},{"name":"end","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"}]}]},{"name":"ExtensionRangeOptions","field":[{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"},{"name":"declaration","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.ExtensionRangeOptions.Declaration","jsonName":"declaration","options":{"retention":"RETENTION_SOURCE"}},{"name":"features","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"verification","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.ExtensionRangeOptions.VerificationState","defaultValue":"UNVERIFIED","jsonName":"verification"}],"nestedType":[{"name":"Declaration","field":[{"name":"number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"full_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fullName"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"reserved","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"reserved"},{"name":"repeated","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"repeated"}],"reservedRange":[{"start":4,"end":5}]}],"enumType":[{"name":"VerificationState","value":[{"name":"DECLARATION","number":0},{"name":"UNVERIFIED","number":1}]}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"FieldDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"label","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldDescriptorProto.Label","jsonName":"label"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldDescriptorProto.Type","jsonName":"type"},{"name":"type_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"extendee","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"extendee"},{"name":"default_value","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"defaultValue"},{"name":"oneof_index","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"oneofIndex"},{"name":"json_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"jsonName"},{"name":"options","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldOptions","jsonName":"options"},{"name":"proto3_optional","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"proto3Optional"}],"enumType":[{"name":"Type","value":[{"name":"TYPE_DOUBLE","number":1},{"name":"TYPE_FLOAT","number":2},{"name":"TYPE_INT64","number":3},{"name":"TYPE_UINT64","number":4},{"name":"TYPE_INT32","number":5},{"name":"TYPE_FIXED64","number":6},{"name":"TYPE_FIXED32","number":7},{"name":"TYPE_BOOL","number":8},{"name":"TYPE_STRING","number":9},{"name":"TYPE_GROUP","number":10},{"name":"TYPE_MESSAGE","number":11},{"name":"TYPE_BYTES","number":12},{"name":"TYPE_UINT32","number":13},{"name":"TYPE_ENUM","number":14},{"name":"TYPE_SFIXED32","number":15},{"name":"TYPE_SFIXED64","number":16},{"name":"TYPE_SINT32","number":17},{"name":"TYPE_SINT64","number":18}]},{"name":"Label","value":[{"name":"LABEL_OPTIONAL","number":1},{"name":"LABEL_REPEATED","number":3},{"name":"LABEL_REQUIRED","number":2}]}]},{"name":"OneofDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"options","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.OneofOptions","jsonName":"options"}]},{"name":"EnumDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"value","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumValueDescriptorProto","jsonName":"value"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumOptions","jsonName":"options"},{"name":"reserved_range","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumDescriptorProto.EnumReservedRange","jsonName":"reservedRange"},{"name":"reserved_name","number":5,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"reservedName"}],"nestedType":[{"name":"EnumReservedRange","field":[{"name":"start","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"start"},{"name":"end","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"}]}]},{"name":"EnumValueDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumValueOptions","jsonName":"options"}]},{"name":"ServiceDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"method","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.MethodDescriptorProto","jsonName":"method"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ServiceOptions","jsonName":"options"}]},{"name":"MethodDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"input_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"inputType"},{"name":"output_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"outputType"},{"name":"options","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.MethodOptions","jsonName":"options"},{"name":"client_streaming","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"clientStreaming"},{"name":"server_streaming","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"serverStreaming"}]},{"name":"FileOptions","field":[{"name":"java_package","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"javaPackage"},{"name":"java_outer_classname","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"javaOuterClassname"},{"name":"java_multiple_files","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"javaMultipleFiles"},{"name":"java_generate_equals_and_hash","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"javaGenerateEqualsAndHash","options":{"deprecated":true}},{"name":"java_string_check_utf8","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"javaStringCheckUtf8"},{"name":"optimize_for","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FileOptions.OptimizeMode","defaultValue":"SPEED","jsonName":"optimizeFor"},{"name":"go_package","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"goPackage"},{"name":"cc_generic_services","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"ccGenericServices"},{"name":"java_generic_services","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"javaGenericServices"},{"name":"py_generic_services","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"pyGenericServices"},{"name":"php_generic_services","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"phpGenericServices"},{"name":"deprecated","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"cc_enable_arenas","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"true","jsonName":"ccEnableArenas"},{"name":"objc_class_prefix","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"objcClassPrefix"},{"name":"csharp_namespace","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"csharpNamespace"},{"name":"swift_prefix","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swiftPrefix"},{"name":"php_class_prefix","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"phpClassPrefix"},{"name":"php_namespace","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"phpNamespace"},{"name":"php_metadata_namespace","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"phpMetadataNamespace"},{"name":"ruby_package","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rubyPackage"},{"name":"features","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"enumType":[{"name":"OptimizeMode","value":[{"name":"SPEED","number":1},{"name":"CODE_SIZE","number":2},{"name":"LITE_RUNTIME","number":3}]}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":38,"end":39}]},{"name":"MessageOptions","field":[{"name":"message_set_wire_format","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"messageSetWireFormat"},{"name":"no_standard_descriptor_accessor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"noStandardDescriptorAccessor"},{"name":"deprecated","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"map_entry","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mapEntry"},{"name":"deprecated_legacy_json_field_conflicts","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"deprecatedLegacyJsonFieldConflicts","options":{"deprecated":true}},{"name":"features","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":4,"end":5},{"start":5,"end":6},{"start":6,"end":7},{"start":8,"end":9},{"start":9,"end":10}]},{"name":"FieldOptions","field":[{"name":"ctype","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.CType","defaultValue":"STRING","jsonName":"ctype"},{"name":"packed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"packed"},{"name":"jstype","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.JSType","defaultValue":"JS_NORMAL","jsonName":"jstype"},{"name":"lazy","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"lazy"},{"name":"unverified_lazy","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"unverifiedLazy"},{"name":"deprecated","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"weak","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"weak"},{"name":"debug_redact","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"debugRedact"},{"name":"retention","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.OptionRetention","jsonName":"retention"},{"name":"targets","number":19,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.OptionTargetType","jsonName":"targets"},{"name":"edition_defaults","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldOptions.EditionDefault","jsonName":"editionDefaults"},{"name":"features","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"nestedType":[{"name":"EditionDefault","field":[{"name":"edition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"edition"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]}],"enumType":[{"name":"CType","value":[{"name":"STRING","number":0},{"name":"CORD","number":1},{"name":"STRING_PIECE","number":2}]},{"name":"JSType","value":[{"name":"JS_NORMAL","number":0},{"name":"JS_STRING","number":1},{"name":"JS_NUMBER","number":2}]},{"name":"OptionRetention","value":[{"name":"RETENTION_UNKNOWN","number":0},{"name":"RETENTION_RUNTIME","number":1},{"name":"RETENTION_SOURCE","number":2}]},{"name":"OptionTargetType","value":[{"name":"TARGET_TYPE_UNKNOWN","number":0},{"name":"TARGET_TYPE_FILE","number":1},{"name":"TARGET_TYPE_EXTENSION_RANGE","number":2},{"name":"TARGET_TYPE_MESSAGE","number":3},{"name":"TARGET_TYPE_FIELD","number":4},{"name":"TARGET_TYPE_ONEOF","number":5},{"name":"TARGET_TYPE_ENUM","number":6},{"name":"TARGET_TYPE_ENUM_ENTRY","number":7},{"name":"TARGET_TYPE_SERVICE","number":8},{"name":"TARGET_TYPE_METHOD","number":9}]}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":4,"end":5},{"start":18,"end":19}]},{"name":"OneofOptions","field":[{"name":"features","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"EnumOptions","field":[{"name":"allow_alias","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"allowAlias"},{"name":"deprecated","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"deprecated_legacy_json_field_conflicts","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"deprecatedLegacyJsonFieldConflicts","options":{"deprecated":true}},{"name":"features","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":5,"end":6}]},{"name":"EnumValueOptions","field":[{"name":"deprecated","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"features","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"debug_redact","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"debugRedact"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"ServiceOptions","field":[{"name":"features","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"deprecated","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"MethodOptions","field":[{"name":"deprecated","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"idempotency_level","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.MethodOptions.IdempotencyLevel","defaultValue":"IDEMPOTENCY_UNKNOWN","jsonName":"idempotencyLevel"},{"name":"features","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"enumType":[{"name":"IdempotencyLevel","value":[{"name":"IDEMPOTENCY_UNKNOWN","number":0},{"name":"NO_SIDE_EFFECTS","number":1},{"name":"IDEMPOTENT","number":2}]}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"UninterpretedOption","field":[{"name":"name","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption.NamePart","jsonName":"name"},{"name":"identifier_value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"identifierValue"},{"name":"positive_int_value","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"positiveIntValue"},{"name":"negative_int_value","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"negativeIntValue"},{"name":"double_value","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"doubleValue"},{"name":"string_value","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"stringValue"},{"name":"aggregate_value","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"aggregateValue"}],"nestedType":[{"name":"NamePart","field":[{"name":"name_part","number":1,"label":"LABEL_REQUIRED","type":"TYPE_STRING","jsonName":"namePart"},{"name":"is_extension","number":2,"label":"LABEL_REQUIRED","type":"TYPE_BOOL","jsonName":"isExtension"}]}]},{"name":"FeatureSet","field":[{"name":"field_presence","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.FieldPresence","jsonName":"fieldPresence","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"EXPLICIT"},{"edition":"EDITION_PROTO3","value":"IMPLICIT"},{"edition":"EDITION_2023","value":"EXPLICIT"}]}},{"name":"enum_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.EnumType","jsonName":"enumType","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_ENUM","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"CLOSED"},{"edition":"EDITION_PROTO3","value":"OPEN"}]}},{"name":"repeated_field_encoding","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.RepeatedFieldEncoding","jsonName":"repeatedFieldEncoding","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"EXPANDED"},{"edition":"EDITION_PROTO3","value":"PACKED"}]}},{"name":"utf8_validation","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.Utf8Validation","jsonName":"utf8Validation","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"NONE"},{"edition":"EDITION_PROTO3","value":"VERIFY"}]}},{"name":"message_encoding","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.MessageEncoding","jsonName":"messageEncoding","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"LENGTH_PREFIXED"}]}},{"name":"json_format","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.JsonFormat","jsonName":"jsonFormat","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_MESSAGE","TARGET_TYPE_ENUM","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"LEGACY_BEST_EFFORT"},{"edition":"EDITION_PROTO3","value":"ALLOW"}]}}],"enumType":[{"name":"FieldPresence","value":[{"name":"FIELD_PRESENCE_UNKNOWN","number":0},{"name":"EXPLICIT","number":1},{"name":"IMPLICIT","number":2},{"name":"LEGACY_REQUIRED","number":3}]},{"name":"EnumType","value":[{"name":"ENUM_TYPE_UNKNOWN","number":0},{"name":"OPEN","number":1},{"name":"CLOSED","number":2}]},{"name":"RepeatedFieldEncoding","value":[{"name":"REPEATED_FIELD_ENCODING_UNKNOWN","number":0},{"name":"PACKED","number":1},{"name":"EXPANDED","number":2}]},{"name":"Utf8Validation","value":[{"name":"UTF8_VALIDATION_UNKNOWN","number":0},{"name":"NONE","number":1},{"name":"VERIFY","number":2}]},{"name":"MessageEncoding","value":[{"name":"MESSAGE_ENCODING_UNKNOWN","number":0},{"name":"LENGTH_PREFIXED","number":1},{"name":"DELIMITED","number":2}]},{"name":"JsonFormat","value":[{"name":"JSON_FORMAT_UNKNOWN","number":0},{"name":"ALLOW","number":1},{"name":"LEGACY_BEST_EFFORT","number":2}]}],"extensionRange":[{"start":1000,"end":1001},{"start":1001,"end":1002},{"start":9995,"end":10000}],"reservedRange":[{"start":999,"end":1000}]},{"name":"FeatureSetDefaults","field":[{"name":"defaults","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault","jsonName":"defaults"},{"name":"minimum_edition","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"minimumEdition"},{"name":"maximum_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"maximumEdition"}],"nestedType":[{"name":"FeatureSetEditionDefault","field":[{"name":"edition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"edition"},{"name":"features","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"}]}]},{"name":"SourceCodeInfo","field":[{"name":"location","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.SourceCodeInfo.Location","jsonName":"location"}],"nestedType":[{"name":"Location","field":[{"name":"path","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"path","options":{"packed":true}},{"name":"span","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"span","options":{"packed":true}},{"name":"leading_comments","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"leadingComments"},{"name":"trailing_comments","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trailingComments"},{"name":"leading_detached_comments","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"leadingDetachedComments"}]}]},{"name":"GeneratedCodeInfo","field":[{"name":"annotation","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.GeneratedCodeInfo.Annotation","jsonName":"annotation"}],"nestedType":[{"name":"Annotation","field":[{"name":"path","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"path","options":{"packed":true}},{"name":"source_file","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceFile"},{"name":"begin","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"begin"},{"name":"end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"},{"name":"semantic","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.GeneratedCodeInfo.Annotation.Semantic","jsonName":"semantic"}],"enumType":[{"name":"Semantic","value":[{"name":"NONE","number":0},{"name":"SET","number":1},{"name":"ALIAS","number":2}]}]}]}],"enumType":[{"name":"Edition","value":[{"name":"EDITION_UNKNOWN","number":0},{"name":"EDITION_PROTO2","number":998},{"name":"EDITION_PROTO3","number":999},{"name":"EDITION_2023","number":1000},{"name":"EDITION_1_TEST_ONLY","number":1},{"name":"EDITION_2_TEST_ONLY","number":2},{"name":"EDITION_99997_TEST_ONLY","number":99997},{"name":"EDITION_99998_TEST_ONLY","number":99998},{"name":"EDITION_99999_TEST_ONLY","number":99999}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"DescriptorProtos","optimizeFor":"SPEED","goPackage":"google.golang.org/protobuf/types/descriptorpb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.Reflection"},"bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"buf/validate/priv/private.proto","package":"buf.validate.priv","dependency":["google/protobuf/descriptor.proto"],"messageType":[{"name":"FieldConstraints","field":[{"name":"cel","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.priv.Constraint","jsonName":"cel"}]},{"name":"Constraint","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"message","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"},{"name":"expression","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expression"}]}],"extension":[{"name":"field","number":1160,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.priv.FieldConstraints","extendee":".google.protobuf.FieldOptions","jsonName":"field","proto3Optional":true}],"options":{"javaPackage":"build.buf.validate.priv","javaOuterClassname":"PrivateProto","javaMultipleFiles":true,"goPackage":"buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate/priv"},"syntax":"proto3","bufExtension":{"isImport":true,"moduleInfo":{"name":{"remote":"buf.build","owner":"bufbuild","repository":"protovalidate"},"commit":"b983156c5e994cc9892e0ce3e64e17e0"},"isSyntaxUnspecified":false}},{"name":"google/protobuf/duration.proto","package":"google.protobuf","messageType":[{"name":"Duration","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"DurationProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/durationpb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"buf/validate/validate.proto","package":"buf.validate","dependency":["buf/validate/expression.proto","buf/validate/priv/private.proto","google/protobuf/descriptor.proto","google/protobuf/duration.proto","google/protobuf/timestamp.proto"],"messageType":[{"name":"MessageConstraints","field":[{"name":"disabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"disabled","proto3Optional":true},{"name":"cel","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.Constraint","jsonName":"cel"}],"oneofDecl":[{"name":"_disabled"}]},{"name":"OneofConstraints","field":[{"name":"required","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"required","proto3Optional":true}],"oneofDecl":[{"name":"_required"}]},{"name":"FieldConstraints","field":[{"name":"cel","number":23,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.Constraint","jsonName":"cel"},{"name":"required","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"required"},{"name":"ignore","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".buf.validate.Ignore","jsonName":"ignore"},{"name":"float","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FloatRules","oneofIndex":0,"jsonName":"float"},{"name":"double","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.DoubleRules","oneofIndex":0,"jsonName":"double"},{"name":"int32","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Int32Rules","oneofIndex":0,"jsonName":"int32"},{"name":"int64","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Int64Rules","oneofIndex":0,"jsonName":"int64"},{"name":"uint32","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.UInt32Rules","oneofIndex":0,"jsonName":"uint32"},{"name":"uint64","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.UInt64Rules","oneofIndex":0,"jsonName":"uint64"},{"name":"sint32","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SInt32Rules","oneofIndex":0,"jsonName":"sint32"},{"name":"sint64","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SInt64Rules","oneofIndex":0,"jsonName":"sint64"},{"name":"fixed32","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Fixed32Rules","oneofIndex":0,"jsonName":"fixed32"},{"name":"fixed64","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Fixed64Rules","oneofIndex":0,"jsonName":"fixed64"},{"name":"sfixed32","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SFixed32Rules","oneofIndex":0,"jsonName":"sfixed32"},{"name":"sfixed64","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SFixed64Rules","oneofIndex":0,"jsonName":"sfixed64"},{"name":"bool","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.BoolRules","oneofIndex":0,"jsonName":"bool"},{"name":"string","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.StringRules","oneofIndex":0,"jsonName":"string"},{"name":"bytes","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.BytesRules","oneofIndex":0,"jsonName":"bytes"},{"name":"enum","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.EnumRules","oneofIndex":0,"jsonName":"enum"},{"name":"repeated","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.RepeatedRules","oneofIndex":0,"jsonName":"repeated"},{"name":"map","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.MapRules","oneofIndex":0,"jsonName":"map"},{"name":"any","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.AnyRules","oneofIndex":0,"jsonName":"any"},{"name":"duration","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.DurationRules","oneofIndex":0,"jsonName":"duration"},{"name":"timestamp","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.TimestampRules","oneofIndex":0,"jsonName":"timestamp"},{"name":"skipped","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"skipped","options":{"deprecated":true}},{"name":"ignore_empty","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"ignoreEmpty","options":{"deprecated":true}}],"oneofDecl":[{"name":"type"}]},{"name":"FloatRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.lt","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this >= rules.lt)? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.lte","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this > rules.lte)? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.gt","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this <= rules.gt)? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"float.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this.isNan() || this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"float.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (this.isNan() || (rules.lt <= this && this <= rules.gt))? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"float.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this.isNan() || this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"float.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (this.isNan() || (rules.lte < this && this <= rules.gt))? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.gte","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this < rules.gte)? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"float.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this.isNan() || this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"float.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (this.isNan() || (rules.lt <= this && this < rules.gte))? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"float.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this.isNan() || this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"float.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (this.isNan() || (rules.lte < this && this < rules.gte))? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_FLOAT","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_FLOAT","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"finite","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"finite","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.finite","expression":"this.isNan() || this.isInf() ? 'value must be finite' : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"DoubleRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.lt","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this >= rules.lt)? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.lte","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this > rules.lte)? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.gt","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this <= rules.gt)? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"double.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this.isNan() || this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"double.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (this.isNan() || (rules.lt <= this && this <= rules.gt))? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"double.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this.isNan() || this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"double.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (this.isNan() || (rules.lte < this && this <= rules.gt))? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.gte","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this < rules.gte)? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"double.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this.isNan() || this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"double.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (this.isNan() || (rules.lt <= this && this < rules.gte))? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"double.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this.isNan() || this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"double.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (this.isNan() || (rules.lte < this && this < rules.gte))? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_DOUBLE","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_DOUBLE","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"finite","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"finite","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.finite","expression":"this.isNan() || this.isInf() ? 'value must be finite' : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Int32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"int32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"int32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"int32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"int32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Int64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"int64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"int64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"int64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"int64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"UInt32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"uint32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"uint32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"uint32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"uint32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_UINT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_UINT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"UInt64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"uint64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"uint64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"uint64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"uint64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_UINT64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_UINT64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SInt32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sint32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sint32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sint32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sint32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SINT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SINT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SInt64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sint64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sint64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sint64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sint64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SINT64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SINT64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Fixed32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"fixed32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"fixed32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"fixed32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"fixed32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_FIXED32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_FIXED32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Fixed64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"fixed64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"fixed64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"fixed64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"fixed64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_FIXED64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_FIXED64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SFixed32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sfixed32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sfixed32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sfixed32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sfixed32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SFIXED32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SFIXED32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SFixed64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sfixed64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sfixed64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sfixed64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sfixed64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SFIXED64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SFIXED64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"BoolRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bool.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true}],"oneofDecl":[{"name":"_const"}]},{"name":"StringRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.const","expression":"this != rules.const ? 'value must equal `%s`'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"len","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":2,"jsonName":"len","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.len","expression":"uint(this.size()) != rules.len ? 'value length must be %s characters'.format([rules.len]) : ''"}]}},"proto3Optional":true},{"name":"min_len","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":3,"jsonName":"minLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.min_len","expression":"uint(this.size()) < rules.min_len ? 'value length must be at least %s characters'.format([rules.min_len]) : ''"}]}},"proto3Optional":true},{"name":"max_len","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":4,"jsonName":"maxLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.max_len","expression":"uint(this.size()) > rules.max_len ? 'value length must be at most %s characters'.format([rules.max_len]) : ''"}]}},"proto3Optional":true},{"name":"len_bytes","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":5,"jsonName":"lenBytes","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.len_bytes","expression":"uint(bytes(this).size()) != rules.len_bytes ? 'value length must be %s bytes'.format([rules.len_bytes]) : ''"}]}},"proto3Optional":true},{"name":"min_bytes","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":6,"jsonName":"minBytes","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.min_bytes","expression":"uint(bytes(this).size()) < rules.min_bytes ? 'value length must be at least %s bytes'.format([rules.min_bytes]) : ''"}]}},"proto3Optional":true},{"name":"max_bytes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":7,"jsonName":"maxBytes","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.max_bytes","expression":"uint(bytes(this).size()) > rules.max_bytes ? 'value length must be at most %s bytes'.format([rules.max_bytes]) : ''"}]}},"proto3Optional":true},{"name":"pattern","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"pattern","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.pattern","expression":"!this.matches(rules.pattern) ? 'value does not match regex pattern `%s`'.format([rules.pattern]) : ''"}]}},"proto3Optional":true},{"name":"prefix","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.prefix","expression":"!this.startsWith(rules.prefix) ? 'value does not have prefix `%s`'.format([rules.prefix]) : ''"}]}},"proto3Optional":true},{"name":"suffix","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"suffix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.suffix","expression":"!this.endsWith(rules.suffix) ? 'value does not have suffix `%s`'.format([rules.suffix]) : ''"}]}},"proto3Optional":true},{"name":"contains","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"contains","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.contains","expression":"!this.contains(rules.contains) ? 'value does not contain substring `%s`'.format([rules.contains]) : ''"}]}},"proto3Optional":true},{"name":"not_contains","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"notContains","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.not_contains","expression":"this.contains(rules.not_contains) ? 'value contains substring `%s`'.format([rules.not_contains]) : ''"}]}},"proto3Optional":true},{"name":"in","number":10,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"email","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"email","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.email","message":"value must be a valid email address","expression":"this == '' || this.isEmail()"},{"id":"string.email_empty","message":"value is empty, which is not a valid email address","expression":"this != ''"}]}}},{"name":"hostname","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"hostname","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.hostname","message":"value must be a valid hostname","expression":"this == '' || this.isHostname()"},{"id":"string.hostname_empty","message":"value is empty, which is not a valid hostname","expression":"this != ''"}]}}},{"name":"ip","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ip","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ip","message":"value must be a valid IP address","expression":"this == '' || this.isIp()"},{"id":"string.ip_empty","message":"value is empty, which is not a valid IP address","expression":"this != ''"}]}}},{"name":"ipv4","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv4","message":"value must be a valid IPv4 address","expression":"this == '' || this.isIp(4)"},{"id":"string.ipv4_empty","message":"value is empty, which is not a valid IPv4 address","expression":"this != ''"}]}}},{"name":"ipv6","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv6","message":"value must be a valid IPv6 address","expression":"this == '' || this.isIp(6)"},{"id":"string.ipv6_empty","message":"value is empty, which is not a valid IPv6 address","expression":"this != ''"}]}}},{"name":"uri","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"uri","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.uri","message":"value must be a valid URI","expression":"this == '' || this.isUri()"},{"id":"string.uri_empty","message":"value is empty, which is not a valid URI","expression":"this != ''"}]}}},{"name":"uri_ref","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"uriRef","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.uri_ref","message":"value must be a valid URI","expression":"this.isUriRef()"}]}}},{"name":"address","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"address","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.address","message":"value must be a valid hostname, or ip address","expression":"this == '' || this.isHostname() || this.isIp()"},{"id":"string.address_empty","message":"value is empty, which is not a valid hostname, or ip address","expression":"this != ''"}]}}},{"name":"uuid","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"uuid","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.uuid","message":"value must be a valid UUID","expression":"this == '' || this.matches('^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$')"},{"id":"string.uuid_empty","message":"value is empty, which is not a valid UUID","expression":"this != ''"}]}}},{"name":"tuuid","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"tuuid","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.tuuid","message":"value must be a valid trimmed UUID","expression":"this == '' || this.matches('^[0-9a-fA-F]{32}$')"},{"id":"string.tuuid_empty","message":"value is empty, which is not a valid trimmed UUID","expression":"this != ''"}]}}},{"name":"ip_with_prefixlen","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipWithPrefixlen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ip_with_prefixlen","message":"value must be a valid IP prefix","expression":"this == '' || this.isIpPrefix()"},{"id":"string.ip_with_prefixlen_empty","message":"value is empty, which is not a valid IP prefix","expression":"this != ''"}]}}},{"name":"ipv4_with_prefixlen","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4WithPrefixlen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv4_with_prefixlen","message":"value must be a valid IPv4 address with prefix length","expression":"this == '' || this.isIpPrefix(4)"},{"id":"string.ipv4_with_prefixlen_empty","message":"value is empty, which is not a valid IPv4 address with prefix length","expression":"this != ''"}]}}},{"name":"ipv6_with_prefixlen","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6WithPrefixlen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv6_with_prefixlen","message":"value must be a valid IPv6 address with prefix length","expression":"this == '' || this.isIpPrefix(6)"},{"id":"string.ipv6_with_prefixlen_empty","message":"value is empty, which is not a valid IPv6 address with prefix length","expression":"this != ''"}]}}},{"name":"ip_prefix","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipPrefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ip_prefix","message":"value must be a valid IP prefix","expression":"this == '' || this.isIpPrefix(true)"},{"id":"string.ip_prefix_empty","message":"value is empty, which is not a valid IP prefix","expression":"this != ''"}]}}},{"name":"ipv4_prefix","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4Prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv4_prefix","message":"value must be a valid IPv4 prefix","expression":"this == '' || this.isIpPrefix(4, true)"},{"id":"string.ipv4_prefix_empty","message":"value is empty, which is not a valid IPv4 prefix","expression":"this != ''"}]}}},{"name":"ipv6_prefix","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6Prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv6_prefix","message":"value must be a valid IPv6 prefix","expression":"this == '' || this.isIpPrefix(6, true)"},{"id":"string.ipv6_prefix_empty","message":"value is empty, which is not a valid IPv6 prefix","expression":"this != ''"}]}}},{"name":"host_and_port","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"hostAndPort","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.host_and_port","message":"value must be a valid host (hostname or IP address) and port pair","expression":"this == '' || this.isHostAndPort(true)"},{"id":"string.host_and_port_empty","message":"value is empty, which is not a valid host and port pair","expression":"this != ''"}]}}},{"name":"well_known_regex","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".buf.validate.KnownRegex","oneofIndex":0,"jsonName":"wellKnownRegex","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.well_known_regex.header_name","message":"value must be a valid HTTP header name","expression":"rules.well_known_regex != 1 || this == '' || this.matches(!has(rules.strict) || rules.strict ?'^:?[0-9a-zA-Z!#$%&\\'*+-.^_|~\\x60]+$' :'^[^\\u0000\\u000A\\u000D]+$')"},{"id":"string.well_known_regex.header_name_empty","message":"value is empty, which is not a valid HTTP header name","expression":"rules.well_known_regex != 1 || this != ''"},{"id":"string.well_known_regex.header_value","message":"value must be a valid HTTP header value","expression":"rules.well_known_regex != 2 || this.matches(!has(rules.strict) || rules.strict ?'^[^\\u0000-\\u0008\\u000A-\\u001F\\u007F]*$' :'^[^\\u0000\\u000A\\u000D]*$')"}]}}},{"name":"strict","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"strict","proto3Optional":true}],"oneofDecl":[{"name":"well_known"},{"name":"_const"},{"name":"_len"},{"name":"_min_len"},{"name":"_max_len"},{"name":"_len_bytes"},{"name":"_min_bytes"},{"name":"_max_bytes"},{"name":"_pattern"},{"name":"_prefix"},{"name":"_suffix"},{"name":"_contains"},{"name":"_not_contains"},{"name":"_strict"}]},{"name":"BytesRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":1,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.const","expression":"this != rules.const ? 'value must be %x'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"len","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":2,"jsonName":"len","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.len","expression":"uint(this.size()) != rules.len ? 'value length must be %s bytes'.format([rules.len]) : ''"}]}},"proto3Optional":true},{"name":"min_len","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":3,"jsonName":"minLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.min_len","expression":"uint(this.size()) < rules.min_len ? 'value length must be at least %s bytes'.format([rules.min_len]) : ''"}]}},"proto3Optional":true},{"name":"max_len","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":4,"jsonName":"maxLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.max_len","expression":"uint(this.size()) > rules.max_len ? 'value must be at most %s bytes'.format([rules.max_len]) : ''"}]}},"proto3Optional":true},{"name":"pattern","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pattern","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.pattern","expression":"!string(this).matches(rules.pattern) ? 'value must match regex pattern `%s`'.format([rules.pattern]) : ''"}]}},"proto3Optional":true},{"name":"prefix","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":6,"jsonName":"prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.prefix","expression":"!this.startsWith(rules.prefix) ? 'value does not have prefix %x'.format([rules.prefix]) : ''"}]}},"proto3Optional":true},{"name":"suffix","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":7,"jsonName":"suffix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.suffix","expression":"!this.endsWith(rules.suffix) ? 'value does not have suffix %x'.format([rules.suffix]) : ''"}]}},"proto3Optional":true},{"name":"contains","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":8,"jsonName":"contains","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.contains","expression":"!this.contains(rules.contains) ? 'value does not contain %x'.format([rules.contains]) : ''"}]}},"proto3Optional":true},{"name":"in","number":8,"label":"LABEL_REPEATED","type":"TYPE_BYTES","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.in","expression":"dyn(rules)['in'].size() > 0 && !(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":9,"label":"LABEL_REPEATED","type":"TYPE_BYTES","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"ip","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ip","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.ip","message":"value must be a valid IP address","expression":"this.size() == 0 || this.size() == 4 || this.size() == 16"},{"id":"bytes.ip_empty","message":"value is empty, which is not a valid IP address","expression":"this.size() != 0"}]}}},{"name":"ipv4","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.ipv4","message":"value must be a valid IPv4 address","expression":"this.size() == 0 || this.size() == 4"},{"id":"bytes.ipv4_empty","message":"value is empty, which is not a valid IPv4 address","expression":"this.size() != 0"}]}}},{"name":"ipv6","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.ipv6","message":"value must be a valid IPv6 address","expression":"this.size() == 0 || this.size() == 16"},{"id":"bytes.ipv6_empty","message":"value is empty, which is not a valid IPv6 address","expression":"this.size() != 0"}]}}}],"oneofDecl":[{"name":"well_known"},{"name":"_const"},{"name":"_len"},{"name":"_min_len"},{"name":"_max_len"},{"name":"_pattern"},{"name":"_prefix"},{"name":"_suffix"},{"name":"_contains"}]},{"name":"EnumRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"enum.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"defined_only","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"definedOnly","proto3Optional":true},{"name":"in","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"enum.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"enum.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"_const"},{"name":"_defined_only"}]},{"name":"RepeatedRules","field":[{"name":"min_items","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"minItems","options":{"[buf.validate.priv.field]":{"cel":[{"id":"repeated.min_items","expression":"uint(this.size()) < rules.min_items ? 'value must contain at least %d item(s)'.format([rules.min_items]) : ''"}]}},"proto3Optional":true},{"name":"max_items","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"maxItems","options":{"[buf.validate.priv.field]":{"cel":[{"id":"repeated.max_items","expression":"uint(this.size()) > rules.max_items ? 'value must contain no more than %s item(s)'.format([rules.max_items]) : ''"}]}},"proto3Optional":true},{"name":"unique","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"unique","options":{"[buf.validate.priv.field]":{"cel":[{"id":"repeated.unique","message":"repeated value must contain unique items","expression":"this.unique()"}]}},"proto3Optional":true},{"name":"items","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","oneofIndex":3,"jsonName":"items","proto3Optional":true}],"oneofDecl":[{"name":"_min_items"},{"name":"_max_items"},{"name":"_unique"},{"name":"_items"}]},{"name":"MapRules","field":[{"name":"min_pairs","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"minPairs","options":{"[buf.validate.priv.field]":{"cel":[{"id":"map.min_pairs","expression":"uint(this.size()) < rules.min_pairs ? 'map must be at least %d entries'.format([rules.min_pairs]) : ''"}]}},"proto3Optional":true},{"name":"max_pairs","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"maxPairs","options":{"[buf.validate.priv.field]":{"cel":[{"id":"map.max_pairs","expression":"uint(this.size()) > rules.max_pairs ? 'map must be at most %d entries'.format([rules.max_pairs]) : ''"}]}},"proto3Optional":true},{"name":"keys","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","oneofIndex":2,"jsonName":"keys","proto3Optional":true},{"name":"values","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","oneofIndex":3,"jsonName":"values","proto3Optional":true}],"oneofDecl":[{"name":"_min_pairs"},{"name":"_max_pairs"},{"name":"_keys"},{"name":"_values"}]},{"name":"AnyRules","field":[{"name":"in","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"in"},{"name":"not_in","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"notIn"}]},{"name":"DurationRules","field":[{"name":"const","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"duration.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"duration.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"duration.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"duration.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"duration.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"duration.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"duration.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"duration.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"TimestampRules","field":[{"name":"const","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"lt_now","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ltNow","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.lt_now","expression":"this > now ? 'value must be less than now' : ''"}]}}},{"name":"gt","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"timestamp.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"timestamp.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"timestamp.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"timestamp.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"timestamp.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"timestamp.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"timestamp.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"timestamp.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"gt_now","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"gtNow","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.gt_now","expression":"this < now ? 'value must be greater than now' : ''"}]}}},{"name":"within","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":3,"jsonName":"within","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.within","expression":"this < now-rules.within || this > now+rules.within ? 'value must be within %s of now'.format([rules.within]) : ''"}]}},"proto3Optional":true}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"},{"name":"_within"}]}],"enumType":[{"name":"Ignore","value":[{"name":"IGNORE_UNSPECIFIED","number":0},{"name":"IGNORE_IF_UNPOPULATED","number":1},{"name":"IGNORE_IF_DEFAULT_VALUE","number":2},{"name":"IGNORE_ALWAYS","number":3},{"name":"IGNORE_EMPTY","number":1,"options":{"deprecated":true}},{"name":"IGNORE_DEFAULT","number":2,"options":{"deprecated":true}}],"options":{"allowAlias":true}},{"name":"KnownRegex","value":[{"name":"KNOWN_REGEX_UNSPECIFIED","number":0},{"name":"KNOWN_REGEX_HTTP_HEADER_NAME","number":1},{"name":"KNOWN_REGEX_HTTP_HEADER_VALUE","number":2}]}],"extension":[{"name":"message","number":1159,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.MessageConstraints","extendee":".google.protobuf.MessageOptions","jsonName":"message","proto3Optional":true},{"name":"oneof","number":1159,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.OneofConstraints","extendee":".google.protobuf.OneofOptions","jsonName":"oneof","proto3Optional":true},{"name":"field","number":1159,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","extendee":".google.protobuf.FieldOptions","jsonName":"field","proto3Optional":true}],"options":{"javaPackage":"build.buf.validate","javaOuterClassname":"ValidateProto","javaMultipleFiles":true,"goPackage":"buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate"},"syntax":"proto3","bufExtension":{"isImport":true,"moduleInfo":{"name":{"remote":"buf.build","owner":"bufbuild","repository":"protovalidate"},"commit":"b983156c5e994cc9892e0ce3e64e17e0"},"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/struct.proto","package":"google.protobuf","messageType":[{"name":"Struct","field":[{"name":"fields","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct.FieldsEntry","jsonName":"fields"}],"nestedType":[{"name":"FieldsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"Value","field":[{"name":"null_value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","oneofIndex":0,"jsonName":"nullValue"},{"name":"number_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":0,"jsonName":"numberValue"},{"name":"string_value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"stringValue"},{"name":"bool_value","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"boolValue"},{"name":"struct_value","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","oneofIndex":0,"jsonName":"structValue"},{"name":"list_value","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","oneofIndex":0,"jsonName":"listValue"}],"oneofDecl":[{"name":"kind"}]},{"name":"ListValue","field":[{"name":"values","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"values"}]}],"enumType":[{"name":"NullValue","value":[{"name":"NULL_VALUE","number":0}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"StructProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/structpb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/wrappers.proto","package":"google.protobuf","messageType":[{"name":"DoubleValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}]},{"name":"FloatValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}]},{"name":"Int64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}]},{"name":"UInt64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}]},{"name":"Int32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}]},{"name":"UInt32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}]},{"name":"BoolValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}]},{"name":"StringValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"BytesValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"WrappersProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/wrapperspb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"bufext/cel/expr/conformance/proto3/test_all_types.proto","package":"bufext.cel.expr.conformance.proto3","dependency":["google/protobuf/any.proto","google/protobuf/duration.proto","google/protobuf/struct.proto","google/protobuf/timestamp.proto","google/protobuf/wrappers.proto"],"messageType":[{"name":"TestAllTypes","field":[{"name":"single_int32","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"singleInt32"},{"name":"single_int64","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"singleInt64"},{"name":"single_uint32","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"singleUint32"},{"name":"single_uint64","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"singleUint64"},{"name":"single_sint32","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","jsonName":"singleSint32"},{"name":"single_sint64","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","jsonName":"singleSint64"},{"name":"single_fixed32","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","jsonName":"singleFixed32"},{"name":"single_fixed64","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","jsonName":"singleFixed64"},{"name":"single_sfixed32","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","jsonName":"singleSfixed32"},{"name":"single_sfixed64","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","jsonName":"singleSfixed64"},{"name":"single_float","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"singleFloat"},{"name":"single_double","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"singleDouble"},{"name":"single_bool","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"singleBool"},{"name":"single_string","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"singleString"},{"name":"single_bytes","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"singleBytes"},{"name":"single_any","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"singleAny"},{"name":"single_duration","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"singleDuration"},{"name":"single_timestamp","number":102,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"singleTimestamp"},{"name":"single_struct","number":103,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"singleStruct"},{"name":"single_value","number":104,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"singleValue"},{"name":"single_int64_wrapper","number":105,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"singleInt64Wrapper"},{"name":"single_int32_wrapper","number":106,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"singleInt32Wrapper"},{"name":"single_double_wrapper","number":107,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"singleDoubleWrapper"},{"name":"single_float_wrapper","number":108,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"singleFloatWrapper"},{"name":"single_uint64_wrapper","number":109,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"singleUint64Wrapper"},{"name":"single_uint32_wrapper","number":110,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"singleUint32Wrapper"},{"name":"single_string_wrapper","number":111,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"singleStringWrapper"},{"name":"single_bool_wrapper","number":112,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"singleBoolWrapper"},{"name":"single_bytes_wrapper","number":113,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"singleBytesWrapper"},{"name":"list_value","number":114,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"listValue"},{"name":"null_value","number":115,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"nullValue"},{"name":"optional_null_value","number":116,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","oneofIndex":1,"jsonName":"optionalNullValue","proto3Optional":true},{"name":"single_nested_message","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","oneofIndex":0,"jsonName":"singleNestedMessage"},{"name":"single_nested_enum","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","oneofIndex":0,"jsonName":"singleNestedEnum"},{"name":"standalone_message","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"standaloneMessage"},{"name":"standalone_enum","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"standaloneEnum"},{"name":"repeated_int32","number":31,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"repeatedInt32"},{"name":"repeated_int64","number":32,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"repeatedInt64"},{"name":"repeated_uint32","number":33,"label":"LABEL_REPEATED","type":"TYPE_UINT32","jsonName":"repeatedUint32"},{"name":"repeated_uint64","number":34,"label":"LABEL_REPEATED","type":"TYPE_UINT64","jsonName":"repeatedUint64"},{"name":"repeated_sint32","number":35,"label":"LABEL_REPEATED","type":"TYPE_SINT32","jsonName":"repeatedSint32"},{"name":"repeated_sint64","number":36,"label":"LABEL_REPEATED","type":"TYPE_SINT64","jsonName":"repeatedSint64"},{"name":"repeated_fixed32","number":37,"label":"LABEL_REPEATED","type":"TYPE_FIXED32","jsonName":"repeatedFixed32"},{"name":"repeated_fixed64","number":38,"label":"LABEL_REPEATED","type":"TYPE_FIXED64","jsonName":"repeatedFixed64"},{"name":"repeated_sfixed32","number":39,"label":"LABEL_REPEATED","type":"TYPE_SFIXED32","jsonName":"repeatedSfixed32"},{"name":"repeated_sfixed64","number":40,"label":"LABEL_REPEATED","type":"TYPE_SFIXED64","jsonName":"repeatedSfixed64"},{"name":"repeated_float","number":41,"label":"LABEL_REPEATED","type":"TYPE_FLOAT","jsonName":"repeatedFloat"},{"name":"repeated_double","number":42,"label":"LABEL_REPEATED","type":"TYPE_DOUBLE","jsonName":"repeatedDouble"},{"name":"repeated_bool","number":43,"label":"LABEL_REPEATED","type":"TYPE_BOOL","jsonName":"repeatedBool"},{"name":"repeated_string","number":44,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"repeatedString"},{"name":"repeated_bytes","number":45,"label":"LABEL_REPEATED","type":"TYPE_BYTES","jsonName":"repeatedBytes"},{"name":"repeated_nested_message","number":51,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"repeatedNestedMessage"},{"name":"repeated_nested_enum","number":52,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"repeatedNestedEnum"},{"name":"repeated_string_piece","number":53,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"repeatedStringPiece","options":{"ctype":"STRING_PIECE"}},{"name":"repeated_cord","number":54,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"repeatedCord","options":{"ctype":"CORD"}},{"name":"repeated_lazy_message","number":55,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"repeatedLazyMessage","options":{"lazy":true}},{"name":"repeated_any","number":120,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"repeatedAny"},{"name":"repeated_duration","number":121,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"repeatedDuration"},{"name":"repeated_timestamp","number":122,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"repeatedTimestamp"},{"name":"repeated_struct","number":123,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"repeatedStruct"},{"name":"repeated_value","number":124,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"repeatedValue"},{"name":"repeated_int64_wrapper","number":125,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"repeatedInt64Wrapper"},{"name":"repeated_int32_wrapper","number":126,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"repeatedInt32Wrapper"},{"name":"repeated_double_wrapper","number":127,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"repeatedDoubleWrapper"},{"name":"repeated_float_wrapper","number":128,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"repeatedFloatWrapper"},{"name":"repeated_uint64_wrapper","number":129,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"repeatedUint64Wrapper"},{"name":"repeated_uint32_wrapper","number":130,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"repeatedUint32Wrapper"},{"name":"repeated_string_wrapper","number":131,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"repeatedStringWrapper"},{"name":"repeated_bool_wrapper","number":132,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"repeatedBoolWrapper"},{"name":"repeated_bytes_wrapper","number":133,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"repeatedBytesWrapper"},{"name":"repeated_list_value","number":134,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"repeatedListValue"},{"name":"repeated_null_value","number":135,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"repeatedNullValue"},{"name":"map_int64_nested_type","number":62,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64NestedTypeEntry","jsonName":"mapInt64NestedType"},{"name":"map_bool_bool","number":63,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBoolEntry","jsonName":"mapBoolBool"},{"name":"map_bool_string","number":64,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolStringEntry","jsonName":"mapBoolString"},{"name":"map_bool_bytes","number":65,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBytesEntry","jsonName":"mapBoolBytes"},{"name":"map_bool_int32","number":66,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt32Entry","jsonName":"mapBoolInt32"},{"name":"map_bool_int64","number":67,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt64Entry","jsonName":"mapBoolInt64"},{"name":"map_bool_uint32","number":68,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint32Entry","jsonName":"mapBoolUint32"},{"name":"map_bool_uint64","number":69,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint64Entry","jsonName":"mapBoolUint64"},{"name":"map_bool_float","number":70,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolFloatEntry","jsonName":"mapBoolFloat"},{"name":"map_bool_double","number":71,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolDoubleEntry","jsonName":"mapBoolDouble"},{"name":"map_bool_enum","number":72,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolEnumEntry","jsonName":"mapBoolEnum"},{"name":"map_bool_message","number":73,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolMessageEntry","jsonName":"mapBoolMessage"},{"name":"map_bool_duration","number":228,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolDurationEntry","jsonName":"mapBoolDuration"},{"name":"map_bool_timestamp","number":229,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolTimestampEntry","jsonName":"mapBoolTimestamp"},{"name":"map_bool_null_value","number":230,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolNullValueEntry","jsonName":"mapBoolNullValue"},{"name":"map_bool_any","number":246,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolAnyEntry","jsonName":"mapBoolAny"},{"name":"map_bool_struct","number":247,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolStructEntry","jsonName":"mapBoolStruct"},{"name":"map_bool_value","number":248,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolValueEntry","jsonName":"mapBoolValue"},{"name":"map_bool_list_value","number":249,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolListValueEntry","jsonName":"mapBoolListValue"},{"name":"map_bool_int64_wrapper","number":250,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt64WrapperEntry","jsonName":"mapBoolInt64Wrapper"},{"name":"map_bool_int32_wrapper","number":251,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt32WrapperEntry","jsonName":"mapBoolInt32Wrapper"},{"name":"map_bool_double_wrapper","number":252,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolDoubleWrapperEntry","jsonName":"mapBoolDoubleWrapper"},{"name":"map_bool_float_wrapper","number":253,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolFloatWrapperEntry","jsonName":"mapBoolFloatWrapper"},{"name":"map_bool_uint64_wrapper","number":254,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint64WrapperEntry","jsonName":"mapBoolUint64Wrapper"},{"name":"map_bool_uint32_wrapper","number":255,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint32WrapperEntry","jsonName":"mapBoolUint32Wrapper"},{"name":"map_bool_string_wrapper","number":256,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolStringWrapperEntry","jsonName":"mapBoolStringWrapper"},{"name":"map_bool_bool_wrapper","number":257,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBoolWrapperEntry","jsonName":"mapBoolBoolWrapper"},{"name":"map_bool_bytes_wrapper","number":258,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBytesWrapperEntry","jsonName":"mapBoolBytesWrapper"},{"name":"map_int32_bool","number":74,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BoolEntry","jsonName":"mapInt32Bool"},{"name":"map_int32_string","number":75,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32StringEntry","jsonName":"mapInt32String"},{"name":"map_int32_bytes","number":76,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BytesEntry","jsonName":"mapInt32Bytes"},{"name":"map_int32_int32","number":77,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int32Entry","jsonName":"mapInt32Int32"},{"name":"map_int32_int64","number":78,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int64Entry","jsonName":"mapInt32Int64"},{"name":"map_int32_uint32","number":79,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint32Entry","jsonName":"mapInt32Uint32"},{"name":"map_int32_uint64","number":80,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint64Entry","jsonName":"mapInt32Uint64"},{"name":"map_int32_float","number":81,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32FloatEntry","jsonName":"mapInt32Float"},{"name":"map_int32_double","number":82,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32DoubleEntry","jsonName":"mapInt32Double"},{"name":"map_int32_enum","number":83,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32EnumEntry","jsonName":"mapInt32Enum"},{"name":"map_int32_message","number":84,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32MessageEntry","jsonName":"mapInt32Message"},{"name":"map_int32_duration","number":231,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32DurationEntry","jsonName":"mapInt32Duration"},{"name":"map_int32_timestamp","number":232,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32TimestampEntry","jsonName":"mapInt32Timestamp"},{"name":"map_int32_null_value","number":233,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32NullValueEntry","jsonName":"mapInt32NullValue"},{"name":"map_int32_any","number":259,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32AnyEntry","jsonName":"mapInt32Any"},{"name":"map_int32_struct","number":260,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32StructEntry","jsonName":"mapInt32Struct"},{"name":"map_int32_value","number":261,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32ValueEntry","jsonName":"mapInt32Value"},{"name":"map_int32_list_value","number":262,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32ListValueEntry","jsonName":"mapInt32ListValue"},{"name":"map_int32_int64_wrapper","number":263,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int64WrapperEntry","jsonName":"mapInt32Int64Wrapper"},{"name":"map_int32_int32_wrapper","number":264,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int32WrapperEntry","jsonName":"mapInt32Int32Wrapper"},{"name":"map_int32_double_wrapper","number":265,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32DoubleWrapperEntry","jsonName":"mapInt32DoubleWrapper"},{"name":"map_int32_float_wrapper","number":266,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32FloatWrapperEntry","jsonName":"mapInt32FloatWrapper"},{"name":"map_int32_uint64_wrapper","number":267,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint64WrapperEntry","jsonName":"mapInt32Uint64Wrapper"},{"name":"map_int32_uint32_wrapper","number":268,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint32WrapperEntry","jsonName":"mapInt32Uint32Wrapper"},{"name":"map_int32_string_wrapper","number":269,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32StringWrapperEntry","jsonName":"mapInt32StringWrapper"},{"name":"map_int32_bool_wrapper","number":270,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BoolWrapperEntry","jsonName":"mapInt32BoolWrapper"},{"name":"map_int32_bytes_wrapper","number":271,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BytesWrapperEntry","jsonName":"mapInt32BytesWrapper"},{"name":"map_int64_bool","number":85,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BoolEntry","jsonName":"mapInt64Bool"},{"name":"map_int64_string","number":86,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64StringEntry","jsonName":"mapInt64String"},{"name":"map_int64_bytes","number":87,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BytesEntry","jsonName":"mapInt64Bytes"},{"name":"map_int64_int32","number":88,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int32Entry","jsonName":"mapInt64Int32"},{"name":"map_int64_int64","number":89,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int64Entry","jsonName":"mapInt64Int64"},{"name":"map_int64_uint32","number":90,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint32Entry","jsonName":"mapInt64Uint32"},{"name":"map_int64_uint64","number":91,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint64Entry","jsonName":"mapInt64Uint64"},{"name":"map_int64_float","number":92,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64FloatEntry","jsonName":"mapInt64Float"},{"name":"map_int64_double","number":93,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64DoubleEntry","jsonName":"mapInt64Double"},{"name":"map_int64_enum","number":94,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64EnumEntry","jsonName":"mapInt64Enum"},{"name":"map_int64_message","number":95,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64MessageEntry","jsonName":"mapInt64Message"},{"name":"map_int64_duration","number":234,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64DurationEntry","jsonName":"mapInt64Duration"},{"name":"map_int64_timestamp","number":235,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64TimestampEntry","jsonName":"mapInt64Timestamp"},{"name":"map_int64_null_value","number":236,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64NullValueEntry","jsonName":"mapInt64NullValue"},{"name":"map_int64_any","number":272,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64AnyEntry","jsonName":"mapInt64Any"},{"name":"map_int64_struct","number":273,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64StructEntry","jsonName":"mapInt64Struct"},{"name":"map_int64_value","number":274,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64ValueEntry","jsonName":"mapInt64Value"},{"name":"map_int64_list_value","number":275,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64ListValueEntry","jsonName":"mapInt64ListValue"},{"name":"map_int64_int64_wrapper","number":276,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int64WrapperEntry","jsonName":"mapInt64Int64Wrapper"},{"name":"map_int64_int32_wrapper","number":277,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int32WrapperEntry","jsonName":"mapInt64Int32Wrapper"},{"name":"map_int64_double_wrapper","number":278,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64DoubleWrapperEntry","jsonName":"mapInt64DoubleWrapper"},{"name":"map_int64_float_wrapper","number":279,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64FloatWrapperEntry","jsonName":"mapInt64FloatWrapper"},{"name":"map_int64_uint64_wrapper","number":280,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint64WrapperEntry","jsonName":"mapInt64Uint64Wrapper"},{"name":"map_int64_uint32_wrapper","number":281,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint32WrapperEntry","jsonName":"mapInt64Uint32Wrapper"},{"name":"map_int64_string_wrapper","number":282,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64StringWrapperEntry","jsonName":"mapInt64StringWrapper"},{"name":"map_int64_bool_wrapper","number":283,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BoolWrapperEntry","jsonName":"mapInt64BoolWrapper"},{"name":"map_int64_bytes_wrapper","number":284,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BytesWrapperEntry","jsonName":"mapInt64BytesWrapper"},{"name":"map_uint32_bool","number":96,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BoolEntry","jsonName":"mapUint32Bool"},{"name":"map_uint32_string","number":97,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32StringEntry","jsonName":"mapUint32String"},{"name":"map_uint32_bytes","number":98,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BytesEntry","jsonName":"mapUint32Bytes"},{"name":"map_uint32_int32","number":99,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int32Entry","jsonName":"mapUint32Int32"},{"name":"map_uint32_int64","number":200,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int64Entry","jsonName":"mapUint32Int64"},{"name":"map_uint32_uint32","number":201,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint32Entry","jsonName":"mapUint32Uint32"},{"name":"map_uint32_uint64","number":202,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint64Entry","jsonName":"mapUint32Uint64"},{"name":"map_uint32_float","number":203,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32FloatEntry","jsonName":"mapUint32Float"},{"name":"map_uint32_double","number":204,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32DoubleEntry","jsonName":"mapUint32Double"},{"name":"map_uint32_enum","number":205,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32EnumEntry","jsonName":"mapUint32Enum"},{"name":"map_uint32_message","number":206,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32MessageEntry","jsonName":"mapUint32Message"},{"name":"map_uint32_duration","number":237,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32DurationEntry","jsonName":"mapUint32Duration"},{"name":"map_uint32_timestamp","number":238,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32TimestampEntry","jsonName":"mapUint32Timestamp"},{"name":"map_uint32_null_value","number":239,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32NullValueEntry","jsonName":"mapUint32NullValue"},{"name":"map_uint32_any","number":285,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32AnyEntry","jsonName":"mapUint32Any"},{"name":"map_uint32_struct","number":286,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32StructEntry","jsonName":"mapUint32Struct"},{"name":"map_uint32_value","number":287,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32ValueEntry","jsonName":"mapUint32Value"},{"name":"map_uint32_list_value","number":288,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32ListValueEntry","jsonName":"mapUint32ListValue"},{"name":"map_uint32_int64_wrapper","number":289,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int64WrapperEntry","jsonName":"mapUint32Int64Wrapper"},{"name":"map_uint32_int32_wrapper","number":290,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int32WrapperEntry","jsonName":"mapUint32Int32Wrapper"},{"name":"map_uint32_double_wrapper","number":291,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32DoubleWrapperEntry","jsonName":"mapUint32DoubleWrapper"},{"name":"map_uint32_float_wrapper","number":292,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32FloatWrapperEntry","jsonName":"mapUint32FloatWrapper"},{"name":"map_uint32_uint64_wrapper","number":293,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint64WrapperEntry","jsonName":"mapUint32Uint64Wrapper"},{"name":"map_uint32_uint32_wrapper","number":294,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint32WrapperEntry","jsonName":"mapUint32Uint32Wrapper"},{"name":"map_uint32_string_wrapper","number":295,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32StringWrapperEntry","jsonName":"mapUint32StringWrapper"},{"name":"map_uint32_bool_wrapper","number":296,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BoolWrapperEntry","jsonName":"mapUint32BoolWrapper"},{"name":"map_uint32_bytes_wrapper","number":297,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BytesWrapperEntry","jsonName":"mapUint32BytesWrapper"},{"name":"map_uint64_bool","number":207,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BoolEntry","jsonName":"mapUint64Bool"},{"name":"map_uint64_string","number":208,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64StringEntry","jsonName":"mapUint64String"},{"name":"map_uint64_bytes","number":209,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BytesEntry","jsonName":"mapUint64Bytes"},{"name":"map_uint64_int32","number":210,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int32Entry","jsonName":"mapUint64Int32"},{"name":"map_uint64_int64","number":211,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int64Entry","jsonName":"mapUint64Int64"},{"name":"map_uint64_uint32","number":212,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint32Entry","jsonName":"mapUint64Uint32"},{"name":"map_uint64_uint64","number":213,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint64Entry","jsonName":"mapUint64Uint64"},{"name":"map_uint64_float","number":214,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64FloatEntry","jsonName":"mapUint64Float"},{"name":"map_uint64_double","number":215,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64DoubleEntry","jsonName":"mapUint64Double"},{"name":"map_uint64_enum","number":216,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64EnumEntry","jsonName":"mapUint64Enum"},{"name":"map_uint64_message","number":217,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64MessageEntry","jsonName":"mapUint64Message"},{"name":"map_uint64_duration","number":240,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64DurationEntry","jsonName":"mapUint64Duration"},{"name":"map_uint64_timestamp","number":241,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64TimestampEntry","jsonName":"mapUint64Timestamp"},{"name":"map_uint64_null_value","number":242,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64NullValueEntry","jsonName":"mapUint64NullValue"},{"name":"map_uint64_any","number":298,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64AnyEntry","jsonName":"mapUint64Any"},{"name":"map_uint64_struct","number":299,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64StructEntry","jsonName":"mapUint64Struct"},{"name":"map_uint64_value","number":300,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64ValueEntry","jsonName":"mapUint64Value"},{"name":"map_uint64_list_value","number":301,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64ListValueEntry","jsonName":"mapUint64ListValue"},{"name":"map_uint64_int64_wrapper","number":302,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int64WrapperEntry","jsonName":"mapUint64Int64Wrapper"},{"name":"map_uint64_int32_wrapper","number":303,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int32WrapperEntry","jsonName":"mapUint64Int32Wrapper"},{"name":"map_uint64_double_wrapper","number":304,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64DoubleWrapperEntry","jsonName":"mapUint64DoubleWrapper"},{"name":"map_uint64_float_wrapper","number":305,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64FloatWrapperEntry","jsonName":"mapUint64FloatWrapper"},{"name":"map_uint64_uint64_wrapper","number":306,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint64WrapperEntry","jsonName":"mapUint64Uint64Wrapper"},{"name":"map_uint64_uint32_wrapper","number":307,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint32WrapperEntry","jsonName":"mapUint64Uint32Wrapper"},{"name":"map_uint64_string_wrapper","number":308,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64StringWrapperEntry","jsonName":"mapUint64StringWrapper"},{"name":"map_uint64_bool_wrapper","number":309,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BoolWrapperEntry","jsonName":"mapUint64BoolWrapper"},{"name":"map_uint64_bytes_wrapper","number":310,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BytesWrapperEntry","jsonName":"mapUint64BytesWrapper"},{"name":"map_string_bool","number":218,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBoolEntry","jsonName":"mapStringBool"},{"name":"map_string_string","number":61,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringStringEntry","jsonName":"mapStringString"},{"name":"map_string_bytes","number":219,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBytesEntry","jsonName":"mapStringBytes"},{"name":"map_string_int32","number":220,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt32Entry","jsonName":"mapStringInt32"},{"name":"map_string_int64","number":221,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt64Entry","jsonName":"mapStringInt64"},{"name":"map_string_uint32","number":222,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint32Entry","jsonName":"mapStringUint32"},{"name":"map_string_uint64","number":223,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint64Entry","jsonName":"mapStringUint64"},{"name":"map_string_float","number":224,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringFloatEntry","jsonName":"mapStringFloat"},{"name":"map_string_double","number":225,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringDoubleEntry","jsonName":"mapStringDouble"},{"name":"map_string_enum","number":226,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringEnumEntry","jsonName":"mapStringEnum"},{"name":"map_string_message","number":227,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringMessageEntry","jsonName":"mapStringMessage"},{"name":"map_string_duration","number":243,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringDurationEntry","jsonName":"mapStringDuration"},{"name":"map_string_timestamp","number":244,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringTimestampEntry","jsonName":"mapStringTimestamp"},{"name":"map_string_null_value","number":245,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringNullValueEntry","jsonName":"mapStringNullValue"},{"name":"map_string_any","number":311,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringAnyEntry","jsonName":"mapStringAny"},{"name":"map_string_struct","number":312,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringStructEntry","jsonName":"mapStringStruct"},{"name":"map_string_value","number":313,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringValueEntry","jsonName":"mapStringValue"},{"name":"map_string_list_value","number":314,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringListValueEntry","jsonName":"mapStringListValue"},{"name":"map_string_int64_wrapper","number":315,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt64WrapperEntry","jsonName":"mapStringInt64Wrapper"},{"name":"map_string_int32_wrapper","number":316,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt32WrapperEntry","jsonName":"mapStringInt32Wrapper"},{"name":"map_string_double_wrapper","number":317,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringDoubleWrapperEntry","jsonName":"mapStringDoubleWrapper"},{"name":"map_string_float_wrapper","number":318,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringFloatWrapperEntry","jsonName":"mapStringFloatWrapper"},{"name":"map_string_uint64_wrapper","number":319,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint64WrapperEntry","jsonName":"mapStringUint64Wrapper"},{"name":"map_string_uint32_wrapper","number":320,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint32WrapperEntry","jsonName":"mapStringUint32Wrapper"},{"name":"map_string_string_wrapper","number":321,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringStringWrapperEntry","jsonName":"mapStringStringWrapper"},{"name":"map_string_bool_wrapper","number":322,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBoolWrapperEntry","jsonName":"mapStringBoolWrapper"},{"name":"map_string_bytes_wrapper","number":323,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBytesWrapperEntry","jsonName":"mapStringBytesWrapper"}],"nestedType":[{"name":"NestedMessage","field":[{"name":"bb","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"bb"}]},{"name":"MapInt64NestedTypeEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.NestedTestAllTypes","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolStringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolFloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolDoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolEnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolMessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolDurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolTimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolNullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolAnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolStructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolDoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolFloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolStringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringStringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringFloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringDoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringEnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringMessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringDurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringTimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringNullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringAnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringStructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringDoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringFloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringStringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}}],"enumType":[{"name":"NestedEnum","value":[{"name":"FOO","number":0},{"name":"BAR","number":1},{"name":"BAZ","number":2}]}],"oneofDecl":[{"name":"nested_type"},{"name":"_optional_null_value"}]},{"name":"NestedTestAllTypes","field":[{"name":"child","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.NestedTestAllTypes","jsonName":"child"},{"name":"payload","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes","jsonName":"payload"}]}],"enumType":[{"name":"GlobalEnum","value":[{"name":"GOO","number":0},{"name":"GAR","number":1},{"name":"GAZ","number":2}]}],"options":{"javaPackage":"dev.cel.expr.conformance.proto3","javaOuterClassname":"TestAllTypesProto","javaMultipleFiles":true,"goPackage":"cel.dev/expr/conformance/proto3","ccEnableArenas":true},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}},{"name":"buf/protoschema/test/v1/test_cases.proto","package":"buf.protoschema.test.v1","dependency":["buf/validate/validate.proto","bufext/cel/expr/conformance/proto3/test_all_types.proto"],"messageType":[{"name":"NestedReference","field":[{"name":"nested_message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"nestedMessage"}]},{"name":"CustomOptions","field":[{"name":"int32_field","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"int32Field","options":{"packed":true,"[buf.validate.field]":{"cel":[{"id":"int32_field_id","message":"must be true","expression":"1 == 1"}]}}},{"name":"string_field","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"stringField","options":{"[buf.validate.field]":{"cel":[{"id":"string_field_id","message":"must be true","expression":"1 == 1"}]}}}],"oneofDecl":[{"name":"kind","options":{"[buf.validate.oneof]":{"required":true}}}],"options":{"noStandardDescriptorAccessor":true,"[buf.validate.message]":{"cel":[{"id":"custom_option_id","message":"must be true","expression":"1 == 1"}]}}}],"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]} \ No newline at end of file +{"file":[{"name":"buf/validate/expression.proto","package":"buf.validate","messageType":[{"name":"Constraint","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"message","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"},{"name":"expression","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expression"}]},{"name":"Violations","field":[{"name":"violations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.Violation","jsonName":"violations"}]},{"name":"Violation","field":[{"name":"field_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fieldPath"},{"name":"constraint_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"constraintId"},{"name":"message","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"},{"name":"for_key","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"forKey"}]}],"options":{"javaPackage":"build.buf.validate","javaOuterClassname":"ExpressionProto","javaMultipleFiles":true,"goPackage":"buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate"},"sourceCodeInfo":{"location":[{"span":[14,0,91,1]},{"path":[12],"span":[14,0,18],"leadingDetachedComments":[" Copyright 2023 Buf Technologies, Inc.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"]},{"path":[2],"span":[16,0,21]},{"path":[8],"span":[18,0,94]},{"path":[8,11],"span":[18,0,94]},{"path":[8],"span":[19,0,34]},{"path":[8,10],"span":[19,0,34]},{"path":[8],"span":[20,0,48]},{"path":[8,8],"span":[20,0,48]},{"path":[8],"span":[21,0,43]},{"path":[8,1],"span":[21,0,43]},{"path":[4,0],"span":[38,0,54,1],"leadingComments":" `Constraint` represents a validation rule written in the Common Expression\n Language (CEL) syntax. Each Constraint includes a unique identifier, an\n optional error message, and the CEL expression to evaluate. For more\n information on CEL, [see our documentation](https://github.com/bufbuild/protovalidate/blob/main/docs/cel.md).\n\n ```proto\n message Foo {\n option (buf.validate.message).cel = {\n id: \"foo.bar\"\n message: \"bar must be greater than 0\"\n expression: \"this.bar > 0\"\n };\n int32 bar = 1;\n }\n ```\n"},{"path":[4,0,1],"span":[38,8,18]},{"path":[4,0,2,0],"span":[41,2,16],"leadingComments":" `id` is a string that serves as a machine-readable name for this Constraint.\n It should be unique within its scope, which could be either a message or a field.\n"},{"path":[4,0,2,0,5],"span":[41,2,8]},{"path":[4,0,2,0,1],"span":[41,9,11]},{"path":[4,0,2,0,3],"span":[41,14,15]},{"path":[4,0,2,1],"span":[47,2,21],"leadingComments":" `message` is an optional field that provides a human-readable error message\n for this Constraint when the CEL expression evaluates to false. If a\n non-empty message is provided, any strings resulting from the CEL\n expression evaluation are ignored.\n"},{"path":[4,0,2,1,5],"span":[47,2,8]},{"path":[4,0,2,1,1],"span":[47,9,16]},{"path":[4,0,2,1,3],"span":[47,19,20]},{"path":[4,0,2,2],"span":[53,2,24],"leadingComments":" `expression` is the actual CEL expression that will be evaluated for\n validation. This string must resolve to either a boolean or a string\n value. If the expression evaluates to false or a non-empty string, the\n validation is considered failed, and the message is rejected.\n"},{"path":[4,0,2,2,5],"span":[53,2,8]},{"path":[4,0,2,2,1],"span":[53,9,19]},{"path":[4,0,2,2,3],"span":[53,22,23]},{"path":[4,1],"span":[59,0,62,1],"leadingComments":" `Violations` is a collection of `Violation` messages. This message type is returned by\n protovalidate when a proto message fails to meet the requirements set by the `Constraint` validation rules.\n Each individual violation is represented by a `Violation` message.\n"},{"path":[4,1,1],"span":[59,8,18]},{"path":[4,1,2,0],"span":[61,2,36],"leadingComments":" `violations` is a repeated field that contains all the `Violation` messages corresponding to the violations detected.\n"},{"path":[4,1,2,0,4],"span":[61,2,10]},{"path":[4,1,2,0,6],"span":[61,11,20]},{"path":[4,1,2,0,1],"span":[61,21,31]},{"path":[4,1,2,0,3],"span":[61,34,35]},{"path":[4,2],"span":[76,0,91,1],"leadingComments":" `Violation` represents a single instance where a validation rule, expressed\n as a `Constraint`, was not met. It provides information about the field that\n caused the violation, the specific constraint that wasn't fulfilled, and a\n human-readable error message.\n\n ```json\n {\n \"fieldPath\": \"bar\",\n \"constraintId\": \"foo.bar\",\n \"message\": \"bar must be greater than 0\"\n }\n ```\n"},{"path":[4,2,1],"span":[76,8,17]},{"path":[4,2,2,0],"span":[79,2,24],"leadingComments":" `field_path` is a machine-readable identifier that points to the specific field that failed the validation.\n This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.\n"},{"path":[4,2,2,0,5],"span":[79,2,8]},{"path":[4,2,2,0,1],"span":[79,9,19]},{"path":[4,2,2,0,3],"span":[79,22,23]},{"path":[4,2,2,1],"span":[83,2,27],"leadingComments":" `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.\n This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.\n"},{"path":[4,2,2,1,5],"span":[83,2,8]},{"path":[4,2,2,1,1],"span":[83,9,22]},{"path":[4,2,2,1,3],"span":[83,25,26]},{"path":[4,2,2,2],"span":[87,2,21],"leadingComments":" `message` is a human-readable error message that describes the nature of the violation.\n This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.\n"},{"path":[4,2,2,2,5],"span":[87,2,8]},{"path":[4,2,2,2,1],"span":[87,9,16]},{"path":[4,2,2,2,3],"span":[87,19,20]},{"path":[4,2,2,3],"span":[90,2,19],"leadingComments":" `for_key` indicates whether the violation was caused by a map key, rather than a value.\n"},{"path":[4,2,2,3,5],"span":[90,2,6]},{"path":[4,2,2,3,1],"span":[90,7,14]},{"path":[4,2,2,3,3],"span":[90,17,18]}]},"syntax":"proto3","bufExtension":{"isImport":true,"moduleInfo":{"name":{"remote":"buf.build","owner":"bufbuild","repository":"protovalidate"},"commit":"b983156c5e994cc9892e0ce3e64e17e0"},"isSyntaxUnspecified":false}},{"name":"google/protobuf/descriptor.proto","package":"google.protobuf","messageType":[{"name":"FileDescriptorSet","field":[{"name":"file","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FileDescriptorProto","jsonName":"file"}]},{"name":"FileDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"package","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"package"},{"name":"dependency","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dependency"},{"name":"public_dependency","number":10,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"publicDependency"},{"name":"weak_dependency","number":11,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"weakDependency"},{"name":"message_type","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto","jsonName":"messageType"},{"name":"enum_type","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumDescriptorProto","jsonName":"enumType"},{"name":"service","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.ServiceDescriptorProto","jsonName":"service"},{"name":"extension","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldDescriptorProto","jsonName":"extension"},{"name":"options","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FileOptions","jsonName":"options"},{"name":"source_code_info","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.SourceCodeInfo","jsonName":"sourceCodeInfo"},{"name":"syntax","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syntax"},{"name":"edition","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"edition"}]},{"name":"DescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"field","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldDescriptorProto","jsonName":"field"},{"name":"extension","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldDescriptorProto","jsonName":"extension"},{"name":"nested_type","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto","jsonName":"nestedType"},{"name":"enum_type","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumDescriptorProto","jsonName":"enumType"},{"name":"extension_range","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto.ExtensionRange","jsonName":"extensionRange"},{"name":"oneof_decl","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.OneofDescriptorProto","jsonName":"oneofDecl"},{"name":"options","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.MessageOptions","jsonName":"options"},{"name":"reserved_range","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DescriptorProto.ReservedRange","jsonName":"reservedRange"},{"name":"reserved_name","number":10,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"reservedName"}],"nestedType":[{"name":"ExtensionRange","field":[{"name":"start","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"start"},{"name":"end","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ExtensionRangeOptions","jsonName":"options"}]},{"name":"ReservedRange","field":[{"name":"start","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"start"},{"name":"end","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"}]}]},{"name":"ExtensionRangeOptions","field":[{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"},{"name":"declaration","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.ExtensionRangeOptions.Declaration","jsonName":"declaration","options":{"retention":"RETENTION_SOURCE"}},{"name":"features","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"verification","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.ExtensionRangeOptions.VerificationState","defaultValue":"UNVERIFIED","jsonName":"verification"}],"nestedType":[{"name":"Declaration","field":[{"name":"number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"full_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fullName"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"reserved","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"reserved"},{"name":"repeated","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"repeated"}],"reservedRange":[{"start":4,"end":5}]}],"enumType":[{"name":"VerificationState","value":[{"name":"DECLARATION","number":0},{"name":"UNVERIFIED","number":1}]}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"FieldDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"label","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldDescriptorProto.Label","jsonName":"label"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldDescriptorProto.Type","jsonName":"type"},{"name":"type_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"extendee","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"extendee"},{"name":"default_value","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"defaultValue"},{"name":"oneof_index","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"oneofIndex"},{"name":"json_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"jsonName"},{"name":"options","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldOptions","jsonName":"options"},{"name":"proto3_optional","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"proto3Optional"}],"enumType":[{"name":"Type","value":[{"name":"TYPE_DOUBLE","number":1},{"name":"TYPE_FLOAT","number":2},{"name":"TYPE_INT64","number":3},{"name":"TYPE_UINT64","number":4},{"name":"TYPE_INT32","number":5},{"name":"TYPE_FIXED64","number":6},{"name":"TYPE_FIXED32","number":7},{"name":"TYPE_BOOL","number":8},{"name":"TYPE_STRING","number":9},{"name":"TYPE_GROUP","number":10},{"name":"TYPE_MESSAGE","number":11},{"name":"TYPE_BYTES","number":12},{"name":"TYPE_UINT32","number":13},{"name":"TYPE_ENUM","number":14},{"name":"TYPE_SFIXED32","number":15},{"name":"TYPE_SFIXED64","number":16},{"name":"TYPE_SINT32","number":17},{"name":"TYPE_SINT64","number":18}]},{"name":"Label","value":[{"name":"LABEL_OPTIONAL","number":1},{"name":"LABEL_REPEATED","number":3},{"name":"LABEL_REQUIRED","number":2}]}]},{"name":"OneofDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"options","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.OneofOptions","jsonName":"options"}]},{"name":"EnumDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"value","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumValueDescriptorProto","jsonName":"value"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumOptions","jsonName":"options"},{"name":"reserved_range","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumDescriptorProto.EnumReservedRange","jsonName":"reservedRange"},{"name":"reserved_name","number":5,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"reservedName"}],"nestedType":[{"name":"EnumReservedRange","field":[{"name":"start","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"start"},{"name":"end","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"}]}]},{"name":"EnumValueDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.EnumValueOptions","jsonName":"options"}]},{"name":"ServiceDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"method","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.MethodDescriptorProto","jsonName":"method"},{"name":"options","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ServiceOptions","jsonName":"options"}]},{"name":"MethodDescriptorProto","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"input_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"inputType"},{"name":"output_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"outputType"},{"name":"options","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.MethodOptions","jsonName":"options"},{"name":"client_streaming","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"clientStreaming"},{"name":"server_streaming","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"serverStreaming"}]},{"name":"FileOptions","field":[{"name":"java_package","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"javaPackage"},{"name":"java_outer_classname","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"javaOuterClassname"},{"name":"java_multiple_files","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"javaMultipleFiles"},{"name":"java_generate_equals_and_hash","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"javaGenerateEqualsAndHash","options":{"deprecated":true}},{"name":"java_string_check_utf8","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"javaStringCheckUtf8"},{"name":"optimize_for","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FileOptions.OptimizeMode","defaultValue":"SPEED","jsonName":"optimizeFor"},{"name":"go_package","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"goPackage"},{"name":"cc_generic_services","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"ccGenericServices"},{"name":"java_generic_services","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"javaGenericServices"},{"name":"py_generic_services","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"pyGenericServices"},{"name":"php_generic_services","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"phpGenericServices"},{"name":"deprecated","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"cc_enable_arenas","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"true","jsonName":"ccEnableArenas"},{"name":"objc_class_prefix","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"objcClassPrefix"},{"name":"csharp_namespace","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"csharpNamespace"},{"name":"swift_prefix","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swiftPrefix"},{"name":"php_class_prefix","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"phpClassPrefix"},{"name":"php_namespace","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"phpNamespace"},{"name":"php_metadata_namespace","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"phpMetadataNamespace"},{"name":"ruby_package","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rubyPackage"},{"name":"features","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"enumType":[{"name":"OptimizeMode","value":[{"name":"SPEED","number":1},{"name":"CODE_SIZE","number":2},{"name":"LITE_RUNTIME","number":3}]}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":38,"end":39}]},{"name":"MessageOptions","field":[{"name":"message_set_wire_format","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"messageSetWireFormat"},{"name":"no_standard_descriptor_accessor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"noStandardDescriptorAccessor"},{"name":"deprecated","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"map_entry","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mapEntry"},{"name":"deprecated_legacy_json_field_conflicts","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"deprecatedLegacyJsonFieldConflicts","options":{"deprecated":true}},{"name":"features","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":4,"end":5},{"start":5,"end":6},{"start":6,"end":7},{"start":8,"end":9},{"start":9,"end":10}]},{"name":"FieldOptions","field":[{"name":"ctype","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.CType","defaultValue":"STRING","jsonName":"ctype"},{"name":"packed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"packed"},{"name":"jstype","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.JSType","defaultValue":"JS_NORMAL","jsonName":"jstype"},{"name":"lazy","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"lazy"},{"name":"unverified_lazy","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"unverifiedLazy"},{"name":"deprecated","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"weak","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"weak"},{"name":"debug_redact","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"debugRedact"},{"name":"retention","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.OptionRetention","jsonName":"retention"},{"name":"targets","number":19,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".google.protobuf.FieldOptions.OptionTargetType","jsonName":"targets"},{"name":"edition_defaults","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FieldOptions.EditionDefault","jsonName":"editionDefaults"},{"name":"features","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"nestedType":[{"name":"EditionDefault","field":[{"name":"edition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"edition"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]}],"enumType":[{"name":"CType","value":[{"name":"STRING","number":0},{"name":"CORD","number":1},{"name":"STRING_PIECE","number":2}]},{"name":"JSType","value":[{"name":"JS_NORMAL","number":0},{"name":"JS_STRING","number":1},{"name":"JS_NUMBER","number":2}]},{"name":"OptionRetention","value":[{"name":"RETENTION_UNKNOWN","number":0},{"name":"RETENTION_RUNTIME","number":1},{"name":"RETENTION_SOURCE","number":2}]},{"name":"OptionTargetType","value":[{"name":"TARGET_TYPE_UNKNOWN","number":0},{"name":"TARGET_TYPE_FILE","number":1},{"name":"TARGET_TYPE_EXTENSION_RANGE","number":2},{"name":"TARGET_TYPE_MESSAGE","number":3},{"name":"TARGET_TYPE_FIELD","number":4},{"name":"TARGET_TYPE_ONEOF","number":5},{"name":"TARGET_TYPE_ENUM","number":6},{"name":"TARGET_TYPE_ENUM_ENTRY","number":7},{"name":"TARGET_TYPE_SERVICE","number":8},{"name":"TARGET_TYPE_METHOD","number":9}]}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":4,"end":5},{"start":18,"end":19}]},{"name":"OneofOptions","field":[{"name":"features","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"EnumOptions","field":[{"name":"allow_alias","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"allowAlias"},{"name":"deprecated","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"deprecated_legacy_json_field_conflicts","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"deprecatedLegacyJsonFieldConflicts","options":{"deprecated":true}},{"name":"features","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}],"reservedRange":[{"start":5,"end":6}]},{"name":"EnumValueOptions","field":[{"name":"deprecated","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"features","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"debug_redact","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"debugRedact"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"ServiceOptions","field":[{"name":"features","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"deprecated","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"MethodOptions","field":[{"name":"deprecated","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","defaultValue":"false","jsonName":"deprecated"},{"name":"idempotency_level","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.MethodOptions.IdempotencyLevel","defaultValue":"IDEMPOTENCY_UNKNOWN","jsonName":"idempotencyLevel"},{"name":"features","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"},{"name":"uninterpreted_option","number":999,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption","jsonName":"uninterpretedOption"}],"enumType":[{"name":"IdempotencyLevel","value":[{"name":"IDEMPOTENCY_UNKNOWN","number":0},{"name":"NO_SIDE_EFFECTS","number":1},{"name":"IDEMPOTENT","number":2}]}],"extensionRange":[{"start":1000,"end":536870912}]},{"name":"UninterpretedOption","field":[{"name":"name","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UninterpretedOption.NamePart","jsonName":"name"},{"name":"identifier_value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"identifierValue"},{"name":"positive_int_value","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"positiveIntValue"},{"name":"negative_int_value","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"negativeIntValue"},{"name":"double_value","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"doubleValue"},{"name":"string_value","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"stringValue"},{"name":"aggregate_value","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"aggregateValue"}],"nestedType":[{"name":"NamePart","field":[{"name":"name_part","number":1,"label":"LABEL_REQUIRED","type":"TYPE_STRING","jsonName":"namePart"},{"name":"is_extension","number":2,"label":"LABEL_REQUIRED","type":"TYPE_BOOL","jsonName":"isExtension"}]}]},{"name":"FeatureSet","field":[{"name":"field_presence","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.FieldPresence","jsonName":"fieldPresence","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"EXPLICIT"},{"edition":"EDITION_PROTO3","value":"IMPLICIT"},{"edition":"EDITION_2023","value":"EXPLICIT"}]}},{"name":"enum_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.EnumType","jsonName":"enumType","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_ENUM","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"CLOSED"},{"edition":"EDITION_PROTO3","value":"OPEN"}]}},{"name":"repeated_field_encoding","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.RepeatedFieldEncoding","jsonName":"repeatedFieldEncoding","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"EXPANDED"},{"edition":"EDITION_PROTO3","value":"PACKED"}]}},{"name":"utf8_validation","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.Utf8Validation","jsonName":"utf8Validation","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"NONE"},{"edition":"EDITION_PROTO3","value":"VERIFY"}]}},{"name":"message_encoding","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.MessageEncoding","jsonName":"messageEncoding","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_FIELD","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"LENGTH_PREFIXED"}]}},{"name":"json_format","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.FeatureSet.JsonFormat","jsonName":"jsonFormat","options":{"retention":"RETENTION_RUNTIME","targets":["TARGET_TYPE_MESSAGE","TARGET_TYPE_ENUM","TARGET_TYPE_FILE"],"editionDefaults":[{"edition":"EDITION_PROTO2","value":"LEGACY_BEST_EFFORT"},{"edition":"EDITION_PROTO3","value":"ALLOW"}]}}],"enumType":[{"name":"FieldPresence","value":[{"name":"FIELD_PRESENCE_UNKNOWN","number":0},{"name":"EXPLICIT","number":1},{"name":"IMPLICIT","number":2},{"name":"LEGACY_REQUIRED","number":3}]},{"name":"EnumType","value":[{"name":"ENUM_TYPE_UNKNOWN","number":0},{"name":"OPEN","number":1},{"name":"CLOSED","number":2}]},{"name":"RepeatedFieldEncoding","value":[{"name":"REPEATED_FIELD_ENCODING_UNKNOWN","number":0},{"name":"PACKED","number":1},{"name":"EXPANDED","number":2}]},{"name":"Utf8Validation","value":[{"name":"UTF8_VALIDATION_UNKNOWN","number":0},{"name":"NONE","number":1},{"name":"VERIFY","number":2}]},{"name":"MessageEncoding","value":[{"name":"MESSAGE_ENCODING_UNKNOWN","number":0},{"name":"LENGTH_PREFIXED","number":1},{"name":"DELIMITED","number":2}]},{"name":"JsonFormat","value":[{"name":"JSON_FORMAT_UNKNOWN","number":0},{"name":"ALLOW","number":1},{"name":"LEGACY_BEST_EFFORT","number":2}]}],"extensionRange":[{"start":1000,"end":1001},{"start":1001,"end":1002},{"start":9995,"end":10000}],"reservedRange":[{"start":999,"end":1000}]},{"name":"FeatureSetDefaults","field":[{"name":"defaults","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault","jsonName":"defaults"},{"name":"minimum_edition","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"minimumEdition"},{"name":"maximum_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"maximumEdition"}],"nestedType":[{"name":"FeatureSetEditionDefault","field":[{"name":"edition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.Edition","jsonName":"edition"},{"name":"features","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FeatureSet","jsonName":"features"}]}]},{"name":"SourceCodeInfo","field":[{"name":"location","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.SourceCodeInfo.Location","jsonName":"location"}],"nestedType":[{"name":"Location","field":[{"name":"path","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"path","options":{"packed":true}},{"name":"span","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"span","options":{"packed":true}},{"name":"leading_comments","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"leadingComments"},{"name":"trailing_comments","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trailingComments"},{"name":"leading_detached_comments","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"leadingDetachedComments"}]}]},{"name":"GeneratedCodeInfo","field":[{"name":"annotation","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.GeneratedCodeInfo.Annotation","jsonName":"annotation"}],"nestedType":[{"name":"Annotation","field":[{"name":"path","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"path","options":{"packed":true}},{"name":"source_file","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceFile"},{"name":"begin","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"begin"},{"name":"end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"end"},{"name":"semantic","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.GeneratedCodeInfo.Annotation.Semantic","jsonName":"semantic"}],"enumType":[{"name":"Semantic","value":[{"name":"NONE","number":0},{"name":"SET","number":1},{"name":"ALIAS","number":2}]}]}]}],"enumType":[{"name":"Edition","value":[{"name":"EDITION_UNKNOWN","number":0},{"name":"EDITION_PROTO2","number":998},{"name":"EDITION_PROTO3","number":999},{"name":"EDITION_2023","number":1000},{"name":"EDITION_1_TEST_ONLY","number":1},{"name":"EDITION_2_TEST_ONLY","number":2},{"name":"EDITION_99997_TEST_ONLY","number":99997},{"name":"EDITION_99998_TEST_ONLY","number":99998},{"name":"EDITION_99999_TEST_ONLY","number":99999}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"DescriptorProtos","optimizeFor":"SPEED","goPackage":"google.golang.org/protobuf/types/descriptorpb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.Reflection"},"sourceCodeInfo":{"location":[{"span":[38,0,1217,1]},{"path":[12],"span":[38,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"," Author: kenton@google.com (Kenton Varda)\n Based on original Protocol Buffers design by\n Sanjay Ghemawat, Jeff Dean, and others.\n\n The messages in this file describe the definitions found in .proto files.\n A valid .proto file can be translated directly to a FileDescriptorProto\n without any other information (e.g. without reading its imports).\n"]},{"path":[2],"span":[40,0,24]},{"path":[8],"span":[42,0,68]},{"path":[8,11],"span":[42,0,68]},{"path":[8],"span":[43,0,44]},{"path":[8,1],"span":[43,0,44]},{"path":[8],"span":[44,0,49]},{"path":[8,8],"span":[44,0,49]},{"path":[8],"span":[45,0,55]},{"path":[8,37],"span":[45,0,55]},{"path":[8],"span":[46,0,33]},{"path":[8,36],"span":[46,0,33]},{"path":[8],"span":[47,0,31]},{"path":[8,31],"span":[47,0,31]},{"path":[8],"span":[51,0,28]},{"path":[8,9],"span":[51,0,28],"leadingComments":" descriptor.proto must be optimized for speed because reflection-based\n algorithms don't work during bootstrapping.\n"},{"path":[4,0],"span":[55,0,57,1],"leadingComments":" The protocol compiler can output a FileDescriptorSet containing the .proto\n files it parses.\n"},{"path":[4,0,1],"span":[55,8,25]},{"path":[4,0,2,0],"span":[56,2,40]},{"path":[4,0,2,0,4],"span":[56,2,10]},{"path":[4,0,2,0,6],"span":[56,11,30]},{"path":[4,0,2,0,1],"span":[56,31,35]},{"path":[4,0,2,0,3],"span":[56,38,39]},{"path":[5,0],"span":[60,0,83,1],"leadingComments":" The full set of known editions.\n"},{"path":[5,0,1],"span":[60,5,12]},{"path":[5,0,2,0],"span":[62,2,22],"leadingComments":" A placeholder for an unknown edition value.\n"},{"path":[5,0,2,0,1],"span":[62,2,17]},{"path":[5,0,2,0,2],"span":[62,20,21]},{"path":[5,0,2,1],"span":[68,2,23],"leadingComments":" Legacy syntax \"editions\". These pre-date editions, but behave much like\n distinct editions. These can't be used to specify the edition of proto\n files, but feature definitions must supply proto2/proto3 defaults for\n backwards compatibility.\n"},{"path":[5,0,2,1,1],"span":[68,2,16]},{"path":[5,0,2,1,2],"span":[68,19,22]},{"path":[5,0,2,2],"span":[69,2,23]},{"path":[5,0,2,2,1],"span":[69,2,16]},{"path":[5,0,2,2,2],"span":[69,19,22]},{"path":[5,0,2,3],"span":[74,2,22],"leadingComments":" Editions that have been released. The specific values are arbitrary and\n should not be depended on, but they will always be time-ordered for easy\n comparison.\n"},{"path":[5,0,2,3,1],"span":[74,2,14]},{"path":[5,0,2,3,2],"span":[74,17,21]},{"path":[5,0,2,4],"span":[78,2,26],"leadingComments":" Placeholder editions for testing feature resolution. These should not be\n used or relyed on outside of tests.\n"},{"path":[5,0,2,4,1],"span":[78,2,21]},{"path":[5,0,2,4,2],"span":[78,24,25]},{"path":[5,0,2,5],"span":[79,2,26]},{"path":[5,0,2,5,1],"span":[79,2,21]},{"path":[5,0,2,5,2],"span":[79,24,25]},{"path":[5,0,2,6],"span":[80,2,34]},{"path":[5,0,2,6,1],"span":[80,2,25]},{"path":[5,0,2,6,2],"span":[80,28,33]},{"path":[5,0,2,7],"span":[81,2,34]},{"path":[5,0,2,7,1],"span":[81,2,25]},{"path":[5,0,2,7,2],"span":[81,28,33]},{"path":[5,0,2,8],"span":[82,2,34]},{"path":[5,0,2,8,1],"span":[82,2,25]},{"path":[5,0,2,8,2],"span":[82,28,33]},{"path":[4,1],"span":[86,0,120,1],"leadingComments":" Describes a complete .proto file.\n"},{"path":[4,1,1],"span":[86,8,27]},{"path":[4,1,2,0],"span":[87,2,27],"trailingComments":" file name, relative to root of source tree\n"},{"path":[4,1,2,0,4],"span":[87,2,10]},{"path":[4,1,2,0,5],"span":[87,11,17]},{"path":[4,1,2,0,1],"span":[87,18,22]},{"path":[4,1,2,0,3],"span":[87,25,26]},{"path":[4,1,2,1],"span":[88,2,30],"trailingComments":" e.g. \"foo\", \"foo.bar\", etc.\n"},{"path":[4,1,2,1,4],"span":[88,2,10]},{"path":[4,1,2,1,5],"span":[88,11,17]},{"path":[4,1,2,1,1],"span":[88,18,25]},{"path":[4,1,2,1,3],"span":[88,28,29]},{"path":[4,1,2,2],"span":[91,2,33],"leadingComments":" Names of files imported by this file.\n"},{"path":[4,1,2,2,4],"span":[91,2,10]},{"path":[4,1,2,2,5],"span":[91,11,17]},{"path":[4,1,2,2,1],"span":[91,18,28]},{"path":[4,1,2,2,3],"span":[91,31,32]},{"path":[4,1,2,3],"span":[93,2,40],"leadingComments":" Indexes of the public imported files in the dependency list above.\n"},{"path":[4,1,2,3,4],"span":[93,2,10]},{"path":[4,1,2,3,5],"span":[93,11,16]},{"path":[4,1,2,3,1],"span":[93,17,34]},{"path":[4,1,2,3,3],"span":[93,37,39]},{"path":[4,1,2,4],"span":[96,2,38],"leadingComments":" Indexes of the weak imported files in the dependency list.\n For Google-internal migration only. Do not use.\n"},{"path":[4,1,2,4,4],"span":[96,2,10]},{"path":[4,1,2,4,5],"span":[96,11,16]},{"path":[4,1,2,4,1],"span":[96,17,32]},{"path":[4,1,2,4,3],"span":[96,35,37]},{"path":[4,1,2,5],"span":[99,2,44],"leadingComments":" All top-level definitions in this file.\n"},{"path":[4,1,2,5,4],"span":[99,2,10]},{"path":[4,1,2,5,6],"span":[99,11,26]},{"path":[4,1,2,5,1],"span":[99,27,39]},{"path":[4,1,2,5,3],"span":[99,42,43]},{"path":[4,1,2,6],"span":[100,2,45]},{"path":[4,1,2,6,4],"span":[100,2,10]},{"path":[4,1,2,6,6],"span":[100,11,30]},{"path":[4,1,2,6,1],"span":[100,31,40]},{"path":[4,1,2,6,3],"span":[100,43,44]},{"path":[4,1,2,7],"span":[101,2,46]},{"path":[4,1,2,7,4],"span":[101,2,10]},{"path":[4,1,2,7,6],"span":[101,11,33]},{"path":[4,1,2,7,1],"span":[101,34,41]},{"path":[4,1,2,7,3],"span":[101,44,45]},{"path":[4,1,2,8],"span":[102,2,46]},{"path":[4,1,2,8,4],"span":[102,2,10]},{"path":[4,1,2,8,6],"span":[102,11,31]},{"path":[4,1,2,8,1],"span":[102,32,41]},{"path":[4,1,2,8,3],"span":[102,44,45]},{"path":[4,1,2,9],"span":[104,2,35]},{"path":[4,1,2,9,4],"span":[104,2,10]},{"path":[4,1,2,9,6],"span":[104,11,22]},{"path":[4,1,2,9,1],"span":[104,23,30]},{"path":[4,1,2,9,3],"span":[104,33,34]},{"path":[4,1,2,10],"span":[110,2,47],"leadingComments":" This field contains optional information about the original source code.\n You may safely remove this entire field without harming runtime\n functionality of the descriptors -- the information is needed only by\n development tools.\n"},{"path":[4,1,2,10,4],"span":[110,2,10]},{"path":[4,1,2,10,6],"span":[110,11,25]},{"path":[4,1,2,10,1],"span":[110,26,42]},{"path":[4,1,2,10,3],"span":[110,45,46]},{"path":[4,1,2,11],"span":[116,2,30],"leadingComments":" The syntax of the proto file.\n The supported values are \"proto2\", \"proto3\", and \"editions\".\n\n If `edition` is present, this value must be \"editions\".\n"},{"path":[4,1,2,11,4],"span":[116,2,10]},{"path":[4,1,2,11,5],"span":[116,11,17]},{"path":[4,1,2,11,1],"span":[116,18,24]},{"path":[4,1,2,11,3],"span":[116,27,29]},{"path":[4,1,2,12],"span":[119,2,32],"leadingComments":" The edition of the proto file.\n"},{"path":[4,1,2,12,4],"span":[119,2,10]},{"path":[4,1,2,12,6],"span":[119,11,18]},{"path":[4,1,2,12,1],"span":[119,19,26]},{"path":[4,1,2,12,3],"span":[119,29,31]},{"path":[4,2],"span":[123,0,155,1],"leadingComments":" Describes a message type.\n"},{"path":[4,2,1],"span":[123,8,23]},{"path":[4,2,2,0],"span":[124,2,27]},{"path":[4,2,2,0,4],"span":[124,2,10]},{"path":[4,2,2,0,5],"span":[124,11,17]},{"path":[4,2,2,0,1],"span":[124,18,22]},{"path":[4,2,2,0,3],"span":[124,25,26]},{"path":[4,2,2,1],"span":[126,2,42]},{"path":[4,2,2,1,4],"span":[126,2,10]},{"path":[4,2,2,1,6],"span":[126,11,31]},{"path":[4,2,2,1,1],"span":[126,32,37]},{"path":[4,2,2,1,3],"span":[126,40,41]},{"path":[4,2,2,2],"span":[127,2,46]},{"path":[4,2,2,2,4],"span":[127,2,10]},{"path":[4,2,2,2,6],"span":[127,11,31]},{"path":[4,2,2,2,1],"span":[127,32,41]},{"path":[4,2,2,2,3],"span":[127,44,45]},{"path":[4,2,2,3],"span":[129,2,43]},{"path":[4,2,2,3,4],"span":[129,2,10]},{"path":[4,2,2,3,6],"span":[129,11,26]},{"path":[4,2,2,3,1],"span":[129,27,38]},{"path":[4,2,2,3,3],"span":[129,41,42]},{"path":[4,2,2,4],"span":[130,2,45]},{"path":[4,2,2,4,4],"span":[130,2,10]},{"path":[4,2,2,4,6],"span":[130,11,30]},{"path":[4,2,2,4,1],"span":[130,31,40]},{"path":[4,2,2,4,3],"span":[130,43,44]},{"path":[4,2,3,0],"span":[132,2,137,3]},{"path":[4,2,3,0,1],"span":[132,10,24]},{"path":[4,2,3,0,2,0],"span":[133,4,29],"trailingComments":" Inclusive.\n"},{"path":[4,2,3,0,2,0,4],"span":[133,4,12]},{"path":[4,2,3,0,2,0,5],"span":[133,13,18]},{"path":[4,2,3,0,2,0,1],"span":[133,19,24]},{"path":[4,2,3,0,2,0,3],"span":[133,27,28]},{"path":[4,2,3,0,2,1],"span":[134,4,27],"trailingComments":" Exclusive.\n"},{"path":[4,2,3,0,2,1,4],"span":[134,4,12]},{"path":[4,2,3,0,2,1,5],"span":[134,13,18]},{"path":[4,2,3,0,2,1,1],"span":[134,19,22]},{"path":[4,2,3,0,2,1,3],"span":[134,25,26]},{"path":[4,2,3,0,2,2],"span":[136,4,47]},{"path":[4,2,3,0,2,2,4],"span":[136,4,12]},{"path":[4,2,3,0,2,2,6],"span":[136,13,34]},{"path":[4,2,3,0,2,2,1],"span":[136,35,42]},{"path":[4,2,3,0,2,2,3],"span":[136,45,46]},{"path":[4,2,2,5],"span":[138,2,46]},{"path":[4,2,2,5,4],"span":[138,2,10]},{"path":[4,2,2,5,6],"span":[138,11,25]},{"path":[4,2,2,5,1],"span":[138,26,41]},{"path":[4,2,2,5,3],"span":[138,44,45]},{"path":[4,2,2,6],"span":[140,2,47]},{"path":[4,2,2,6,4],"span":[140,2,10]},{"path":[4,2,2,6,6],"span":[140,11,31]},{"path":[4,2,2,6,1],"span":[140,32,42]},{"path":[4,2,2,6,3],"span":[140,45,46]},{"path":[4,2,2,7],"span":[142,2,38]},{"path":[4,2,2,7,4],"span":[142,2,10]},{"path":[4,2,2,7,6],"span":[142,11,25]},{"path":[4,2,2,7,1],"span":[142,26,33]},{"path":[4,2,2,7,3],"span":[142,36,37]},{"path":[4,2,3,1],"span":[147,2,150,3],"leadingComments":" Range of reserved tag numbers. Reserved tag numbers may not be used by\n fields or extension ranges in the same message. Reserved ranges may\n not overlap.\n"},{"path":[4,2,3,1,1],"span":[147,10,23]},{"path":[4,2,3,1,2,0],"span":[148,4,29],"trailingComments":" Inclusive.\n"},{"path":[4,2,3,1,2,0,4],"span":[148,4,12]},{"path":[4,2,3,1,2,0,5],"span":[148,13,18]},{"path":[4,2,3,1,2,0,1],"span":[148,19,24]},{"path":[4,2,3,1,2,0,3],"span":[148,27,28]},{"path":[4,2,3,1,2,1],"span":[149,4,27],"trailingComments":" Exclusive.\n"},{"path":[4,2,3,1,2,1,4],"span":[149,4,12]},{"path":[4,2,3,1,2,1,5],"span":[149,13,18]},{"path":[4,2,3,1,2,1,1],"span":[149,19,22]},{"path":[4,2,3,1,2,1,3],"span":[149,25,26]},{"path":[4,2,2,8],"span":[151,2,44]},{"path":[4,2,2,8,4],"span":[151,2,10]},{"path":[4,2,2,8,6],"span":[151,11,24]},{"path":[4,2,2,8,1],"span":[151,25,39]},{"path":[4,2,2,8,3],"span":[151,42,43]},{"path":[4,2,2,9],"span":[154,2,37],"leadingComments":" Reserved field names, which may not be used by fields in the same message.\n A given name may only be reserved once.\n"},{"path":[4,2,2,9,4],"span":[154,2,10]},{"path":[4,2,2,9,5],"span":[154,11,17]},{"path":[4,2,2,9,1],"span":[154,18,31]},{"path":[4,2,2,9,3],"span":[154,34,36]},{"path":[4,3],"span":[157,0,208,1]},{"path":[4,3,1],"span":[157,8,29]},{"path":[4,3,2,0],"span":[159,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,3,2,0,4],"span":[159,2,10]},{"path":[4,3,2,0,6],"span":[159,11,30]},{"path":[4,3,2,0,1],"span":[159,31,51]},{"path":[4,3,2,0,3],"span":[159,54,57]},{"path":[4,3,3,0],"span":[161,2,184,3]},{"path":[4,3,3,0,1],"span":[161,10,21]},{"path":[4,3,3,0,2,0],"span":[163,4,30],"leadingComments":" The extension number declared within the extension range.\n"},{"path":[4,3,3,0,2,0,4],"span":[163,4,12]},{"path":[4,3,3,0,2,0,5],"span":[163,13,18]},{"path":[4,3,3,0,2,0,1],"span":[163,19,25]},{"path":[4,3,3,0,2,0,3],"span":[163,28,29]},{"path":[4,3,3,0,2,1],"span":[167,4,34],"leadingComments":" The fully-qualified name of the extension field. There must be a leading\n dot in front of the full name.\n"},{"path":[4,3,3,0,2,1,4],"span":[167,4,12]},{"path":[4,3,3,0,2,1,5],"span":[167,13,19]},{"path":[4,3,3,0,2,1,1],"span":[167,20,29]},{"path":[4,3,3,0,2,1,3],"span":[167,32,33]},{"path":[4,3,3,0,2,2],"span":[172,4,29],"leadingComments":" The fully-qualified type name of the extension field. Unlike\n Metadata.type, Declaration.type must have a leading dot for messages\n and enums.\n"},{"path":[4,3,3,0,2,2,4],"span":[172,4,12]},{"path":[4,3,3,0,2,2,5],"span":[172,13,19]},{"path":[4,3,3,0,2,2,1],"span":[172,20,24]},{"path":[4,3,3,0,2,2,3],"span":[172,27,28]},{"path":[4,3,3,0,2,3],"span":[177,4,31],"leadingComments":" If true, indicates that the number is reserved in the extension range,\n and any extension field with the number will fail to compile. Set this\n when a declared extension field is deleted.\n"},{"path":[4,3,3,0,2,3,4],"span":[177,4,12]},{"path":[4,3,3,0,2,3,5],"span":[177,13,17]},{"path":[4,3,3,0,2,3,1],"span":[177,18,26]},{"path":[4,3,3,0,2,3,3],"span":[177,29,30]},{"path":[4,3,3,0,2,4],"span":[181,4,31],"leadingComments":" If true, indicates that the extension must be defined as repeated.\n Otherwise the extension must be defined as optional.\n"},{"path":[4,3,3,0,2,4,4],"span":[181,4,12]},{"path":[4,3,3,0,2,4,5],"span":[181,13,17]},{"path":[4,3,3,0,2,4,1],"span":[181,18,26]},{"path":[4,3,3,0,2,4,3],"span":[181,29,30]},{"path":[4,3,3,0,9],"span":[183,4,15],"trailingComments":" removed is_repeated\n"},{"path":[4,3,3,0,9,0],"span":[183,13,14]},{"path":[4,3,3,0,9,0,1],"span":[183,13,14]},{"path":[4,3,3,0,9,0,2],"span":[183,13,14]},{"path":[4,3,2,1],"span":[189,2,70],"leadingComments":" For external users: DO NOT USE. We are in the process of open sourcing\n extension declaration and executing internal cleanups before it can be\n used externally.\n"},{"path":[4,3,2,1,4],"span":[189,2,10]},{"path":[4,3,2,1,6],"span":[189,11,22]},{"path":[4,3,2,1,1],"span":[189,23,34]},{"path":[4,3,2,1,3],"span":[189,37,38]},{"path":[4,3,2,1,8],"span":[189,39,69]},{"path":[4,3,2,1,8,17],"span":[189,40,68]},{"path":[4,3,2,2],"span":[192,2,36],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,3,2,2,4],"span":[192,2,10]},{"path":[4,3,2,2,6],"span":[192,11,21]},{"path":[4,3,2,2,1],"span":[192,22,30]},{"path":[4,3,2,2,3],"span":[192,33,35]},{"path":[4,3,4,0],"span":[195,2,199,3],"leadingComments":" The verification state of the extension range.\n"},{"path":[4,3,4,0,1],"span":[195,7,24]},{"path":[4,3,4,0,2,0],"span":[197,4,20],"leadingComments":" All the extensions of the range must be declared.\n"},{"path":[4,3,4,0,2,0,1],"span":[197,4,15]},{"path":[4,3,4,0,2,0,2],"span":[197,18,19]},{"path":[4,3,4,0,2,1],"span":[198,4,19]},{"path":[4,3,4,0,2,1,1],"span":[198,4,14]},{"path":[4,3,4,0,2,1,2],"span":[198,17,18]},{"path":[4,3,2,3],"span":[204,2,69],"leadingComments":" The verification state of the range.\n TODO: flip the default to DECLARATION once all empty ranges\n are marked as UNVERIFIED.\n"},{"path":[4,3,2,3,4],"span":[204,2,10]},{"path":[4,3,2,3,6],"span":[204,11,28]},{"path":[4,3,2,3,1],"span":[204,29,41]},{"path":[4,3,2,3,3],"span":[204,44,45]},{"path":[4,3,2,3,8],"span":[204,46,68]},{"path":[4,3,2,3,7],"span":[204,47,67]},{"path":[4,3,5],"span":[207,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,3,5,0],"span":[207,13,24]},{"path":[4,3,5,0,1],"span":[207,13,17]},{"path":[4,3,5,0,2],"span":[207,21,24]},{"path":[4,4],"span":[211,0,315,1],"leadingComments":" Describes a field within a message.\n"},{"path":[4,4,1],"span":[211,8,28]},{"path":[4,4,4,0],"span":[212,2,244,3]},{"path":[4,4,4,0,1],"span":[212,7,11]},{"path":[4,4,4,0,2,0],"span":[215,4,20],"leadingComments":" 0 is reserved for errors.\n Order is weird for historical reasons.\n"},{"path":[4,4,4,0,2,0,1],"span":[215,4,15]},{"path":[4,4,4,0,2,0,2],"span":[215,18,19]},{"path":[4,4,4,0,2,1],"span":[216,4,19]},{"path":[4,4,4,0,2,1,1],"span":[216,4,14]},{"path":[4,4,4,0,2,1,2],"span":[216,17,18]},{"path":[4,4,4,0,2,2],"span":[219,4,19],"leadingComments":" Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if\n negative values are likely.\n"},{"path":[4,4,4,0,2,2,1],"span":[219,4,14]},{"path":[4,4,4,0,2,2,2],"span":[219,17,18]},{"path":[4,4,4,0,2,3],"span":[220,4,20]},{"path":[4,4,4,0,2,3,1],"span":[220,4,15]},{"path":[4,4,4,0,2,3,2],"span":[220,18,19]},{"path":[4,4,4,0,2,4],"span":[223,4,19],"leadingComments":" Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if\n negative values are likely.\n"},{"path":[4,4,4,0,2,4,1],"span":[223,4,14]},{"path":[4,4,4,0,2,4,2],"span":[223,17,18]},{"path":[4,4,4,0,2,5],"span":[224,4,21]},{"path":[4,4,4,0,2,5,1],"span":[224,4,16]},{"path":[4,4,4,0,2,5,2],"span":[224,19,20]},{"path":[4,4,4,0,2,6],"span":[225,4,21]},{"path":[4,4,4,0,2,6,1],"span":[225,4,16]},{"path":[4,4,4,0,2,6,2],"span":[225,19,20]},{"path":[4,4,4,0,2,7],"span":[226,4,18]},{"path":[4,4,4,0,2,7,1],"span":[226,4,13]},{"path":[4,4,4,0,2,7,2],"span":[226,16,17]},{"path":[4,4,4,0,2,8],"span":[227,4,20]},{"path":[4,4,4,0,2,8,1],"span":[227,4,15]},{"path":[4,4,4,0,2,8,2],"span":[227,18,19]},{"path":[4,4,4,0,2,9],"span":[233,4,20],"leadingComments":" Tag-delimited aggregate.\n Group type is deprecated and not supported after google.protobuf. However, Proto3\n implementations should still be able to parse the group wire format and\n treat group fields as unknown fields. In Editions, the group wire format\n can be enabled via the `message_encoding` feature.\n"},{"path":[4,4,4,0,2,9,1],"span":[233,4,14]},{"path":[4,4,4,0,2,9,2],"span":[233,17,19]},{"path":[4,4,4,0,2,10],"span":[234,4,22],"trailingComments":" Length-delimited aggregate.\n"},{"path":[4,4,4,0,2,10,1],"span":[234,4,16]},{"path":[4,4,4,0,2,10,2],"span":[234,19,21]},{"path":[4,4,4,0,2,11],"span":[237,4,20],"leadingComments":" New in version 2.\n"},{"path":[4,4,4,0,2,11,1],"span":[237,4,14]},{"path":[4,4,4,0,2,11,2],"span":[237,17,19]},{"path":[4,4,4,0,2,12],"span":[238,4,21]},{"path":[4,4,4,0,2,12,1],"span":[238,4,15]},{"path":[4,4,4,0,2,12,2],"span":[238,18,20]},{"path":[4,4,4,0,2,13],"span":[239,4,19]},{"path":[4,4,4,0,2,13,1],"span":[239,4,13]},{"path":[4,4,4,0,2,13,2],"span":[239,16,18]},{"path":[4,4,4,0,2,14],"span":[240,4,23]},{"path":[4,4,4,0,2,14,1],"span":[240,4,17]},{"path":[4,4,4,0,2,14,2],"span":[240,20,22]},{"path":[4,4,4,0,2,15],"span":[241,4,23]},{"path":[4,4,4,0,2,15,1],"span":[241,4,17]},{"path":[4,4,4,0,2,15,2],"span":[241,20,22]},{"path":[4,4,4,0,2,16],"span":[242,4,21],"trailingComments":" Uses ZigZag encoding.\n"},{"path":[4,4,4,0,2,16,1],"span":[242,4,15]},{"path":[4,4,4,0,2,16,2],"span":[242,18,20]},{"path":[4,4,4,0,2,17],"span":[243,4,21],"trailingComments":" Uses ZigZag encoding.\n"},{"path":[4,4,4,0,2,17,1],"span":[243,4,15]},{"path":[4,4,4,0,2,17,2],"span":[243,18,20]},{"path":[4,4,4,1],"span":[246,2,254,3]},{"path":[4,4,4,1,1],"span":[246,7,12]},{"path":[4,4,4,1,2,0],"span":[248,4,23],"leadingComments":" 0 is reserved for errors\n"},{"path":[4,4,4,1,2,0,1],"span":[248,4,18]},{"path":[4,4,4,1,2,0,2],"span":[248,21,22]},{"path":[4,4,4,1,2,1],"span":[249,4,23]},{"path":[4,4,4,1,2,1,1],"span":[249,4,18]},{"path":[4,4,4,1,2,1,2],"span":[249,21,22]},{"path":[4,4,4,1,2,2],"span":[253,4,23],"leadingComments":" The required label is only allowed in google.protobuf. In proto3 and Editions\n it's explicitly prohibited. In Editions, the `field_presence` feature\n can be used to get this behavior.\n"},{"path":[4,4,4,1,2,2,1],"span":[253,4,18]},{"path":[4,4,4,1,2,2,2],"span":[253,21,22]},{"path":[4,4,2,0],"span":[256,2,27]},{"path":[4,4,2,0,4],"span":[256,2,10]},{"path":[4,4,2,0,5],"span":[256,11,17]},{"path":[4,4,2,0,1],"span":[256,18,22]},{"path":[4,4,2,0,3],"span":[256,25,26]},{"path":[4,4,2,1],"span":[257,2,28]},{"path":[4,4,2,1,4],"span":[257,2,10]},{"path":[4,4,2,1,5],"span":[257,11,16]},{"path":[4,4,2,1,1],"span":[257,17,23]},{"path":[4,4,2,1,3],"span":[257,26,27]},{"path":[4,4,2,2],"span":[258,2,27]},{"path":[4,4,2,2,4],"span":[258,2,10]},{"path":[4,4,2,2,6],"span":[258,11,16]},{"path":[4,4,2,2,1],"span":[258,17,22]},{"path":[4,4,2,2,3],"span":[258,25,26]},{"path":[4,4,2,3],"span":[262,2,25],"leadingComments":" If type_name is set, this need not be set. If both this and type_name\n are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.\n"},{"path":[4,4,2,3,4],"span":[262,2,10]},{"path":[4,4,2,3,6],"span":[262,11,15]},{"path":[4,4,2,3,1],"span":[262,16,20]},{"path":[4,4,2,3,3],"span":[262,23,24]},{"path":[4,4,2,4],"span":[269,2,32],"leadingComments":" For message and enum types, this is the name of the type. If the name\n starts with a '.', it is fully-qualified. Otherwise, C++-like scoping\n rules are used to find the type (i.e. first the nested types within this\n message are searched, then within the parent, on up to the root\n namespace).\n"},{"path":[4,4,2,4,4],"span":[269,2,10]},{"path":[4,4,2,4,5],"span":[269,11,17]},{"path":[4,4,2,4,1],"span":[269,18,27]},{"path":[4,4,2,4,3],"span":[269,30,31]},{"path":[4,4,2,5],"span":[273,2,31],"leadingComments":" For extensions, this is the name of the type being extended. It is\n resolved in the same manner as type_name.\n"},{"path":[4,4,2,5,4],"span":[273,2,10]},{"path":[4,4,2,5,5],"span":[273,11,17]},{"path":[4,4,2,5,1],"span":[273,18,26]},{"path":[4,4,2,5,3],"span":[273,29,30]},{"path":[4,4,2,6],"span":[279,2,36],"leadingComments":" For numeric types, contains the original text representation of the value.\n For booleans, \"true\" or \"false\".\n For strings, contains the default text contents (not escaped in any way).\n For bytes, contains the C escaped value. All bytes >= 128 are escaped.\n"},{"path":[4,4,2,6,4],"span":[279,2,10]},{"path":[4,4,2,6,5],"span":[279,11,17]},{"path":[4,4,2,6,1],"span":[279,18,31]},{"path":[4,4,2,6,3],"span":[279,34,35]},{"path":[4,4,2,7],"span":[283,2,33],"leadingComments":" If set, gives the index of a oneof in the containing type's oneof_decl\n list. This field is a member of that oneof.\n"},{"path":[4,4,2,7,4],"span":[283,2,10]},{"path":[4,4,2,7,5],"span":[283,11,16]},{"path":[4,4,2,7,1],"span":[283,17,28]},{"path":[4,4,2,7,3],"span":[283,31,32]},{"path":[4,4,2,8],"span":[289,2,33],"leadingComments":" JSON name of this field. The value is set by protocol compiler. If the\n user has set a \"json_name\" option on this field, that option's value\n will be used. Otherwise, it's deduced from the field's name by converting\n it to camelCase.\n"},{"path":[4,4,2,8,4],"span":[289,2,10]},{"path":[4,4,2,8,5],"span":[289,11,17]},{"path":[4,4,2,8,1],"span":[289,18,27]},{"path":[4,4,2,8,3],"span":[289,30,32]},{"path":[4,4,2,9],"span":[291,2,36]},{"path":[4,4,2,9,4],"span":[291,2,10]},{"path":[4,4,2,9,6],"span":[291,11,23]},{"path":[4,4,2,9,1],"span":[291,24,31]},{"path":[4,4,2,9,3],"span":[291,34,35]},{"path":[4,4,2,10],"span":[314,2,37],"leadingComments":" If true, this is a proto3 \"optional\". When a proto3 field is optional, it\n tracks presence regardless of field type.\n\n When proto3_optional is true, this field must be belong to a oneof to\n signal to old proto3 clients that presence is tracked for this field. This\n oneof is known as a \"synthetic\" oneof, and this field must be its sole\n member (each proto3 optional field gets its own synthetic oneof). Synthetic\n oneofs exist in the descriptor only, and do not generate any API. Synthetic\n oneofs must be ordered after all \"real\" oneofs.\n\n For message fields, proto3_optional doesn't create any semantic change,\n since non-repeated message fields always track presence. However it still\n indicates the semantic detail of whether the user wrote \"optional\" or not.\n This can be useful for round-tripping the .proto file. For consistency we\n give message fields a synthetic oneof also, even though it is not required\n to track presence. This is especially important because the parser can't\n tell if a field is a message or an enum, so it must always create a\n synthetic oneof.\n\n Proto2 optional fields do not set this flag, because they already indicate\n optional with `LABEL_OPTIONAL`.\n"},{"path":[4,4,2,10,4],"span":[314,2,10]},{"path":[4,4,2,10,5],"span":[314,11,15]},{"path":[4,4,2,10,1],"span":[314,16,31]},{"path":[4,4,2,10,3],"span":[314,34,36]},{"path":[4,5],"span":[318,0,321,1],"leadingComments":" Describes a oneof.\n"},{"path":[4,5,1],"span":[318,8,28]},{"path":[4,5,2,0],"span":[319,2,27]},{"path":[4,5,2,0,4],"span":[319,2,10]},{"path":[4,5,2,0,5],"span":[319,11,17]},{"path":[4,5,2,0,1],"span":[319,18,22]},{"path":[4,5,2,0,3],"span":[319,25,26]},{"path":[4,5,2,1],"span":[320,2,36]},{"path":[4,5,2,1,4],"span":[320,2,10]},{"path":[4,5,2,1,6],"span":[320,11,23]},{"path":[4,5,2,1,1],"span":[320,24,31]},{"path":[4,5,2,1,3],"span":[320,34,35]},{"path":[4,6],"span":[324,0,350,1],"leadingComments":" Describes an enum type.\n"},{"path":[4,6,1],"span":[324,8,27]},{"path":[4,6,2,0],"span":[325,2,27]},{"path":[4,6,2,0,4],"span":[325,2,10]},{"path":[4,6,2,0,5],"span":[325,11,17]},{"path":[4,6,2,0,1],"span":[325,18,22]},{"path":[4,6,2,0,3],"span":[325,25,26]},{"path":[4,6,2,1],"span":[327,2,46]},{"path":[4,6,2,1,4],"span":[327,2,10]},{"path":[4,6,2,1,6],"span":[327,11,35]},{"path":[4,6,2,1,1],"span":[327,36,41]},{"path":[4,6,2,1,3],"span":[327,44,45]},{"path":[4,6,2,2],"span":[329,2,35]},{"path":[4,6,2,2,4],"span":[329,2,10]},{"path":[4,6,2,2,6],"span":[329,11,22]},{"path":[4,6,2,2,1],"span":[329,23,30]},{"path":[4,6,2,2,3],"span":[329,33,34]},{"path":[4,6,3,0],"span":[337,2,340,3],"leadingComments":" Range of reserved numeric values. Reserved values may not be used by\n entries in the same enum. Reserved ranges may not overlap.\n\n Note that this is distinct from DescriptorProto.ReservedRange in that it\n is inclusive such that it can appropriately represent the entire int32\n domain.\n"},{"path":[4,6,3,0,1],"span":[337,10,27]},{"path":[4,6,3,0,2,0],"span":[338,4,29],"trailingComments":" Inclusive.\n"},{"path":[4,6,3,0,2,0,4],"span":[338,4,12]},{"path":[4,6,3,0,2,0,5],"span":[338,13,18]},{"path":[4,6,3,0,2,0,1],"span":[338,19,24]},{"path":[4,6,3,0,2,0,3],"span":[338,27,28]},{"path":[4,6,3,0,2,1],"span":[339,4,27],"trailingComments":" Inclusive.\n"},{"path":[4,6,3,0,2,1,4],"span":[339,4,12]},{"path":[4,6,3,0,2,1,5],"span":[339,13,18]},{"path":[4,6,3,0,2,1,1],"span":[339,19,22]},{"path":[4,6,3,0,2,1,3],"span":[339,25,26]},{"path":[4,6,2,3],"span":[345,2,48],"leadingComments":" Range of reserved numeric values. Reserved numeric values may not be used\n by enum values in the same enum declaration. Reserved ranges may not\n overlap.\n"},{"path":[4,6,2,3,4],"span":[345,2,10]},{"path":[4,6,2,3,6],"span":[345,11,28]},{"path":[4,6,2,3,1],"span":[345,29,43]},{"path":[4,6,2,3,3],"span":[345,46,47]},{"path":[4,6,2,4],"span":[349,2,36],"leadingComments":" Reserved enum value names, which may not be reused. A given name may only\n be reserved once.\n"},{"path":[4,6,2,4,4],"span":[349,2,10]},{"path":[4,6,2,4,5],"span":[349,11,17]},{"path":[4,6,2,4,1],"span":[349,18,31]},{"path":[4,6,2,4,3],"span":[349,34,35]},{"path":[4,7],"span":[353,0,358,1],"leadingComments":" Describes a value within an enum.\n"},{"path":[4,7,1],"span":[353,8,32]},{"path":[4,7,2,0],"span":[354,2,27]},{"path":[4,7,2,0,4],"span":[354,2,10]},{"path":[4,7,2,0,5],"span":[354,11,17]},{"path":[4,7,2,0,1],"span":[354,18,22]},{"path":[4,7,2,0,3],"span":[354,25,26]},{"path":[4,7,2,1],"span":[355,2,28]},{"path":[4,7,2,1,4],"span":[355,2,10]},{"path":[4,7,2,1,5],"span":[355,11,16]},{"path":[4,7,2,1,1],"span":[355,17,23]},{"path":[4,7,2,1,3],"span":[355,26,27]},{"path":[4,7,2,2],"span":[357,2,40]},{"path":[4,7,2,2,4],"span":[357,2,10]},{"path":[4,7,2,2,6],"span":[357,11,27]},{"path":[4,7,2,2,1],"span":[357,28,35]},{"path":[4,7,2,2,3],"span":[357,38,39]},{"path":[4,8],"span":[361,0,366,1],"leadingComments":" Describes a service.\n"},{"path":[4,8,1],"span":[361,8,30]},{"path":[4,8,2,0],"span":[362,2,27]},{"path":[4,8,2,0,4],"span":[362,2,10]},{"path":[4,8,2,0,5],"span":[362,11,17]},{"path":[4,8,2,0,1],"span":[362,18,22]},{"path":[4,8,2,0,3],"span":[362,25,26]},{"path":[4,8,2,1],"span":[363,2,44]},{"path":[4,8,2,1,4],"span":[363,2,10]},{"path":[4,8,2,1,6],"span":[363,11,32]},{"path":[4,8,2,1,1],"span":[363,33,39]},{"path":[4,8,2,1,3],"span":[363,42,43]},{"path":[4,8,2,2],"span":[365,2,38]},{"path":[4,8,2,2,4],"span":[365,2,10]},{"path":[4,8,2,2,6],"span":[365,11,25]},{"path":[4,8,2,2,1],"span":[365,26,33]},{"path":[4,8,2,2,3],"span":[365,36,37]},{"path":[4,9],"span":[369,0,383,1],"leadingComments":" Describes a method of a service.\n"},{"path":[4,9,1],"span":[369,8,29]},{"path":[4,9,2,0],"span":[370,2,27]},{"path":[4,9,2,0,4],"span":[370,2,10]},{"path":[4,9,2,0,5],"span":[370,11,17]},{"path":[4,9,2,0,1],"span":[370,18,22]},{"path":[4,9,2,0,3],"span":[370,25,26]},{"path":[4,9,2,1],"span":[374,2,33],"leadingComments":" Input and output type names. These are resolved in the same way as\n FieldDescriptorProto.type_name, but must refer to a message type.\n"},{"path":[4,9,2,1,4],"span":[374,2,10]},{"path":[4,9,2,1,5],"span":[374,11,17]},{"path":[4,9,2,1,1],"span":[374,18,28]},{"path":[4,9,2,1,3],"span":[374,31,32]},{"path":[4,9,2,2],"span":[375,2,34]},{"path":[4,9,2,2,4],"span":[375,2,10]},{"path":[4,9,2,2,5],"span":[375,11,17]},{"path":[4,9,2,2,1],"span":[375,18,29]},{"path":[4,9,2,2,3],"span":[375,32,33]},{"path":[4,9,2,3],"span":[377,2,37]},{"path":[4,9,2,3,4],"span":[377,2,10]},{"path":[4,9,2,3,6],"span":[377,11,24]},{"path":[4,9,2,3,1],"span":[377,25,32]},{"path":[4,9,2,3,3],"span":[377,35,36]},{"path":[4,9,2,4],"span":[380,2,55],"leadingComments":" Identifies if client streams multiple client messages\n"},{"path":[4,9,2,4,4],"span":[380,2,10]},{"path":[4,9,2,4,5],"span":[380,11,15]},{"path":[4,9,2,4,1],"span":[380,16,32]},{"path":[4,9,2,4,3],"span":[380,35,36]},{"path":[4,9,2,4,8],"span":[380,37,54]},{"path":[4,9,2,4,7],"span":[380,38,53]},{"path":[4,9,2,5],"span":[382,2,55],"leadingComments":" Identifies if server streams multiple server messages\n"},{"path":[4,9,2,5,4],"span":[382,2,10]},{"path":[4,9,2,5,5],"span":[382,11,15]},{"path":[4,9,2,5,1],"span":[382,16,32]},{"path":[4,9,2,5,3],"span":[382,35,36]},{"path":[4,9,2,5,8],"span":[382,37,54]},{"path":[4,9,2,5,7],"span":[382,38,53]},{"path":[4,10],"span":[417,0,536,1],"leadingDetachedComments":[" ===================================================================\n Options\n"," Each of the definitions above may have \"options\" attached. These are\n just annotations which may cause code to be generated slightly differently\n or may contain hints for code that manipulates protocol messages.\n\n Clients may define custom options as extensions of the *Options messages.\n These extensions may not yet be known at parsing time, so the parser cannot\n store the values in them. Instead it stores them in a field in the *Options\n message called uninterpreted_option. This field must have the same name\n across all *Options messages. We then use this field to populate the\n extensions when we build a descriptor, at which point all protos have been\n parsed and so all extensions are known.\n\n Extension numbers for custom options may be chosen as follows:\n * For options which will only be used within a single application or\n organization, or for experimental options, use field numbers 50000\n through 99999. It is up to you to ensure that you do not use the\n same number for multiple options.\n * For options which will be published and used publicly by multiple\n independent entities, e-mail protobuf-global-extension-registry@google.com\n to reserve extension numbers. Simply provide your project name (e.g.\n Objective-C plugin) and your project website (if available) -- there's no\n need to explain how you intend to use them. Usually you only need one\n extension number. You can declare multiple options with only one extension\n number by putting them in a sub-message. See the Custom Options section of\n the docs for examples:\n https://developers.google.com/protocol-buffers/docs/proto#options\n If this turns out to be popular, a web service will be set up\n to automatically assign option numbers.\n"]},{"path":[4,10,1],"span":[417,8,19]},{"path":[4,10,2,0],"span":[423,2,35],"leadingComments":" Sets the Java package where classes generated from this .proto will be\n placed. By default, the proto package is used, but this is often\n inappropriate because proto packages do not normally start with backwards\n domain names.\n"},{"path":[4,10,2,0,4],"span":[423,2,10]},{"path":[4,10,2,0,5],"span":[423,11,17]},{"path":[4,10,2,0,1],"span":[423,18,30]},{"path":[4,10,2,0,3],"span":[423,33,34]},{"path":[4,10,2,1],"span":[430,2,43],"leadingComments":" Controls the name of the wrapper Java class generated for the .proto file.\n That class will always contain the .proto file's getDescriptor() method as\n well as any top-level extensions defined in the .proto file.\n If java_multiple_files is disabled, then all the other classes from the\n .proto file will be nested inside the single wrapper outer class.\n"},{"path":[4,10,2,1,4],"span":[430,2,10]},{"path":[4,10,2,1,5],"span":[430,11,17]},{"path":[4,10,2,1,1],"span":[430,18,38]},{"path":[4,10,2,1,3],"span":[430,41,42]},{"path":[4,10,2,2],"span":[438,2,59],"leadingComments":" If enabled, then the Java code generator will generate a separate .java\n file for each top-level message, enum, and service defined in the .proto\n file. Thus, these types will *not* be nested inside the wrapper class\n named by java_outer_classname. However, the wrapper class will still be\n generated to contain the file's getDescriptor() method as well as any\n top-level extensions defined in the file.\n"},{"path":[4,10,2,2,4],"span":[438,2,10]},{"path":[4,10,2,2,5],"span":[438,11,15]},{"path":[4,10,2,2,1],"span":[438,16,35]},{"path":[4,10,2,2,3],"span":[438,38,40]},{"path":[4,10,2,2,8],"span":[438,41,58]},{"path":[4,10,2,2,7],"span":[438,42,57]},{"path":[4,10,2,3],"span":[441,2,69],"leadingComments":" This option does nothing.\n"},{"path":[4,10,2,3,4],"span":[441,2,10]},{"path":[4,10,2,3,5],"span":[441,11,15]},{"path":[4,10,2,3,1],"span":[441,16,45]},{"path":[4,10,2,3,3],"span":[441,48,50]},{"path":[4,10,2,3,8],"span":[441,51,68]},{"path":[4,10,2,3,8,3],"span":[441,52,67]},{"path":[4,10,2,4],"span":[449,2,62],"leadingComments":" If set true, then the Java2 code generator will generate code that\n throws an exception whenever an attempt is made to assign a non-UTF-8\n byte sequence to a string field.\n Message reflection will do the same.\n However, an extension field still accepts non-UTF-8 byte sequences.\n This option has no effect on when used with the lite runtime.\n"},{"path":[4,10,2,4,4],"span":[449,2,10]},{"path":[4,10,2,4,5],"span":[449,11,15]},{"path":[4,10,2,4,1],"span":[449,16,38]},{"path":[4,10,2,4,3],"span":[449,41,43]},{"path":[4,10,2,4,8],"span":[449,44,61]},{"path":[4,10,2,4,7],"span":[449,45,60]},{"path":[4,10,4,0],"span":[452,2,457,3],"leadingComments":" Generated classes can be optimized for speed or code size.\n"},{"path":[4,10,4,0,1],"span":[452,7,19]},{"path":[4,10,4,0,2,0],"span":[453,4,14],"trailingComments":" Generate complete code for parsing, serialization,\n"},{"path":[4,10,4,0,2,0,1],"span":[453,4,9]},{"path":[4,10,4,0,2,0,2],"span":[453,12,13]},{"path":[4,10,4,0,2,1],"span":[455,4,18],"leadingComments":" etc.\n","trailingComments":" Use ReflectionOps to implement these methods.\n"},{"path":[4,10,4,0,2,1,1],"span":[455,4,13]},{"path":[4,10,4,0,2,1,2],"span":[455,16,17]},{"path":[4,10,4,0,2,2],"span":[456,4,21],"trailingComments":" Generate code using MessageLite and the lite runtime.\n"},{"path":[4,10,4,0,2,2,1],"span":[456,4,16]},{"path":[4,10,4,0,2,2,2],"span":[456,19,20]},{"path":[4,10,2,5],"span":[458,2,59]},{"path":[4,10,2,5,4],"span":[458,2,10]},{"path":[4,10,2,5,6],"span":[458,11,23]},{"path":[4,10,2,5,1],"span":[458,24,36]},{"path":[4,10,2,5,3],"span":[458,39,40]},{"path":[4,10,2,5,8],"span":[458,41,58]},{"path":[4,10,2,5,7],"span":[458,42,57]},{"path":[4,10,2,6],"span":[465,2,34],"leadingComments":" Sets the Go package where structs generated from this .proto will be\n placed. If omitted, the Go package will be derived from the following:\n - The basename of the package import path, if provided.\n - Otherwise, the package statement in the .proto file, if present.\n - Otherwise, the basename of the .proto file, without extension.\n"},{"path":[4,10,2,6,4],"span":[465,2,10]},{"path":[4,10,2,6,5],"span":[465,11,17]},{"path":[4,10,2,6,1],"span":[465,18,28]},{"path":[4,10,2,6,3],"span":[465,31,33]},{"path":[4,10,2,7],"span":[477,2,59],"leadingComments":" Should generic services be generated in each language? \"Generic\" services\n are not specific to any particular RPC system. They are generated by the\n main code generators in each language (without additional plugins).\n Generic services were the only kind of service generation supported by\n early versions of google.protobuf.\n\n Generic services are now considered deprecated in favor of using plugins\n that generate code specific to your particular RPC system. Therefore,\n these default to false. Old code which depends on generic services should\n explicitly set them to true.\n"},{"path":[4,10,2,7,4],"span":[477,2,10]},{"path":[4,10,2,7,5],"span":[477,11,15]},{"path":[4,10,2,7,1],"span":[477,16,35]},{"path":[4,10,2,7,3],"span":[477,38,40]},{"path":[4,10,2,7,8],"span":[477,41,58]},{"path":[4,10,2,7,7],"span":[477,42,57]},{"path":[4,10,2,8],"span":[478,2,61]},{"path":[4,10,2,8,4],"span":[478,2,10]},{"path":[4,10,2,8,5],"span":[478,11,15]},{"path":[4,10,2,8,1],"span":[478,16,37]},{"path":[4,10,2,8,3],"span":[478,40,42]},{"path":[4,10,2,8,8],"span":[478,43,60]},{"path":[4,10,2,8,7],"span":[478,44,59]},{"path":[4,10,2,9],"span":[479,2,59]},{"path":[4,10,2,9,4],"span":[479,2,10]},{"path":[4,10,2,9,5],"span":[479,11,15]},{"path":[4,10,2,9,1],"span":[479,16,35]},{"path":[4,10,2,9,3],"span":[479,38,40]},{"path":[4,10,2,9,8],"span":[479,41,58]},{"path":[4,10,2,9,7],"span":[479,42,57]},{"path":[4,10,2,10],"span":[480,2,60]},{"path":[4,10,2,10,4],"span":[480,2,10]},{"path":[4,10,2,10,5],"span":[480,11,15]},{"path":[4,10,2,10,1],"span":[480,16,36]},{"path":[4,10,2,10,3],"span":[480,39,41]},{"path":[4,10,2,10,8],"span":[480,42,59]},{"path":[4,10,2,10,7],"span":[480,43,58]},{"path":[4,10,2,11],"span":[486,2,50],"leadingComments":" Is this file deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for everything in the file, or it will be completely ignored; in the very\n least, this is a formalization for deprecating files.\n"},{"path":[4,10,2,11,4],"span":[486,2,10]},{"path":[4,10,2,11,5],"span":[486,11,15]},{"path":[4,10,2,11,1],"span":[486,16,26]},{"path":[4,10,2,11,3],"span":[486,29,31]},{"path":[4,10,2,11,8],"span":[486,32,49]},{"path":[4,10,2,11,7],"span":[486,33,48]},{"path":[4,10,2,12],"span":[490,2,55],"leadingComments":" Enables the use of arenas for the proto messages in this file. This applies\n only to generated classes for C++.\n"},{"path":[4,10,2,12,4],"span":[490,2,10]},{"path":[4,10,2,12,5],"span":[490,11,15]},{"path":[4,10,2,12,1],"span":[490,16,32]},{"path":[4,10,2,12,3],"span":[490,35,37]},{"path":[4,10,2,12,8],"span":[490,38,54]},{"path":[4,10,2,12,7],"span":[490,39,53]},{"path":[4,10,2,13],"span":[494,2,41],"leadingComments":" Sets the objective c class prefix which is prepended to all objective c\n generated classes from this .proto. There is no default.\n"},{"path":[4,10,2,13,4],"span":[494,2,10]},{"path":[4,10,2,13,5],"span":[494,11,17]},{"path":[4,10,2,13,1],"span":[494,18,35]},{"path":[4,10,2,13,3],"span":[494,38,40]},{"path":[4,10,2,14],"span":[497,2,40],"leadingComments":" Namespace for generated classes; defaults to the package.\n"},{"path":[4,10,2,14,4],"span":[497,2,10]},{"path":[4,10,2,14,5],"span":[497,11,17]},{"path":[4,10,2,14,1],"span":[497,18,34]},{"path":[4,10,2,14,3],"span":[497,37,39]},{"path":[4,10,2,15],"span":[503,2,36],"leadingComments":" By default Swift generators will take the proto package and CamelCase it\n replacing '.' with underscore and use that to prefix the types/symbols\n defined. When this options is provided, they will use this value instead\n to prefix the types/symbols defined.\n"},{"path":[4,10,2,15,4],"span":[503,2,10]},{"path":[4,10,2,15,5],"span":[503,11,17]},{"path":[4,10,2,15,1],"span":[503,18,30]},{"path":[4,10,2,15,3],"span":[503,33,35]},{"path":[4,10,2,16],"span":[507,2,40],"leadingComments":" Sets the php class prefix which is prepended to all php generated classes\n from this .proto. Default is empty.\n"},{"path":[4,10,2,16,4],"span":[507,2,10]},{"path":[4,10,2,16,5],"span":[507,11,17]},{"path":[4,10,2,16,1],"span":[507,18,34]},{"path":[4,10,2,16,3],"span":[507,37,39]},{"path":[4,10,2,17],"span":[512,2,37],"leadingComments":" Use this option to change the namespace of php generated classes. Default\n is empty. When this option is empty, the package name will be used for\n determining the namespace.\n"},{"path":[4,10,2,17,4],"span":[512,2,10]},{"path":[4,10,2,17,5],"span":[512,11,17]},{"path":[4,10,2,17,1],"span":[512,18,31]},{"path":[4,10,2,17,3],"span":[512,34,36]},{"path":[4,10,2,18],"span":[517,2,46],"leadingComments":" Use this option to change the namespace of php generated metadata classes.\n Default is empty. When this option is empty, the proto file name will be\n used for determining the namespace.\n"},{"path":[4,10,2,18,4],"span":[517,2,10]},{"path":[4,10,2,18,5],"span":[517,11,17]},{"path":[4,10,2,18,1],"span":[517,18,40]},{"path":[4,10,2,18,3],"span":[517,43,45]},{"path":[4,10,2,19],"span":[522,2,36],"leadingComments":" Use this option to change the package of ruby generated classes. Default\n is empty. When this option is not set, the package name will be used for\n determining the ruby package.\n"},{"path":[4,10,2,19,4],"span":[522,2,10]},{"path":[4,10,2,19,5],"span":[522,11,17]},{"path":[4,10,2,19,1],"span":[522,18,30]},{"path":[4,10,2,19,3],"span":[522,33,35]},{"path":[4,10,2,20],"span":[525,2,36],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,10,2,20,4],"span":[525,2,10]},{"path":[4,10,2,20,6],"span":[525,11,21]},{"path":[4,10,2,20,1],"span":[525,22,30]},{"path":[4,10,2,20,3],"span":[525,33,35]},{"path":[4,10,2,21],"span":[529,2,58],"leadingComments":" The parser stores options it doesn't recognize here.\n See the documentation for the \"Options\" section above.\n"},{"path":[4,10,2,21,4],"span":[529,2,10]},{"path":[4,10,2,21,6],"span":[529,11,30]},{"path":[4,10,2,21,1],"span":[529,31,51]},{"path":[4,10,2,21,3],"span":[529,54,57]},{"path":[4,10,5],"span":[533,2,25],"leadingComments":" Clients can define custom options in extensions of this message.\n See the documentation for the \"Options\" section above.\n"},{"path":[4,10,5,0],"span":[533,13,24]},{"path":[4,10,5,0,1],"span":[533,13,17]},{"path":[4,10,5,0,2],"span":[533,21,24]},{"path":[4,10,9],"span":[535,2,14]},{"path":[4,10,9,0],"span":[535,11,13]},{"path":[4,10,9,0,1],"span":[535,11,13]},{"path":[4,10,9,0,2],"span":[535,11,13]},{"path":[4,11],"span":[538,0,618,1]},{"path":[4,11,1],"span":[538,8,22]},{"path":[4,11,2,0],"span":[557,2,62],"leadingComments":" Set true to use the old proto1 MessageSet wire format for extensions.\n This is provided for backwards-compatibility with the MessageSet wire\n format. You should not use this for any other reason: It's less\n efficient, has fewer features, and is more complicated.\n\n The message must be defined exactly as follows:\n message Foo {\n option message_set_wire_format = true;\n extensions 4 to max;\n }\n Note that the message cannot have any defined fields; MessageSets only\n have extensions.\n\n All extensions of your type must be singular messages; e.g. they cannot\n be int32s, enums, or repeated messages.\n\n Because this is an option, the above two restrictions are not enforced by\n the protocol compiler.\n"},{"path":[4,11,2,0,4],"span":[557,2,10]},{"path":[4,11,2,0,5],"span":[557,11,15]},{"path":[4,11,2,0,1],"span":[557,16,39]},{"path":[4,11,2,0,3],"span":[557,42,43]},{"path":[4,11,2,0,8],"span":[557,44,61]},{"path":[4,11,2,0,7],"span":[557,45,60]},{"path":[4,11,2,1],"span":[562,2,70],"leadingComments":" Disables the generation of the standard \"descriptor()\" accessor, which can\n conflict with a field of the same name. This is meant to make migration\n from proto1 easier; new code should avoid fields named \"descriptor\".\n"},{"path":[4,11,2,1,4],"span":[562,2,10]},{"path":[4,11,2,1,5],"span":[562,11,15]},{"path":[4,11,2,1,1],"span":[562,16,47]},{"path":[4,11,2,1,3],"span":[562,50,51]},{"path":[4,11,2,1,8],"span":[562,52,69]},{"path":[4,11,2,1,7],"span":[562,53,68]},{"path":[4,11,2,2],"span":[568,2,49],"leadingComments":" Is this message deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the message, or it will be completely ignored; in the very least,\n this is a formalization for deprecating messages.\n"},{"path":[4,11,2,2,4],"span":[568,2,10]},{"path":[4,11,2,2,5],"span":[568,11,15]},{"path":[4,11,2,2,1],"span":[568,16,26]},{"path":[4,11,2,2,3],"span":[568,29,30]},{"path":[4,11,2,2,8],"span":[568,31,48]},{"path":[4,11,2,2,7],"span":[568,32,47]},{"path":[4,11,9],"span":[570,2,19]},{"path":[4,11,9,0],"span":[570,11,12]},{"path":[4,11,9,0,1],"span":[570,11,12]},{"path":[4,11,9,0,2],"span":[570,11,12]},{"path":[4,11,9,1],"span":[570,14,15]},{"path":[4,11,9,1,1],"span":[570,14,15]},{"path":[4,11,9,1,2],"span":[570,14,15]},{"path":[4,11,9,2],"span":[570,17,18]},{"path":[4,11,9,2,1],"span":[570,17,18]},{"path":[4,11,9,2,2],"span":[570,17,18]},{"path":[4,11,2,3],"span":[593,2,30],"leadingComments":" NOTE: Do not set the option in .proto files. Always use the maps syntax\n instead. The option should only be implicitly set by the proto compiler\n parser.\n\n Whether the message is an automatically generated map entry type for the\n maps field.\n\n For maps fields:\n map map_field = 1;\n The parsed descriptor looks like:\n message MapFieldEntry {\n option map_entry = true;\n optional KeyType key = 1;\n optional ValueType value = 2;\n }\n repeated MapFieldEntry map_field = 1;\n\n Implementations may choose not to generate the map_entry=true message, but\n use a native map in the target language to hold the keys and values.\n The reflection APIs in such implementations still need to work as\n if the field is a repeated message field.\n"},{"path":[4,11,2,3,4],"span":[593,2,10]},{"path":[4,11,2,3,5],"span":[593,11,15]},{"path":[4,11,2,3,1],"span":[593,16,25]},{"path":[4,11,2,3,3],"span":[593,28,29]},{"path":[4,11,9],"span":[595,2,13],"trailingComments":" javalite_serializable\n"},{"path":[4,11,9,3],"span":[595,11,12]},{"path":[4,11,9,3,1],"span":[595,11,12]},{"path":[4,11,9,3,2],"span":[595,11,12]},{"path":[4,11,9],"span":[596,2,13],"trailingComments":" javanano_as_lite\n"},{"path":[4,11,9,4],"span":[596,11,12]},{"path":[4,11,9,4,1],"span":[596,11,12]},{"path":[4,11,9,4,2],"span":[596,11,12]},{"path":[4,11,2,4],"span":[608,2,80],"leadingComments":" Enable the legacy handling of JSON field name conflicts. This lowercases\n and strips underscored from the fields before comparison in proto3 only.\n The new behavior takes `json_name` into account and applies to proto2 as\n well.\n\n This should only be used as a temporary measure against broken builds due\n to the change in behavior for JSON field name conflicts.\n\n TODO This is legacy behavior we plan to remove once downstream\n teams have had time to migrate.\n"},{"path":[4,11,2,4,4],"span":[608,2,10]},{"path":[4,11,2,4,5],"span":[608,11,15]},{"path":[4,11,2,4,1],"span":[608,16,54]},{"path":[4,11,2,4,3],"span":[608,57,59]},{"path":[4,11,2,4,8],"span":[608,60,79]},{"path":[4,11,2,4,8,3],"span":[608,61,78]},{"path":[4,11,2,5],"span":[611,2,36],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,11,2,5,4],"span":[611,2,10]},{"path":[4,11,2,5,6],"span":[611,11,21]},{"path":[4,11,2,5,1],"span":[611,22,30]},{"path":[4,11,2,5,3],"span":[611,33,35]},{"path":[4,11,2,6],"span":[614,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,11,2,6,4],"span":[614,2,10]},{"path":[4,11,2,6,6],"span":[614,11,30]},{"path":[4,11,2,6,1],"span":[614,31,51]},{"path":[4,11,2,6,3],"span":[614,54,57]},{"path":[4,11,5],"span":[617,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,11,5,0],"span":[617,13,24]},{"path":[4,11,5,0,1],"span":[617,13,17]},{"path":[4,11,5,0,2],"span":[617,21,24]},{"path":[4,12],"span":[620,0,771,1]},{"path":[4,12,1],"span":[620,8,20]},{"path":[4,12,2,0],"span":[627,2,46],"leadingComments":" The ctype option instructs the C++ code generator to use a different\n representation of the field than it normally would. See the specific\n options below. This option is only implemented to support use of\n [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of\n type \"bytes\" in the open source release -- sorry, we'll try to include\n other types in a future version!\n"},{"path":[4,12,2,0,4],"span":[627,2,10]},{"path":[4,12,2,0,6],"span":[627,11,16]},{"path":[4,12,2,0,1],"span":[627,17,22]},{"path":[4,12,2,0,3],"span":[627,25,26]},{"path":[4,12,2,0,8],"span":[627,27,45]},{"path":[4,12,2,0,7],"span":[627,28,44]},{"path":[4,12,4,0],"span":[628,2,641,3]},{"path":[4,12,4,0,1],"span":[628,7,12]},{"path":[4,12,4,0,2,0],"span":[630,4,15],"leadingComments":" Default mode.\n"},{"path":[4,12,4,0,2,0,1],"span":[630,4,10]},{"path":[4,12,4,0,2,0,2],"span":[630,13,14]},{"path":[4,12,4,0,2,1],"span":[638,4,13],"leadingComments":" The option [ctype=CORD] may be applied to a non-repeated field of type\n \"bytes\". It indicates that in C++, the data should be stored in a Cord\n instead of a string. For very large strings, this may reduce memory\n fragmentation. It may also allow better performance when parsing from a\n Cord, or when parsing with aliasing enabled, as the parsed Cord may then\n alias the original buffer.\n"},{"path":[4,12,4,0,2,1,1],"span":[638,4,8]},{"path":[4,12,4,0,2,1,2],"span":[638,11,12]},{"path":[4,12,4,0,2,2],"span":[640,4,21]},{"path":[4,12,4,0,2,2,1],"span":[640,4,16]},{"path":[4,12,4,0,2,2,2],"span":[640,19,20]},{"path":[4,12,2,1],"span":[649,2,27],"leadingComments":" The packed option can be enabled for repeated primitive fields to enable\n a more efficient representation on the wire. Rather than repeatedly\n writing the tag and type for each element, the entire array is encoded as\n a single length-delimited blob. In proto3, only explicit setting it to\n false will avoid using packed encoding. This option is prohibited in\n Editions, but the `repeated_field_encoding` feature can be used to control\n the behavior.\n"},{"path":[4,12,2,1,4],"span":[649,2,10]},{"path":[4,12,2,1,5],"span":[649,11,15]},{"path":[4,12,2,1,1],"span":[649,16,22]},{"path":[4,12,2,1,3],"span":[649,25,26]},{"path":[4,12,2,2],"span":[662,2,51],"leadingComments":" The jstype option determines the JavaScript type used for values of the\n field. The option is permitted only for 64 bit integral and fixed types\n (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING\n is represented as JavaScript string, which avoids loss of precision that\n can happen when a large value is converted to a floating point JavaScript.\n Specifying JS_NUMBER for the jstype causes the generated JavaScript code to\n use the JavaScript \"number\" type. The behavior of the default option\n JS_NORMAL is implementation dependent.\n\n This option is an enum to permit additional types to be added, e.g.\n goog.math.Integer.\n"},{"path":[4,12,2,2,4],"span":[662,2,10]},{"path":[4,12,2,2,6],"span":[662,11,17]},{"path":[4,12,2,2,1],"span":[662,18,24]},{"path":[4,12,2,2,3],"span":[662,27,28]},{"path":[4,12,2,2,8],"span":[662,29,50]},{"path":[4,12,2,2,7],"span":[662,30,49]},{"path":[4,12,4,1],"span":[663,2,672,3]},{"path":[4,12,4,1,1],"span":[663,7,13]},{"path":[4,12,4,1,2,0],"span":[665,4,18],"leadingComments":" Use the default type.\n"},{"path":[4,12,4,1,2,0,1],"span":[665,4,13]},{"path":[4,12,4,1,2,0,2],"span":[665,16,17]},{"path":[4,12,4,1,2,1],"span":[668,4,18],"leadingComments":" Use JavaScript strings.\n"},{"path":[4,12,4,1,2,1,1],"span":[668,4,13]},{"path":[4,12,4,1,2,1,2],"span":[668,16,17]},{"path":[4,12,4,1,2,2],"span":[671,4,18],"leadingComments":" Use JavaScript numbers.\n"},{"path":[4,12,4,1,2,2,1],"span":[671,4,13]},{"path":[4,12,4,1,2,2,2],"span":[671,16,17]},{"path":[4,12,2,3],"span":[704,2,43],"leadingComments":" Should this field be parsed lazily? Lazy applies only to message-type\n fields. It means that when the outer message is initially parsed, the\n inner message's contents will not be parsed but instead stored in encoded\n form. The inner message will actually be parsed when it is first accessed.\n\n This is only a hint. Implementations are free to choose whether to use\n eager or lazy parsing regardless of the value of this option. However,\n setting this option true suggests that the protocol author believes that\n using lazy parsing on this field is worth the additional bookkeeping\n overhead typically needed to implement it.\n\n This option does not affect the public interface of any generated code;\n all method signatures remain the same. Furthermore, thread-safety of the\n interface is not affected by this option; const methods remain safe to\n call from multiple threads concurrently, while non-const methods continue\n to require exclusive access.\n\n Note that implementations may choose not to check required fields within\n a lazy sub-message. That is, calling IsInitialized() on the outer message\n may return true even if the inner message has missing required fields.\n This is necessary because otherwise the inner message would have to be\n parsed in order to perform the check, defeating the purpose of lazy\n parsing. An implementation which chooses not to check required fields\n must be consistent about it. That is, for any particular sub-message, the\n implementation must either *always* check its required fields, or *never*\n check its required fields, regardless of whether or not the message has\n been parsed.\n\n As of May 2022, lazy verifies the contents of the byte stream during\n parsing. An invalid byte stream will cause the overall parsing to fail.\n"},{"path":[4,12,2,3,4],"span":[704,2,10]},{"path":[4,12,2,3,5],"span":[704,11,15]},{"path":[4,12,2,3,1],"span":[704,16,20]},{"path":[4,12,2,3,3],"span":[704,23,24]},{"path":[4,12,2,3,8],"span":[704,25,42]},{"path":[4,12,2,3,7],"span":[704,26,41]},{"path":[4,12,2,4],"span":[709,2,55],"leadingComments":" unverified_lazy does no correctness checks on the byte stream. This should\n only be used where lazy with verification is prohibitive for performance\n reasons.\n"},{"path":[4,12,2,4,4],"span":[709,2,10]},{"path":[4,12,2,4,5],"span":[709,11,15]},{"path":[4,12,2,4,1],"span":[709,16,31]},{"path":[4,12,2,4,3],"span":[709,34,36]},{"path":[4,12,2,4,8],"span":[709,37,54]},{"path":[4,12,2,4,7],"span":[709,38,53]},{"path":[4,12,2,5],"span":[715,2,49],"leadingComments":" Is this field deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for accessors, or it will be completely ignored; in the very least, this\n is a formalization for deprecating fields.\n"},{"path":[4,12,2,5,4],"span":[715,2,10]},{"path":[4,12,2,5,5],"span":[715,11,15]},{"path":[4,12,2,5,1],"span":[715,16,26]},{"path":[4,12,2,5,3],"span":[715,29,30]},{"path":[4,12,2,5,8],"span":[715,31,48]},{"path":[4,12,2,5,7],"span":[715,32,47]},{"path":[4,12,2,6],"span":[718,2,44],"leadingComments":" For Google-internal migration only. Do not use.\n"},{"path":[4,12,2,6,4],"span":[718,2,10]},{"path":[4,12,2,6,5],"span":[718,11,15]},{"path":[4,12,2,6,1],"span":[718,16,20]},{"path":[4,12,2,6,3],"span":[718,23,25]},{"path":[4,12,2,6,8],"span":[718,26,43]},{"path":[4,12,2,6,7],"span":[718,27,42]},{"path":[4,12,2,7],"span":[722,2,52],"leadingComments":" Indicate that the field value should not be printed out when using debug\n formats, e.g. when the field contains sensitive credentials.\n"},{"path":[4,12,2,7,4],"span":[722,2,10]},{"path":[4,12,2,7,5],"span":[722,11,15]},{"path":[4,12,2,7,1],"span":[722,16,28]},{"path":[4,12,2,7,3],"span":[722,31,33]},{"path":[4,12,2,7,8],"span":[722,34,51]},{"path":[4,12,2,7,7],"span":[722,35,50]},{"path":[4,12,4,2],"span":[727,2,731,3],"leadingComments":" If set to RETENTION_SOURCE, the option will be omitted from the binary.\n Note: as of January 2023, support for this is in progress and does not yet\n have an effect (b/264593489).\n"},{"path":[4,12,4,2,1],"span":[727,7,22]},{"path":[4,12,4,2,2,0],"span":[728,4,26]},{"path":[4,12,4,2,2,0,1],"span":[728,4,21]},{"path":[4,12,4,2,2,0,2],"span":[728,24,25]},{"path":[4,12,4,2,2,1],"span":[729,4,26]},{"path":[4,12,4,2,2,1,1],"span":[729,4,21]},{"path":[4,12,4,2,2,1,2],"span":[729,24,25]},{"path":[4,12,4,2,2,2],"span":[730,4,25]},{"path":[4,12,4,2,2,2,1],"span":[730,4,20]},{"path":[4,12,4,2,2,2,2],"span":[730,23,24]},{"path":[4,12,2,8],"span":[733,2,42]},{"path":[4,12,2,8,4],"span":[733,2,10]},{"path":[4,12,2,8,6],"span":[733,11,26]},{"path":[4,12,2,8,1],"span":[733,27,36]},{"path":[4,12,2,8,3],"span":[733,39,41]},{"path":[4,12,4,3],"span":[739,2,750,3],"leadingComments":" This indicates the types of entities that the field may apply to when used\n as an option. If it is unset, then the field may be freely used as an\n option on any kind of entity. Note: as of January 2023, support for this is\n in progress and does not yet have an effect (b/264593489).\n"},{"path":[4,12,4,3,1],"span":[739,7,23]},{"path":[4,12,4,3,2,0],"span":[740,4,28]},{"path":[4,12,4,3,2,0,1],"span":[740,4,23]},{"path":[4,12,4,3,2,0,2],"span":[740,26,27]},{"path":[4,12,4,3,2,1],"span":[741,4,25]},{"path":[4,12,4,3,2,1,1],"span":[741,4,20]},{"path":[4,12,4,3,2,1,2],"span":[741,23,24]},{"path":[4,12,4,3,2,2],"span":[742,4,36]},{"path":[4,12,4,3,2,2,1],"span":[742,4,31]},{"path":[4,12,4,3,2,2,2],"span":[742,34,35]},{"path":[4,12,4,3,2,3],"span":[743,4,28]},{"path":[4,12,4,3,2,3,1],"span":[743,4,23]},{"path":[4,12,4,3,2,3,2],"span":[743,26,27]},{"path":[4,12,4,3,2,4],"span":[744,4,26]},{"path":[4,12,4,3,2,4,1],"span":[744,4,21]},{"path":[4,12,4,3,2,4,2],"span":[744,24,25]},{"path":[4,12,4,3,2,5],"span":[745,4,26]},{"path":[4,12,4,3,2,5,1],"span":[745,4,21]},{"path":[4,12,4,3,2,5,2],"span":[745,24,25]},{"path":[4,12,4,3,2,6],"span":[746,4,25]},{"path":[4,12,4,3,2,6,1],"span":[746,4,20]},{"path":[4,12,4,3,2,6,2],"span":[746,23,24]},{"path":[4,12,4,3,2,7],"span":[747,4,31]},{"path":[4,12,4,3,2,7,1],"span":[747,4,26]},{"path":[4,12,4,3,2,7,2],"span":[747,29,30]},{"path":[4,12,4,3,2,8],"span":[748,4,28]},{"path":[4,12,4,3,2,8,1],"span":[748,4,23]},{"path":[4,12,4,3,2,8,2],"span":[748,26,27]},{"path":[4,12,4,3,2,9],"span":[749,4,27]},{"path":[4,12,4,3,2,9,1],"span":[749,4,22]},{"path":[4,12,4,3,2,9,2],"span":[749,25,26]},{"path":[4,12,2,9],"span":[752,2,41]},{"path":[4,12,2,9,4],"span":[752,2,10]},{"path":[4,12,2,9,6],"span":[752,11,27]},{"path":[4,12,2,9,1],"span":[752,28,35]},{"path":[4,12,2,9,3],"span":[752,38,40]},{"path":[4,12,3,0],"span":[754,2,757,3]},{"path":[4,12,3,0,1],"span":[754,10,24]},{"path":[4,12,3,0,2,0],"span":[755,4,33]},{"path":[4,12,3,0,2,0,4],"span":[755,4,12]},{"path":[4,12,3,0,2,0,6],"span":[755,13,20]},{"path":[4,12,3,0,2,0,1],"span":[755,21,28]},{"path":[4,12,3,0,2,0,3],"span":[755,31,32]},{"path":[4,12,3,0,2,1],"span":[756,4,30],"trailingComments":" Textproto value.\n"},{"path":[4,12,3,0,2,1,4],"span":[756,4,12]},{"path":[4,12,3,0,2,1,5],"span":[756,13,19]},{"path":[4,12,3,0,2,1,1],"span":[756,20,25]},{"path":[4,12,3,0,2,1,3],"span":[756,28,29]},{"path":[4,12,2,10],"span":[758,2,48]},{"path":[4,12,2,10,4],"span":[758,2,10]},{"path":[4,12,2,10,6],"span":[758,11,25]},{"path":[4,12,2,10,1],"span":[758,26,42]},{"path":[4,12,2,10,3],"span":[758,45,47]},{"path":[4,12,2,11],"span":[761,2,36],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,12,2,11,4],"span":[761,2,10]},{"path":[4,12,2,11,6],"span":[761,11,21]},{"path":[4,12,2,11,1],"span":[761,22,30]},{"path":[4,12,2,11,3],"span":[761,33,35]},{"path":[4,12,2,12],"span":[764,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,12,2,12,4],"span":[764,2,10]},{"path":[4,12,2,12,6],"span":[764,11,30]},{"path":[4,12,2,12,1],"span":[764,31,51]},{"path":[4,12,2,12,3],"span":[764,54,57]},{"path":[4,12,5],"span":[767,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,12,5,0],"span":[767,13,24]},{"path":[4,12,5,0,1],"span":[767,13,17]},{"path":[4,12,5,0,2],"span":[767,21,24]},{"path":[4,12,9],"span":[769,2,13],"trailingComments":" removed jtype\n"},{"path":[4,12,9,0],"span":[769,11,12]},{"path":[4,12,9,0,1],"span":[769,11,12]},{"path":[4,12,9,0,2],"span":[769,11,12]},{"path":[4,12,9],"span":[770,2,14],"trailingComments":" reserve target, target_obsolete_do_not_use\n"},{"path":[4,12,9,1],"span":[770,11,13]},{"path":[4,12,9,1,1],"span":[770,11,13]},{"path":[4,12,9,1,2],"span":[770,11,13]},{"path":[4,13],"span":[773,0,782,1]},{"path":[4,13,1],"span":[773,8,20]},{"path":[4,13,2,0],"span":[775,2,35],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,13,2,0,4],"span":[775,2,10]},{"path":[4,13,2,0,6],"span":[775,11,21]},{"path":[4,13,2,0,1],"span":[775,22,30]},{"path":[4,13,2,0,3],"span":[775,33,34]},{"path":[4,13,2,1],"span":[778,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,13,2,1,4],"span":[778,2,10]},{"path":[4,13,2,1,6],"span":[778,11,30]},{"path":[4,13,2,1,1],"span":[778,31,51]},{"path":[4,13,2,1,3],"span":[778,54,57]},{"path":[4,13,5],"span":[781,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,13,5,0],"span":[781,13,24]},{"path":[4,13,5,0,1],"span":[781,13,17]},{"path":[4,13,5,0,2],"span":[781,21,24]},{"path":[4,14],"span":[784,0,814,1]},{"path":[4,14,1],"span":[784,8,19]},{"path":[4,14,2,0],"span":[788,2,32],"leadingComments":" Set this option to true to allow mapping different tag names to the same\n value.\n"},{"path":[4,14,2,0,4],"span":[788,2,10]},{"path":[4,14,2,0,5],"span":[788,11,15]},{"path":[4,14,2,0,1],"span":[788,16,27]},{"path":[4,14,2,0,3],"span":[788,30,31]},{"path":[4,14,2,1],"span":[794,2,49],"leadingComments":" Is this enum deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the enum, or it will be completely ignored; in the very least, this\n is a formalization for deprecating enums.\n"},{"path":[4,14,2,1,4],"span":[794,2,10]},{"path":[4,14,2,1,5],"span":[794,11,15]},{"path":[4,14,2,1,1],"span":[794,16,26]},{"path":[4,14,2,1,3],"span":[794,29,30]},{"path":[4,14,2,1,8],"span":[794,31,48]},{"path":[4,14,2,1,7],"span":[794,32,47]},{"path":[4,14,9],"span":[796,2,13],"trailingComments":" javanano_as_lite\n"},{"path":[4,14,9,0],"span":[796,11,12]},{"path":[4,14,9,0,1],"span":[796,11,12]},{"path":[4,14,9,0,2],"span":[796,11,12]},{"path":[4,14,2,2],"span":[804,2,79],"leadingComments":" Enable the legacy handling of JSON field name conflicts. This lowercases\n and strips underscored from the fields before comparison in proto3 only.\n The new behavior takes `json_name` into account and applies to proto2 as\n well.\n TODO Remove this legacy behavior once downstream teams have\n had time to migrate.\n"},{"path":[4,14,2,2,4],"span":[804,2,10]},{"path":[4,14,2,2,5],"span":[804,11,15]},{"path":[4,14,2,2,1],"span":[804,16,54]},{"path":[4,14,2,2,3],"span":[804,57,58]},{"path":[4,14,2,2,8],"span":[804,59,78]},{"path":[4,14,2,2,8,3],"span":[804,60,77]},{"path":[4,14,2,3],"span":[807,2,35],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,14,2,3,4],"span":[807,2,10]},{"path":[4,14,2,3,6],"span":[807,11,21]},{"path":[4,14,2,3,1],"span":[807,22,30]},{"path":[4,14,2,3,3],"span":[807,33,34]},{"path":[4,14,2,4],"span":[810,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,14,2,4,4],"span":[810,2,10]},{"path":[4,14,2,4,6],"span":[810,11,30]},{"path":[4,14,2,4,1],"span":[810,31,51]},{"path":[4,14,2,4,3],"span":[810,54,57]},{"path":[4,14,5],"span":[813,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,14,5,0],"span":[813,13,24]},{"path":[4,14,5,0,1],"span":[813,13,17]},{"path":[4,14,5,0,2],"span":[813,21,24]},{"path":[4,15],"span":[816,0,836,1]},{"path":[4,15,1],"span":[816,8,24]},{"path":[4,15,2,0],"span":[821,2,49],"leadingComments":" Is this enum value deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the enum value, or it will be completely ignored; in the very least,\n this is a formalization for deprecating enum values.\n"},{"path":[4,15,2,0,4],"span":[821,2,10]},{"path":[4,15,2,0,5],"span":[821,11,15]},{"path":[4,15,2,0,1],"span":[821,16,26]},{"path":[4,15,2,0,3],"span":[821,29,30]},{"path":[4,15,2,0,8],"span":[821,31,48]},{"path":[4,15,2,0,7],"span":[821,32,47]},{"path":[4,15,2,1],"span":[824,2,35],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,15,2,1,4],"span":[824,2,10]},{"path":[4,15,2,1,6],"span":[824,11,21]},{"path":[4,15,2,1,1],"span":[824,22,30]},{"path":[4,15,2,1,3],"span":[824,33,34]},{"path":[4,15,2,2],"span":[829,2,51],"leadingComments":" Indicate that fields annotated with this enum value should not be printed\n out when using debug formats, e.g. when the field contains sensitive\n credentials.\n"},{"path":[4,15,2,2,4],"span":[829,2,10]},{"path":[4,15,2,2,5],"span":[829,11,15]},{"path":[4,15,2,2,1],"span":[829,16,28]},{"path":[4,15,2,2,3],"span":[829,31,32]},{"path":[4,15,2,2,8],"span":[829,33,50]},{"path":[4,15,2,2,7],"span":[829,34,49]},{"path":[4,15,2,3],"span":[832,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,15,2,3,4],"span":[832,2,10]},{"path":[4,15,2,3,6],"span":[832,11,30]},{"path":[4,15,2,3,1],"span":[832,31,51]},{"path":[4,15,2,3,3],"span":[832,54,57]},{"path":[4,15,5],"span":[835,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,15,5,0],"span":[835,13,24]},{"path":[4,15,5,0,1],"span":[835,13,17]},{"path":[4,15,5,0,2],"span":[835,21,24]},{"path":[4,16],"span":[838,0,859,1]},{"path":[4,16,1],"span":[838,8,22]},{"path":[4,16,2,0],"span":[841,2,36],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,16,2,0,4],"span":[841,2,10]},{"path":[4,16,2,0,6],"span":[841,11,21]},{"path":[4,16,2,0,1],"span":[841,22,30]},{"path":[4,16,2,0,3],"span":[841,33,35]},{"path":[4,16,2,1],"span":[852,2,50],"leadingComments":" Is this service deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the service, or it will be completely ignored; in the very least,\n this is a formalization for deprecating services.\n","leadingDetachedComments":[" Note: Field numbers 1 through 32 are reserved for Google's internal RPC\n framework. We apologize for hoarding these numbers to ourselves, but\n we were already using them long before we decided to release Protocol\n Buffers.\n"]},{"path":[4,16,2,1,4],"span":[852,2,10]},{"path":[4,16,2,1,5],"span":[852,11,15]},{"path":[4,16,2,1,1],"span":[852,16,26]},{"path":[4,16,2,1,3],"span":[852,29,31]},{"path":[4,16,2,1,8],"span":[852,32,49]},{"path":[4,16,2,1,7],"span":[852,33,48]},{"path":[4,16,2,2],"span":[855,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,16,2,2,4],"span":[855,2,10]},{"path":[4,16,2,2,6],"span":[855,11,30]},{"path":[4,16,2,2,1],"span":[855,31,51]},{"path":[4,16,2,2,3],"span":[855,54,57]},{"path":[4,16,5],"span":[858,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,16,5,0],"span":[858,13,24]},{"path":[4,16,5,0,1],"span":[858,13,17]},{"path":[4,16,5,0,2],"span":[858,21,24]},{"path":[4,17],"span":[861,0,893,1]},{"path":[4,17,1],"span":[861,8,21]},{"path":[4,17,2,0],"span":[872,2,50],"leadingComments":" Is this method deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the method, or it will be completely ignored; in the very least,\n this is a formalization for deprecating methods.\n","leadingDetachedComments":[" Note: Field numbers 1 through 32 are reserved for Google's internal RPC\n framework. We apologize for hoarding these numbers to ourselves, but\n we were already using them long before we decided to release Protocol\n Buffers.\n"]},{"path":[4,17,2,0,4],"span":[872,2,10]},{"path":[4,17,2,0,5],"span":[872,11,15]},{"path":[4,17,2,0,1],"span":[872,16,26]},{"path":[4,17,2,0,3],"span":[872,29,31]},{"path":[4,17,2,0,8],"span":[872,32,49]},{"path":[4,17,2,0,7],"span":[872,33,48]},{"path":[4,17,4,0],"span":[877,2,881,3],"leadingComments":" Is this method side-effect-free (or safe in HTTP parlance), or idempotent,\n or neither? HTTP based RPC implementation may choose GET verb for safe\n methods, and PUT verb for idempotent methods instead of the default POST.\n"},{"path":[4,17,4,0,1],"span":[877,7,23]},{"path":[4,17,4,0,2,0],"span":[878,4,28]},{"path":[4,17,4,0,2,0,1],"span":[878,4,23]},{"path":[4,17,4,0,2,0,2],"span":[878,26,27]},{"path":[4,17,4,0,2,1],"span":[879,4,24],"trailingComments":" implies idempotent\n"},{"path":[4,17,4,0,2,1,1],"span":[879,4,19]},{"path":[4,17,4,0,2,1,2],"span":[879,22,23]},{"path":[4,17,4,0,2,2],"span":[880,4,19],"trailingComments":" idempotent, but may have side effects\n"},{"path":[4,17,4,0,2,2,1],"span":[880,4,14]},{"path":[4,17,4,0,2,2,2],"span":[880,17,18]},{"path":[4,17,2,1],"span":[882,2,883,38]},{"path":[4,17,2,1,4],"span":[882,2,10]},{"path":[4,17,2,1,6],"span":[882,11,27]},{"path":[4,17,2,1,1],"span":[882,28,45]},{"path":[4,17,2,1,3],"span":[882,48,50]},{"path":[4,17,2,1,8],"span":[883,6,37]},{"path":[4,17,2,1,7],"span":[883,7,36]},{"path":[4,17,2,2],"span":[886,2,36],"leadingComments":" Any features defined in the specific edition.\n"},{"path":[4,17,2,2,4],"span":[886,2,10]},{"path":[4,17,2,2,6],"span":[886,11,21]},{"path":[4,17,2,2,1],"span":[886,22,30]},{"path":[4,17,2,2,3],"span":[886,33,35]},{"path":[4,17,2,3],"span":[889,2,58],"leadingComments":" The parser stores options it doesn't recognize here. See above.\n"},{"path":[4,17,2,3,4],"span":[889,2,10]},{"path":[4,17,2,3,6],"span":[889,11,30]},{"path":[4,17,2,3,1],"span":[889,31,51]},{"path":[4,17,2,3,3],"span":[889,54,57]},{"path":[4,17,5],"span":[892,2,25],"leadingComments":" Clients can define custom options in extensions of this message. See above.\n"},{"path":[4,17,5,0],"span":[892,13,24]},{"path":[4,17,5,0,1],"span":[892,13,17]},{"path":[4,17,5,0,2],"span":[892,21,24]},{"path":[4,18],"span":[901,0,921,1],"leadingComments":" A message representing a option the parser does not recognize. This only\n appears in options protos created by the compiler::Parser class.\n DescriptorPool resolves these when building Descriptor objects. Therefore,\n options protos in descriptor objects (e.g. returned by Descriptor::options(),\n or produced by Descriptor::CopyTo()) will never have UninterpretedOptions\n in them.\n"},{"path":[4,18,1],"span":[901,8,27]},{"path":[4,18,3,0],"span":[907,2,910,3],"leadingComments":" The name of the uninterpreted option. Each string represents a segment in\n a dot-separated name. is_extension is true iff a segment represents an\n extension (denoted with parentheses in options specs in .proto files).\n E.g.,{ [\"foo\", false], [\"bar.baz\", true], [\"moo\", false] } represents\n \"foo.(bar.baz).moo\".\n"},{"path":[4,18,3,0,1],"span":[907,10,18]},{"path":[4,18,3,0,2,0],"span":[908,4,34]},{"path":[4,18,3,0,2,0,4],"span":[908,4,12]},{"path":[4,18,3,0,2,0,5],"span":[908,13,19]},{"path":[4,18,3,0,2,0,1],"span":[908,20,29]},{"path":[4,18,3,0,2,0,3],"span":[908,32,33]},{"path":[4,18,3,0,2,1],"span":[909,4,35]},{"path":[4,18,3,0,2,1,4],"span":[909,4,12]},{"path":[4,18,3,0,2,1,5],"span":[909,13,17]},{"path":[4,18,3,0,2,1,1],"span":[909,18,30]},{"path":[4,18,3,0,2,1,3],"span":[909,33,34]},{"path":[4,18,2,0],"span":[911,2,29]},{"path":[4,18,2,0,4],"span":[911,2,10]},{"path":[4,18,2,0,6],"span":[911,11,19]},{"path":[4,18,2,0,1],"span":[911,20,24]},{"path":[4,18,2,0,3],"span":[911,27,28]},{"path":[4,18,2,1],"span":[915,2,39],"leadingComments":" The value of the uninterpreted option, in whatever type the tokenizer\n identified it as during parsing. Exactly one of these should be set.\n"},{"path":[4,18,2,1,4],"span":[915,2,10]},{"path":[4,18,2,1,5],"span":[915,11,17]},{"path":[4,18,2,1,1],"span":[915,18,34]},{"path":[4,18,2,1,3],"span":[915,37,38]},{"path":[4,18,2,2],"span":[916,2,41]},{"path":[4,18,2,2,4],"span":[916,2,10]},{"path":[4,18,2,2,5],"span":[916,11,17]},{"path":[4,18,2,2,1],"span":[916,18,36]},{"path":[4,18,2,2,3],"span":[916,39,40]},{"path":[4,18,2,3],"span":[917,2,40]},{"path":[4,18,2,3,4],"span":[917,2,10]},{"path":[4,18,2,3,5],"span":[917,11,16]},{"path":[4,18,2,3,1],"span":[917,17,35]},{"path":[4,18,2,3,3],"span":[917,38,39]},{"path":[4,18,2,4],"span":[918,2,35]},{"path":[4,18,2,4,4],"span":[918,2,10]},{"path":[4,18,2,4,5],"span":[918,11,17]},{"path":[4,18,2,4,1],"span":[918,18,30]},{"path":[4,18,2,4,3],"span":[918,33,34]},{"path":[4,18,2,5],"span":[919,2,34]},{"path":[4,18,2,5,4],"span":[919,2,10]},{"path":[4,18,2,5,5],"span":[919,11,16]},{"path":[4,18,2,5,1],"span":[919,17,29]},{"path":[4,18,2,5,3],"span":[919,32,33]},{"path":[4,18,2,6],"span":[920,2,38]},{"path":[4,18,2,6,4],"span":[920,2,10]},{"path":[4,18,2,6,5],"span":[920,11,17]},{"path":[4,18,2,6,1],"span":[920,18,33]},{"path":[4,18,2,6,3],"span":[920,36,37]},{"path":[4,19],"span":[932,0,1019,1],"leadingComments":" TODO Enums in C++ gencode (and potentially other languages) are\n not well scoped. This means that each of the feature enums below can clash\n with each other. The short names we've chosen maximize call-site\n readability, but leave us very open to this scenario. A future feature will\n be designed and implemented to handle this, hopefully before we ever hit a\n conflict here.\n","leadingDetachedComments":[" ===================================================================\n Features\n"]},{"path":[4,19,1],"span":[932,8,18]},{"path":[4,19,4,0],"span":[933,2,938,3]},{"path":[4,19,4,0,1],"span":[933,7,20]},{"path":[4,19,4,0,2,0],"span":[934,4,31]},{"path":[4,19,4,0,2,0,1],"span":[934,4,26]},{"path":[4,19,4,0,2,0,2],"span":[934,29,30]},{"path":[4,19,4,0,2,1],"span":[935,4,17]},{"path":[4,19,4,0,2,1,1],"span":[935,4,12]},{"path":[4,19,4,0,2,1,2],"span":[935,15,16]},{"path":[4,19,4,0,2,2],"span":[936,4,17]},{"path":[4,19,4,0,2,2,1],"span":[936,4,12]},{"path":[4,19,4,0,2,2,2],"span":[936,15,16]},{"path":[4,19,4,0,2,3],"span":[937,4,24]},{"path":[4,19,4,0,2,3,1],"span":[937,4,19]},{"path":[4,19,4,0,2,3,2],"span":[937,22,23]},{"path":[4,19,2,0],"span":[939,2,946,4]},{"path":[4,19,2,0,4],"span":[939,2,10]},{"path":[4,19,2,0,6],"span":[939,11,24]},{"path":[4,19,2,0,1],"span":[939,25,39]},{"path":[4,19,2,0,3],"span":[939,42,43]},{"path":[4,19,2,0,8],"span":[939,44,946,3]},{"path":[4,19,2,0,8,17],"span":[940,4,33]},{"path":[4,19,2,0,8,19,0],"span":[941,4,31]},{"path":[4,19,2,0,8,19,1],"span":[942,4,30]},{"path":[4,19,2,0,8,20,0],"span":[943,4,69]},{"path":[4,19,2,0,8,20,0,3],"span":[943,25,48]},{"path":[4,19,2,0,8,20,0,2],"span":[943,50,67]},{"path":[4,19,2,0,8,20,1],"span":[944,4,69]},{"path":[4,19,2,0,8,20,1,3],"span":[944,25,48]},{"path":[4,19,2,0,8,20,1,2],"span":[944,50,67]},{"path":[4,19,2,0,8,20,2],"span":[945,4,67]},{"path":[4,19,2,0,8,20,2,3],"span":[945,25,46]},{"path":[4,19,2,0,8,20,2,2],"span":[945,48,65]},{"path":[4,19,4,1],"span":[948,2,952,3]},{"path":[4,19,4,1,1],"span":[948,7,15]},{"path":[4,19,4,1,2,0],"span":[949,4,26]},{"path":[4,19,4,1,2,0,1],"span":[949,4,21]},{"path":[4,19,4,1,2,0,2],"span":[949,24,25]},{"path":[4,19,4,1,2,1],"span":[950,4,13]},{"path":[4,19,4,1,2,1,1],"span":[950,4,8]},{"path":[4,19,4,1,2,1,2],"span":[950,11,12]},{"path":[4,19,4,1,2,2],"span":[951,4,15]},{"path":[4,19,4,1,2,2,1],"span":[951,4,10]},{"path":[4,19,4,1,2,2,2],"span":[951,13,14]},{"path":[4,19,2,1],"span":[953,2,959,4]},{"path":[4,19,2,1,4],"span":[953,2,10]},{"path":[4,19,2,1,6],"span":[953,11,19]},{"path":[4,19,2,1,1],"span":[953,20,29]},{"path":[4,19,2,1,3],"span":[953,32,33]},{"path":[4,19,2,1,8],"span":[953,34,959,3]},{"path":[4,19,2,1,8,17],"span":[954,4,33]},{"path":[4,19,2,1,8,19,0],"span":[955,4,30]},{"path":[4,19,2,1,8,19,1],"span":[956,4,30]},{"path":[4,19,2,1,8,20,0],"span":[957,4,67]},{"path":[4,19,2,1,8,20,0,3],"span":[957,25,48]},{"path":[4,19,2,1,8,20,0,2],"span":[957,50,65]},{"path":[4,19,2,1,8,20,1],"span":[958,4,65]},{"path":[4,19,2,1,8,20,1,3],"span":[958,25,48]},{"path":[4,19,2,1,8,20,1,2],"span":[958,50,63]},{"path":[4,19,4,2],"span":[961,2,965,3]},{"path":[4,19,4,2,1],"span":[961,7,28]},{"path":[4,19,4,2,2,0],"span":[962,4,40]},{"path":[4,19,4,2,2,0,1],"span":[962,4,35]},{"path":[4,19,4,2,2,0,2],"span":[962,38,39]},{"path":[4,19,4,2,2,1],"span":[963,4,15]},{"path":[4,19,4,2,2,1,1],"span":[963,4,10]},{"path":[4,19,4,2,2,1,2],"span":[963,13,14]},{"path":[4,19,4,2,2,2],"span":[964,4,17]},{"path":[4,19,4,2,2,2,1],"span":[964,4,12]},{"path":[4,19,4,2,2,2,2],"span":[964,15,16]},{"path":[4,19,2,2],"span":[966,2,972,4]},{"path":[4,19,2,2,4],"span":[966,2,10]},{"path":[4,19,2,2,6],"span":[966,11,32]},{"path":[4,19,2,2,1],"span":[966,33,56]},{"path":[4,19,2,2,3],"span":[966,59,60]},{"path":[4,19,2,2,8],"span":[966,61,972,3]},{"path":[4,19,2,2,8,17],"span":[967,4,33]},{"path":[4,19,2,2,8,19,0],"span":[968,4,31]},{"path":[4,19,2,2,8,19,1],"span":[969,4,30]},{"path":[4,19,2,2,8,20,0],"span":[970,4,69]},{"path":[4,19,2,2,8,20,0,3],"span":[970,25,48]},{"path":[4,19,2,2,8,20,0,2],"span":[970,50,67]},{"path":[4,19,2,2,8,20,1],"span":[971,4,67]},{"path":[4,19,2,2,8,20,1,3],"span":[971,25,48]},{"path":[4,19,2,2,8,20,1,2],"span":[971,50,65]},{"path":[4,19,4,3],"span":[974,2,978,3]},{"path":[4,19,4,3,1],"span":[974,7,21]},{"path":[4,19,4,3,2,0],"span":[975,4,32]},{"path":[4,19,4,3,2,0,1],"span":[975,4,27]},{"path":[4,19,4,3,2,0,2],"span":[975,30,31]},{"path":[4,19,4,3,2,1],"span":[976,4,13]},{"path":[4,19,4,3,2,1,1],"span":[976,4,8]},{"path":[4,19,4,3,2,1,2],"span":[976,11,12]},{"path":[4,19,4,3,2,2],"span":[977,4,15]},{"path":[4,19,4,3,2,2,1],"span":[977,4,10]},{"path":[4,19,4,3,2,2,2],"span":[977,13,14]},{"path":[4,19,2,3],"span":[979,2,985,4]},{"path":[4,19,2,3,4],"span":[979,2,10]},{"path":[4,19,2,3,6],"span":[979,11,25]},{"path":[4,19,2,3,1],"span":[979,26,41]},{"path":[4,19,2,3,3],"span":[979,44,45]},{"path":[4,19,2,3,8],"span":[979,46,985,3]},{"path":[4,19,2,3,8,17],"span":[980,4,33]},{"path":[4,19,2,3,8,19,0],"span":[981,4,31]},{"path":[4,19,2,3,8,19,1],"span":[982,4,30]},{"path":[4,19,2,3,8,20,0],"span":[983,4,65]},{"path":[4,19,2,3,8,20,0,3],"span":[983,25,48]},{"path":[4,19,2,3,8,20,0,2],"span":[983,50,63]},{"path":[4,19,2,3,8,20,1],"span":[984,4,67]},{"path":[4,19,2,3,8,20,1,3],"span":[984,25,48]},{"path":[4,19,2,3,8,20,1,2],"span":[984,50,65]},{"path":[4,19,4,4],"span":[987,2,991,3]},{"path":[4,19,4,4,1],"span":[987,7,22]},{"path":[4,19,4,4,2,0],"span":[988,4,33]},{"path":[4,19,4,4,2,0,1],"span":[988,4,28]},{"path":[4,19,4,4,2,0,2],"span":[988,31,32]},{"path":[4,19,4,4,2,1],"span":[989,4,24]},{"path":[4,19,4,4,2,1,1],"span":[989,4,19]},{"path":[4,19,4,4,2,1,2],"span":[989,22,23]},{"path":[4,19,4,4,2,2],"span":[990,4,18]},{"path":[4,19,4,4,2,2,1],"span":[990,4,13]},{"path":[4,19,4,4,2,2,2],"span":[990,16,17]},{"path":[4,19,2,4],"span":[992,2,997,4]},{"path":[4,19,2,4,4],"span":[992,2,10]},{"path":[4,19,2,4,6],"span":[992,11,26]},{"path":[4,19,2,4,1],"span":[992,27,43]},{"path":[4,19,2,4,3],"span":[992,46,47]},{"path":[4,19,2,4,8],"span":[992,48,997,3]},{"path":[4,19,2,4,8,17],"span":[993,4,33]},{"path":[4,19,2,4,8,19,0],"span":[994,4,31]},{"path":[4,19,2,4,8,19,1],"span":[995,4,30]},{"path":[4,19,2,4,8,20,0],"span":[996,4,76]},{"path":[4,19,2,4,8,20,0,3],"span":[996,25,48]},{"path":[4,19,2,4,8,20,0,2],"span":[996,50,74]},{"path":[4,19,4,5],"span":[999,2,1003,3]},{"path":[4,19,4,5,1],"span":[999,7,17]},{"path":[4,19,4,5,2,0],"span":[1000,4,28]},{"path":[4,19,4,5,2,0,1],"span":[1000,4,23]},{"path":[4,19,4,5,2,0,2],"span":[1000,26,27]},{"path":[4,19,4,5,2,1],"span":[1001,4,14]},{"path":[4,19,4,5,2,1,1],"span":[1001,4,9]},{"path":[4,19,4,5,2,1,2],"span":[1001,12,13]},{"path":[4,19,4,5,2,2],"span":[1002,4,27]},{"path":[4,19,4,5,2,2,1],"span":[1002,4,22]},{"path":[4,19,4,5,2,2,2],"span":[1002,25,26]},{"path":[4,19,2,5],"span":[1004,2,1011,4]},{"path":[4,19,2,5,4],"span":[1004,2,10]},{"path":[4,19,2,5,6],"span":[1004,11,21]},{"path":[4,19,2,5,1],"span":[1004,22,33]},{"path":[4,19,2,5,3],"span":[1004,36,37]},{"path":[4,19,2,5,8],"span":[1004,38,1011,3]},{"path":[4,19,2,5,8,17],"span":[1005,4,33]},{"path":[4,19,2,5,8,19,0],"span":[1006,4,33]},{"path":[4,19,2,5,8,19,1],"span":[1007,4,30]},{"path":[4,19,2,5,8,19,2],"span":[1008,4,30]},{"path":[4,19,2,5,8,20,0],"span":[1009,4,79]},{"path":[4,19,2,5,8,20,0,3],"span":[1009,25,48]},{"path":[4,19,2,5,8,20,0,2],"span":[1009,50,77]},{"path":[4,19,2,5,8,20,1],"span":[1010,4,66]},{"path":[4,19,2,5,8,20,1,3],"span":[1010,25,48]},{"path":[4,19,2,5,8,20,1,2],"span":[1010,50,64]},{"path":[4,19,9],"span":[1013,2,15]},{"path":[4,19,9,0],"span":[1013,11,14]},{"path":[4,19,9,0,1],"span":[1013,11,14]},{"path":[4,19,9,0,2],"span":[1013,11,14]},{"path":[4,19,5],"span":[1015,2,18],"trailingComments":" for Protobuf C++\n"},{"path":[4,19,5,0],"span":[1015,13,17]},{"path":[4,19,5,0,1],"span":[1015,13,17]},{"path":[4,19,5,0,2],"span":[1015,13,17]},{"path":[4,19,5],"span":[1016,2,18],"trailingComments":" for Protobuf Java\n"},{"path":[4,19,5,1],"span":[1016,13,17]},{"path":[4,19,5,1,1],"span":[1016,13,17]},{"path":[4,19,5,1,2],"span":[1016,13,17]},{"path":[4,19,5],"span":[1018,2,26],"trailingComments":" For internal testing\n"},{"path":[4,19,5,2],"span":[1018,13,25]},{"path":[4,19,5,2,1],"span":[1018,13,17]},{"path":[4,19,5,2,2],"span":[1018,21,25]},{"path":[4,20],"span":[1025,0,1043,1],"leadingComments":" A compiled specification for the defaults of a set of features. These\n messages are generated from FeatureSet extensions and can be used to seed\n feature resolution. The resolution with this object becomes a simple search\n for the closest matching edition, followed by proto merges.\n"},{"path":[4,20,1],"span":[1025,8,26]},{"path":[4,20,3,0],"span":[1030,2,1033,3],"leadingComments":" A map from every known edition with a unique set of defaults to its\n defaults. Not all editions may be contained here. For a given edition,\n the defaults at the closest matching edition ordered at or before it should\n be used. This field must be in strict ascending order by edition.\n"},{"path":[4,20,3,0,1],"span":[1030,10,34]},{"path":[4,20,3,0,2,0],"span":[1031,4,33]},{"path":[4,20,3,0,2,0,4],"span":[1031,4,12]},{"path":[4,20,3,0,2,0,6],"span":[1031,13,20]},{"path":[4,20,3,0,2,0,1],"span":[1031,21,28]},{"path":[4,20,3,0,2,0,3],"span":[1031,31,32]},{"path":[4,20,3,0,2,1],"span":[1032,4,37]},{"path":[4,20,3,0,2,1,4],"span":[1032,4,12]},{"path":[4,20,3,0,2,1,6],"span":[1032,13,23]},{"path":[4,20,3,0,2,1,1],"span":[1032,24,32]},{"path":[4,20,3,0,2,1,3],"span":[1032,35,36]},{"path":[4,20,2,0],"span":[1034,2,49]},{"path":[4,20,2,0,4],"span":[1034,2,10]},{"path":[4,20,2,0,6],"span":[1034,11,35]},{"path":[4,20,2,0,1],"span":[1034,36,44]},{"path":[4,20,2,0,3],"span":[1034,47,48]},{"path":[4,20,2,1],"span":[1038,2,39],"leadingComments":" The minimum supported edition (inclusive) when this was constructed.\n Editions before this will not have defaults.\n"},{"path":[4,20,2,1,4],"span":[1038,2,10]},{"path":[4,20,2,1,6],"span":[1038,11,18]},{"path":[4,20,2,1,1],"span":[1038,19,34]},{"path":[4,20,2,1,3],"span":[1038,37,38]},{"path":[4,20,2,2],"span":[1042,2,39],"leadingComments":" The maximum known edition (inclusive) when this was constructed. Editions\n after this will not have reliable defaults.\n"},{"path":[4,20,2,2,4],"span":[1042,2,10]},{"path":[4,20,2,2,6],"span":[1042,11,18]},{"path":[4,20,2,2,1],"span":[1042,19,34]},{"path":[4,20,2,2,3],"span":[1042,37,38]},{"path":[4,21],"span":[1050,0,1179,1],"leadingComments":" Encapsulates information about the original source file from which a\n FileDescriptorProto was generated.\n","leadingDetachedComments":[" ===================================================================\n Optional source code info\n"]},{"path":[4,21,1],"span":[1050,8,22]},{"path":[4,21,2,0],"span":[1094,2,33],"leadingComments":" A Location identifies a piece of source code in a .proto file which\n corresponds to a particular definition. This information is intended\n to be useful to IDEs, code indexers, documentation generators, and similar\n tools.\n\n For example, say we have a file like:\n message Foo {\n optional string foo = 1;\n }\n Let's look at just the field definition:\n optional string foo = 1;\n ^ ^^ ^^ ^ ^^^\n a bc de f ghi\n We have the following locations:\n span path represents\n [a,i) [ 4, 0, 2, 0 ] The whole field definition.\n [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).\n [c,d) [ 4, 0, 2, 0, 5 ] The type (string).\n [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).\n [g,h) [ 4, 0, 2, 0, 3 ] The number (1).\n\n Notes:\n - A location may refer to a repeated field itself (i.e. not to any\n particular index within it). This is used whenever a set of elements are\n logically enclosed in a single code segment. For example, an entire\n extend block (possibly containing multiple extension definitions) will\n have an outer location whose path refers to the \"extensions\" repeated\n field without an index.\n - Multiple locations may have the same path. This happens when a single\n logical declaration is spread out across multiple places. The most\n obvious example is the \"extend\" block again -- there may be multiple\n extend blocks in the same scope, each of which will have the same path.\n - A location's span is not always a subset of its parent's span. For\n example, the \"extendee\" of an extension declaration appears at the\n beginning of the \"extend\" block and is shared by all extensions within\n the block.\n - Just because a location's span is a subset of some other location's span\n does not mean that it is a descendant. For example, a \"group\" defines\n both a type and a field in a single declaration. Thus, the locations\n corresponding to the type and field and their components will overlap.\n - Code which tries to interpret locations should probably be designed to\n ignore those that it doesn't understand, as more types of locations could\n be recorded in the future.\n"},{"path":[4,21,2,0,4],"span":[1094,2,10]},{"path":[4,21,2,0,6],"span":[1094,11,19]},{"path":[4,21,2,0,1],"span":[1094,20,28]},{"path":[4,21,2,0,3],"span":[1094,31,32]},{"path":[4,21,3,0],"span":[1095,2,1178,3]},{"path":[4,21,3,0,1],"span":[1095,10,18]},{"path":[4,21,3,0,2,0],"span":[1119,4,44],"leadingComments":" Identifies which part of the FileDescriptorProto was defined at this\n location.\n\n Each element is a field number or an index. They form a path from\n the root FileDescriptorProto to the place where the definition occurs.\n For example, this path:\n [ 4, 3, 2, 7, 1 ]\n refers to:\n file.message_type(3) // 4, 3\n .field(7) // 2, 7\n .name() // 1\n This is because FileDescriptorProto.message_type has field number 4:\n repeated DescriptorProto message_type = 4;\n and DescriptorProto.field has field number 2:\n repeated FieldDescriptorProto field = 2;\n and FieldDescriptorProto.name has field number 1:\n optional string name = 1;\n\n Thus, the above path gives the location of a field name. If we removed\n the last element:\n [ 4, 3, 2, 7 ]\n this path refers to the whole field declaration (from the beginning\n of the label to the terminating semicolon).\n"},{"path":[4,21,3,0,2,0,4],"span":[1119,4,12]},{"path":[4,21,3,0,2,0,5],"span":[1119,13,18]},{"path":[4,21,3,0,2,0,1],"span":[1119,19,23]},{"path":[4,21,3,0,2,0,3],"span":[1119,26,27]},{"path":[4,21,3,0,2,0,8],"span":[1119,28,43]},{"path":[4,21,3,0,2,0,8,2],"span":[1119,29,42]},{"path":[4,21,3,0,2,1],"span":[1126,4,44],"leadingComments":" Always has exactly three or four elements: start line, start column,\n end line (optional, otherwise assumed same as start line), end column.\n These are packed into a single field for efficiency. Note that line\n and column numbers are zero-based -- typically you will want to add\n 1 to each before displaying to a user.\n"},{"path":[4,21,3,0,2,1,4],"span":[1126,4,12]},{"path":[4,21,3,0,2,1,5],"span":[1126,13,18]},{"path":[4,21,3,0,2,1,1],"span":[1126,19,23]},{"path":[4,21,3,0,2,1,3],"span":[1126,26,27]},{"path":[4,21,3,0,2,1,8],"span":[1126,28,43]},{"path":[4,21,3,0,2,1,8,2],"span":[1126,29,42]},{"path":[4,21,3,0,2,2],"span":[1175,4,41],"leadingComments":" If this SourceCodeInfo represents a complete declaration, these are any\n comments appearing before and after the declaration which appear to be\n attached to the declaration.\n\n A series of line comments appearing on consecutive lines, with no other\n tokens appearing on those lines, will be treated as a single comment.\n\n leading_detached_comments will keep paragraphs of comments that appear\n before (but not connected to) the current element. Each paragraph,\n separated by empty lines, will be one comment element in the repeated\n field.\n\n Only the comment content is provided; comment markers (e.g. //) are\n stripped out. For block comments, leading whitespace and an asterisk\n will be stripped from the beginning of each line other than the first.\n Newlines are included in the output.\n\n Examples:\n\n optional int32 foo = 1; // Comment attached to foo.\n // Comment attached to bar.\n optional int32 bar = 2;\n\n optional string baz = 3;\n // Comment attached to baz.\n // Another line attached to baz.\n\n // Comment attached to moo.\n //\n // Another line attached to moo.\n optional double moo = 4;\n\n // Detached comment for corge. This is not leading or trailing comments\n // to moo or corge because there are blank lines separating it from\n // both.\n\n // Detached comment for corge paragraph 2.\n\n optional string corge = 5;\n /* Block comment attached\n * to corge. Leading asterisks\n * will be removed. */\n /* Block comment attached to\n * grault. */\n optional int32 grault = 6;\n\n // ignored detached comments.\n"},{"path":[4,21,3,0,2,2,4],"span":[1175,4,12]},{"path":[4,21,3,0,2,2,5],"span":[1175,13,19]},{"path":[4,21,3,0,2,2,1],"span":[1175,20,36]},{"path":[4,21,3,0,2,2,3],"span":[1175,39,40]},{"path":[4,21,3,0,2,3],"span":[1176,4,42]},{"path":[4,21,3,0,2,3,4],"span":[1176,4,12]},{"path":[4,21,3,0,2,3,5],"span":[1176,13,19]},{"path":[4,21,3,0,2,3,1],"span":[1176,20,37]},{"path":[4,21,3,0,2,3,3],"span":[1176,40,41]},{"path":[4,21,3,0,2,4],"span":[1177,4,50]},{"path":[4,21,3,0,2,4,4],"span":[1177,4,12]},{"path":[4,21,3,0,2,4,5],"span":[1177,13,19]},{"path":[4,21,3,0,2,4,1],"span":[1177,20,45]},{"path":[4,21,3,0,2,4,3],"span":[1177,48,49]},{"path":[4,22],"span":[1184,0,1217,1],"leadingComments":" Describes the relationship between generated code and its original source\n file. A GeneratedCodeInfo message is associated with only one generated\n source file, but may contain references to different source .proto files.\n"},{"path":[4,22,1],"span":[1184,8,25]},{"path":[4,22,2,0],"span":[1187,2,37],"leadingComments":" An Annotation connects some span of text in generated code to an element\n of its generating .proto file.\n"},{"path":[4,22,2,0,4],"span":[1187,2,10]},{"path":[4,22,2,0,6],"span":[1187,11,21]},{"path":[4,22,2,0,1],"span":[1187,22,32]},{"path":[4,22,2,0,3],"span":[1187,35,36]},{"path":[4,22,3,0],"span":[1188,2,1216,3]},{"path":[4,22,3,0,1],"span":[1188,10,20]},{"path":[4,22,3,0,2,0],"span":[1191,4,44],"leadingComments":" Identifies the element in the original source .proto file. This field\n is formatted the same as SourceCodeInfo.Location.path.\n"},{"path":[4,22,3,0,2,0,4],"span":[1191,4,12]},{"path":[4,22,3,0,2,0,5],"span":[1191,13,18]},{"path":[4,22,3,0,2,0,1],"span":[1191,19,23]},{"path":[4,22,3,0,2,0,3],"span":[1191,26,27]},{"path":[4,22,3,0,2,0,8],"span":[1191,28,43]},{"path":[4,22,3,0,2,0,8,2],"span":[1191,29,42]},{"path":[4,22,3,0,2,1],"span":[1194,4,36],"leadingComments":" Identifies the filesystem path to the original source .proto.\n"},{"path":[4,22,3,0,2,1,4],"span":[1194,4,12]},{"path":[4,22,3,0,2,1,5],"span":[1194,13,19]},{"path":[4,22,3,0,2,1,1],"span":[1194,20,31]},{"path":[4,22,3,0,2,1,3],"span":[1194,34,35]},{"path":[4,22,3,0,2,2],"span":[1198,4,29],"leadingComments":" Identifies the starting offset in bytes in the generated code\n that relates to the identified object.\n"},{"path":[4,22,3,0,2,2,4],"span":[1198,4,12]},{"path":[4,22,3,0,2,2,5],"span":[1198,13,18]},{"path":[4,22,3,0,2,2,1],"span":[1198,19,24]},{"path":[4,22,3,0,2,2,3],"span":[1198,27,28]},{"path":[4,22,3,0,2,3],"span":[1203,4,27],"leadingComments":" Identifies the ending offset in bytes in the generated code that\n relates to the identified object. The end offset should be one past\n the last relevant byte (so the length of the text = end - begin).\n"},{"path":[4,22,3,0,2,3,4],"span":[1203,4,12]},{"path":[4,22,3,0,2,3,5],"span":[1203,13,18]},{"path":[4,22,3,0,2,3,1],"span":[1203,19,22]},{"path":[4,22,3,0,2,3,3],"span":[1203,25,26]},{"path":[4,22,3,0,4,0],"span":[1207,4,1214,5],"leadingComments":" Represents the identified object's effect on the element in the original\n .proto file.\n"},{"path":[4,22,3,0,4,0,1],"span":[1207,9,17]},{"path":[4,22,3,0,4,0,2,0],"span":[1209,6,15],"leadingComments":" There is no effect or the effect is indescribable.\n"},{"path":[4,22,3,0,4,0,2,0,1],"span":[1209,6,10]},{"path":[4,22,3,0,4,0,2,0,2],"span":[1209,13,14]},{"path":[4,22,3,0,4,0,2,1],"span":[1211,6,14],"leadingComments":" The element is set or otherwise mutated.\n"},{"path":[4,22,3,0,4,0,2,1,1],"span":[1211,6,9]},{"path":[4,22,3,0,4,0,2,1,2],"span":[1211,12,13]},{"path":[4,22,3,0,4,0,2,2],"span":[1213,6,16],"leadingComments":" An alias to the element is returned.\n"},{"path":[4,22,3,0,4,0,2,2,1],"span":[1213,6,11]},{"path":[4,22,3,0,4,0,2,2,2],"span":[1213,14,15]},{"path":[4,22,3,0,2,4],"span":[1215,4,35]},{"path":[4,22,3,0,2,4,4],"span":[1215,4,12]},{"path":[4,22,3,0,2,4,6],"span":[1215,13,21]},{"path":[4,22,3,0,2,4,1],"span":[1215,22,30]},{"path":[4,22,3,0,2,4,3],"span":[1215,33,34]}]},"bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"buf/validate/priv/private.proto","package":"buf.validate.priv","dependency":["google/protobuf/descriptor.proto"],"messageType":[{"name":"FieldConstraints","field":[{"name":"cel","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.priv.Constraint","jsonName":"cel"}]},{"name":"Constraint","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"message","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"},{"name":"expression","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expression"}]}],"extension":[{"name":"field","number":1160,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.priv.FieldConstraints","extendee":".google.protobuf.FieldOptions","jsonName":"field","proto3Optional":true}],"options":{"javaPackage":"build.buf.validate.priv","javaOuterClassname":"PrivateProto","javaMultipleFiles":true,"goPackage":"buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate/priv"},"sourceCodeInfo":{"location":[{"span":[14,0,40,1]},{"path":[12],"span":[14,0,18],"leadingDetachedComments":[" Copyright 2023 Buf Technologies, Inc.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"]},{"path":[2],"span":[16,0,26]},{"path":[3,0],"span":[18,0,42]},{"path":[8],"span":[20,0,99]},{"path":[8,11],"span":[20,0,99]},{"path":[8],"span":[21,0,34]},{"path":[8,10],"span":[21,0,34]},{"path":[8],"span":[22,0,45]},{"path":[8,8],"span":[22,0,45]},{"path":[8],"span":[23,0,48]},{"path":[8,1],"span":[23,0,48]},{"path":[7],"span":[25,0,28,1]},{"path":[7,0],"span":[27,2,41],"leadingComments":" Do not use. Internal to protovalidate library\n"},{"path":[7,0,2],"span":[25,7,35]},{"path":[7,0,4],"span":[27,2,10]},{"path":[7,0,6],"span":[27,11,27]},{"path":[7,0,1],"span":[27,28,33]},{"path":[7,0,3],"span":[27,36,40]},{"path":[4,0],"span":[31,0,33,1],"leadingComments":" Do not use. Internal to protovalidate library\n"},{"path":[4,0,1],"span":[31,8,24]},{"path":[4,0,2,0],"span":[32,2,30]},{"path":[4,0,2,0,4],"span":[32,2,10]},{"path":[4,0,2,0,6],"span":[32,11,21]},{"path":[4,0,2,0,1],"span":[32,22,25]},{"path":[4,0,2,0,3],"span":[32,28,29]},{"path":[4,1],"span":[36,0,40,1],"leadingComments":" Do not use. Internal to protovalidate library\n"},{"path":[4,1,1],"span":[36,8,18]},{"path":[4,1,2,0],"span":[37,2,16]},{"path":[4,1,2,0,5],"span":[37,2,8]},{"path":[4,1,2,0,1],"span":[37,9,11]},{"path":[4,1,2,0,3],"span":[37,14,15]},{"path":[4,1,2,1],"span":[38,2,21]},{"path":[4,1,2,1,5],"span":[38,2,8]},{"path":[4,1,2,1,1],"span":[38,9,16]},{"path":[4,1,2,1,3],"span":[38,19,20]},{"path":[4,1,2,2],"span":[39,2,24]},{"path":[4,1,2,2,5],"span":[39,2,8]},{"path":[4,1,2,2,1],"span":[39,9,19]},{"path":[4,1,2,2,3],"span":[39,22,23]}]},"syntax":"proto3","bufExtension":{"isImport":true,"moduleInfo":{"name":{"remote":"buf.build","owner":"bufbuild","repository":"protovalidate"},"commit":"b983156c5e994cc9892e0ce3e64e17e0"},"isSyntaxUnspecified":false}},{"name":"google/protobuf/duration.proto","package":"google.protobuf","messageType":[{"name":"Duration","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"DurationProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/durationpb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,114,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,31]},{"path":[8,31],"span":[34,0,31]},{"path":[8],"span":[35,0,72]},{"path":[8,11],"span":[35,0,72]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,46]},{"path":[8,8],"span":[37,0,46]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[8],"span":[40,0,59]},{"path":[8,37],"span":[40,0,59]},{"path":[4,0],"span":[101,0,114,1],"leadingComments":" A Duration represents a signed, fixed-length span of time represented\n as a count of seconds and fractions of seconds at nanosecond\n resolution. It is independent of any calendar and concepts like \"day\"\n or \"month\". It is related to Timestamp in that the difference between\n two Timestamp values is a Duration and it can be added or subtracted\n from a Timestamp. Range is approximately +-10,000 years.\n\n # Examples\n\n Example 1: Compute Duration from two Timestamps in pseudo code.\n\n Timestamp start = ...;\n Timestamp end = ...;\n Duration duration = ...;\n\n duration.seconds = end.seconds - start.seconds;\n duration.nanos = end.nanos - start.nanos;\n\n if (duration.seconds < 0 && duration.nanos > 0) {\n duration.seconds += 1;\n duration.nanos -= 1000000000;\n } else if (duration.seconds > 0 && duration.nanos < 0) {\n duration.seconds -= 1;\n duration.nanos += 1000000000;\n }\n\n Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.\n\n Timestamp start = ...;\n Duration duration = ...;\n Timestamp end = ...;\n\n end.seconds = start.seconds + duration.seconds;\n end.nanos = start.nanos + duration.nanos;\n\n if (end.nanos < 0) {\n end.seconds -= 1;\n end.nanos += 1000000000;\n } else if (end.nanos >= 1000000000) {\n end.seconds += 1;\n end.nanos -= 1000000000;\n }\n\n Example 3: Compute Duration from datetime.timedelta in Python.\n\n td = datetime.timedelta(days=3, minutes=10)\n duration = Duration()\n duration.FromTimedelta(td)\n\n # JSON Mapping\n\n In JSON format, the Duration type is encoded as a string rather than an\n object, where the string ends in the suffix \"s\" (indicating seconds) and\n is preceded by the number of seconds, with nanoseconds expressed as\n fractional seconds. For example, 3 seconds with 0 nanoseconds should be\n encoded in JSON format as \"3s\", while 3 seconds and 1 nanosecond should\n be expressed in JSON format as \"3.000000001s\", and 3 seconds and 1\n microsecond should be expressed in JSON format as \"3.000001s\".\n\n"},{"path":[4,0,1],"span":[101,8,16]},{"path":[4,0,2,0],"span":[105,2,20],"leadingComments":" Signed seconds of the span of time. Must be from -315,576,000,000\n to +315,576,000,000 inclusive. Note: these bounds are computed from:\n 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\n"},{"path":[4,0,2,0,5],"span":[105,2,7]},{"path":[4,0,2,0,1],"span":[105,8,15]},{"path":[4,0,2,0,3],"span":[105,18,19]},{"path":[4,0,2,1],"span":[113,2,18],"leadingComments":" Signed fractions of a second at nanosecond resolution of the span\n of time. Durations less than one second are represented with a 0\n `seconds` field and a positive or negative `nanos` field. For durations\n of one second or more, a non-zero value for the `nanos` field must be\n of the same sign as the `seconds` field. Must be from -999,999,999\n to +999,999,999 inclusive.\n"},{"path":[4,0,2,1,5],"span":[113,2,7]},{"path":[4,0,2,1,1],"span":[113,8,13]},{"path":[4,0,2,1,3],"span":[113,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,143,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,31]},{"path":[8,31],"span":[34,0,31]},{"path":[8],"span":[35,0,73]},{"path":[8,11],"span":[35,0,73]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,47]},{"path":[8,8],"span":[37,0,47]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[8],"span":[40,0,59]},{"path":[8,37],"span":[40,0,59]},{"path":[4,0],"span":[132,0,143,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()\n ) to obtain a formatter capable of generating timestamps in this format.\n\n"},{"path":[4,0,1],"span":[132,8,17]},{"path":[4,0,2,0],"span":[136,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[136,2,7]},{"path":[4,0,2,0,1],"span":[136,8,15]},{"path":[4,0,2,0,3],"span":[136,18,19]},{"path":[4,0,2,1],"span":[142,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[142,2,7]},{"path":[4,0,2,1,1],"span":[142,8,13]},{"path":[4,0,2,1,3],"span":[142,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"buf/validate/validate.proto","package":"buf.validate","dependency":["buf/validate/expression.proto","buf/validate/priv/private.proto","google/protobuf/descriptor.proto","google/protobuf/duration.proto","google/protobuf/timestamp.proto"],"messageType":[{"name":"MessageConstraints","field":[{"name":"disabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"disabled","proto3Optional":true},{"name":"cel","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.Constraint","jsonName":"cel"}],"oneofDecl":[{"name":"_disabled"}]},{"name":"OneofConstraints","field":[{"name":"required","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"required","proto3Optional":true}],"oneofDecl":[{"name":"_required"}]},{"name":"FieldConstraints","field":[{"name":"cel","number":23,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".buf.validate.Constraint","jsonName":"cel"},{"name":"required","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"required"},{"name":"ignore","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".buf.validate.Ignore","jsonName":"ignore"},{"name":"float","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FloatRules","oneofIndex":0,"jsonName":"float"},{"name":"double","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.DoubleRules","oneofIndex":0,"jsonName":"double"},{"name":"int32","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Int32Rules","oneofIndex":0,"jsonName":"int32"},{"name":"int64","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Int64Rules","oneofIndex":0,"jsonName":"int64"},{"name":"uint32","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.UInt32Rules","oneofIndex":0,"jsonName":"uint32"},{"name":"uint64","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.UInt64Rules","oneofIndex":0,"jsonName":"uint64"},{"name":"sint32","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SInt32Rules","oneofIndex":0,"jsonName":"sint32"},{"name":"sint64","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SInt64Rules","oneofIndex":0,"jsonName":"sint64"},{"name":"fixed32","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Fixed32Rules","oneofIndex":0,"jsonName":"fixed32"},{"name":"fixed64","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.Fixed64Rules","oneofIndex":0,"jsonName":"fixed64"},{"name":"sfixed32","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SFixed32Rules","oneofIndex":0,"jsonName":"sfixed32"},{"name":"sfixed64","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.SFixed64Rules","oneofIndex":0,"jsonName":"sfixed64"},{"name":"bool","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.BoolRules","oneofIndex":0,"jsonName":"bool"},{"name":"string","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.StringRules","oneofIndex":0,"jsonName":"string"},{"name":"bytes","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.BytesRules","oneofIndex":0,"jsonName":"bytes"},{"name":"enum","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.EnumRules","oneofIndex":0,"jsonName":"enum"},{"name":"repeated","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.RepeatedRules","oneofIndex":0,"jsonName":"repeated"},{"name":"map","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.MapRules","oneofIndex":0,"jsonName":"map"},{"name":"any","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.AnyRules","oneofIndex":0,"jsonName":"any"},{"name":"duration","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.DurationRules","oneofIndex":0,"jsonName":"duration"},{"name":"timestamp","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.TimestampRules","oneofIndex":0,"jsonName":"timestamp"},{"name":"skipped","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"skipped","options":{"deprecated":true}},{"name":"ignore_empty","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"ignoreEmpty","options":{"deprecated":true}}],"oneofDecl":[{"name":"type"}]},{"name":"FloatRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.lt","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this >= rules.lt)? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.lte","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this > rules.lte)? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.gt","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this <= rules.gt)? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"float.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this.isNan() || this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"float.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (this.isNan() || (rules.lt <= this && this <= rules.gt))? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"float.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this.isNan() || this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"float.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (this.isNan() || (rules.lte < this && this <= rules.gt))? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.gte","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this < rules.gte)? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"float.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this.isNan() || this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"float.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (this.isNan() || (rules.lt <= this && this < rules.gte))? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"float.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this.isNan() || this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"float.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (this.isNan() || (rules.lte < this && this < rules.gte))? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_FLOAT","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_FLOAT","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"finite","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"finite","options":{"[buf.validate.priv.field]":{"cel":[{"id":"float.finite","expression":"this.isNan() || this.isInf() ? 'value must be finite' : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"DoubleRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.lt","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this >= rules.lt)? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.lte","expression":"!has(rules.gte) && !has(rules.gt) && (this.isNan() || this > rules.lte)? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.gt","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this <= rules.gt)? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"double.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this.isNan() || this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"double.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (this.isNan() || (rules.lt <= this && this <= rules.gt))? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"double.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this.isNan() || this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"double.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (this.isNan() || (rules.lte < this && this <= rules.gt))? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.gte","expression":"!has(rules.lt) && !has(rules.lte) && (this.isNan() || this < rules.gte)? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"double.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this.isNan() || this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"double.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (this.isNan() || (rules.lt <= this && this < rules.gte))? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"double.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this.isNan() || this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"double.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (this.isNan() || (rules.lte < this && this < rules.gte))? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_DOUBLE","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_DOUBLE","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"finite","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"finite","options":{"[buf.validate.priv.field]":{"cel":[{"id":"double.finite","expression":"this.isNan() || this.isInf() ? 'value must be finite' : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Int32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"int32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"int32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"int32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"int32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Int64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"int64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"int64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"int64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"int64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"int64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"int64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"int64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"UInt32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"uint32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"uint32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"uint32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"uint32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_UINT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_UINT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"UInt64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"uint64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"uint64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"uint64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"uint64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"uint64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"uint64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_UINT64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_UINT64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"uint64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SInt32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sint32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sint32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sint32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sint32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SINT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SINT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SInt64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sint64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sint64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sint64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sint64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sint64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sint64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SINT64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SINT64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sint64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Fixed32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"fixed32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"fixed32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"fixed32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"fixed32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_FIXED32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_FIXED32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"Fixed64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"fixed64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"fixed64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"fixed64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"fixed64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"fixed64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"fixed64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_FIXED64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_FIXED64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"fixed64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SFixed32Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sfixed32.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed32.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed32.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sfixed32.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sfixed32.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed32.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed32.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sfixed32.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SFIXED32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SFIXED32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed32.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"SFixed64Rules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"sfixed64.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed64.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"sfixed64.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"sfixed64.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"sfixed64.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed64.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"sfixed64.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"sfixed64.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":6,"label":"LABEL_REPEATED","type":"TYPE_SFIXED64","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":7,"label":"LABEL_REPEATED","type":"TYPE_SFIXED64","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"sfixed64.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"BoolRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bool.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true}],"oneofDecl":[{"name":"_const"}]},{"name":"StringRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.const","expression":"this != rules.const ? 'value must equal `%s`'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"len","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":2,"jsonName":"len","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.len","expression":"uint(this.size()) != rules.len ? 'value length must be %s characters'.format([rules.len]) : ''"}]}},"proto3Optional":true},{"name":"min_len","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":3,"jsonName":"minLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.min_len","expression":"uint(this.size()) < rules.min_len ? 'value length must be at least %s characters'.format([rules.min_len]) : ''"}]}},"proto3Optional":true},{"name":"max_len","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":4,"jsonName":"maxLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.max_len","expression":"uint(this.size()) > rules.max_len ? 'value length must be at most %s characters'.format([rules.max_len]) : ''"}]}},"proto3Optional":true},{"name":"len_bytes","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":5,"jsonName":"lenBytes","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.len_bytes","expression":"uint(bytes(this).size()) != rules.len_bytes ? 'value length must be %s bytes'.format([rules.len_bytes]) : ''"}]}},"proto3Optional":true},{"name":"min_bytes","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":6,"jsonName":"minBytes","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.min_bytes","expression":"uint(bytes(this).size()) < rules.min_bytes ? 'value length must be at least %s bytes'.format([rules.min_bytes]) : ''"}]}},"proto3Optional":true},{"name":"max_bytes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":7,"jsonName":"maxBytes","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.max_bytes","expression":"uint(bytes(this).size()) > rules.max_bytes ? 'value length must be at most %s bytes'.format([rules.max_bytes]) : ''"}]}},"proto3Optional":true},{"name":"pattern","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"pattern","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.pattern","expression":"!this.matches(rules.pattern) ? 'value does not match regex pattern `%s`'.format([rules.pattern]) : ''"}]}},"proto3Optional":true},{"name":"prefix","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.prefix","expression":"!this.startsWith(rules.prefix) ? 'value does not have prefix `%s`'.format([rules.prefix]) : ''"}]}},"proto3Optional":true},{"name":"suffix","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"suffix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.suffix","expression":"!this.endsWith(rules.suffix) ? 'value does not have suffix `%s`'.format([rules.suffix]) : ''"}]}},"proto3Optional":true},{"name":"contains","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"contains","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.contains","expression":"!this.contains(rules.contains) ? 'value does not contain substring `%s`'.format([rules.contains]) : ''"}]}},"proto3Optional":true},{"name":"not_contains","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"notContains","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.not_contains","expression":"this.contains(rules.not_contains) ? 'value contains substring `%s`'.format([rules.not_contains]) : ''"}]}},"proto3Optional":true},{"name":"in","number":10,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"email","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"email","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.email","message":"value must be a valid email address","expression":"this == '' || this.isEmail()"},{"id":"string.email_empty","message":"value is empty, which is not a valid email address","expression":"this != ''"}]}}},{"name":"hostname","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"hostname","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.hostname","message":"value must be a valid hostname","expression":"this == '' || this.isHostname()"},{"id":"string.hostname_empty","message":"value is empty, which is not a valid hostname","expression":"this != ''"}]}}},{"name":"ip","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ip","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ip","message":"value must be a valid IP address","expression":"this == '' || this.isIp()"},{"id":"string.ip_empty","message":"value is empty, which is not a valid IP address","expression":"this != ''"}]}}},{"name":"ipv4","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv4","message":"value must be a valid IPv4 address","expression":"this == '' || this.isIp(4)"},{"id":"string.ipv4_empty","message":"value is empty, which is not a valid IPv4 address","expression":"this != ''"}]}}},{"name":"ipv6","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv6","message":"value must be a valid IPv6 address","expression":"this == '' || this.isIp(6)"},{"id":"string.ipv6_empty","message":"value is empty, which is not a valid IPv6 address","expression":"this != ''"}]}}},{"name":"uri","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"uri","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.uri","message":"value must be a valid URI","expression":"this == '' || this.isUri()"},{"id":"string.uri_empty","message":"value is empty, which is not a valid URI","expression":"this != ''"}]}}},{"name":"uri_ref","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"uriRef","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.uri_ref","message":"value must be a valid URI","expression":"this.isUriRef()"}]}}},{"name":"address","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"address","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.address","message":"value must be a valid hostname, or ip address","expression":"this == '' || this.isHostname() || this.isIp()"},{"id":"string.address_empty","message":"value is empty, which is not a valid hostname, or ip address","expression":"this != ''"}]}}},{"name":"uuid","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"uuid","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.uuid","message":"value must be a valid UUID","expression":"this == '' || this.matches('^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$')"},{"id":"string.uuid_empty","message":"value is empty, which is not a valid UUID","expression":"this != ''"}]}}},{"name":"tuuid","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"tuuid","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.tuuid","message":"value must be a valid trimmed UUID","expression":"this == '' || this.matches('^[0-9a-fA-F]{32}$')"},{"id":"string.tuuid_empty","message":"value is empty, which is not a valid trimmed UUID","expression":"this != ''"}]}}},{"name":"ip_with_prefixlen","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipWithPrefixlen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ip_with_prefixlen","message":"value must be a valid IP prefix","expression":"this == '' || this.isIpPrefix()"},{"id":"string.ip_with_prefixlen_empty","message":"value is empty, which is not a valid IP prefix","expression":"this != ''"}]}}},{"name":"ipv4_with_prefixlen","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4WithPrefixlen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv4_with_prefixlen","message":"value must be a valid IPv4 address with prefix length","expression":"this == '' || this.isIpPrefix(4)"},{"id":"string.ipv4_with_prefixlen_empty","message":"value is empty, which is not a valid IPv4 address with prefix length","expression":"this != ''"}]}}},{"name":"ipv6_with_prefixlen","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6WithPrefixlen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv6_with_prefixlen","message":"value must be a valid IPv6 address with prefix length","expression":"this == '' || this.isIpPrefix(6)"},{"id":"string.ipv6_with_prefixlen_empty","message":"value is empty, which is not a valid IPv6 address with prefix length","expression":"this != ''"}]}}},{"name":"ip_prefix","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipPrefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ip_prefix","message":"value must be a valid IP prefix","expression":"this == '' || this.isIpPrefix(true)"},{"id":"string.ip_prefix_empty","message":"value is empty, which is not a valid IP prefix","expression":"this != ''"}]}}},{"name":"ipv4_prefix","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4Prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv4_prefix","message":"value must be a valid IPv4 prefix","expression":"this == '' || this.isIpPrefix(4, true)"},{"id":"string.ipv4_prefix_empty","message":"value is empty, which is not a valid IPv4 prefix","expression":"this != ''"}]}}},{"name":"ipv6_prefix","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6Prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.ipv6_prefix","message":"value must be a valid IPv6 prefix","expression":"this == '' || this.isIpPrefix(6, true)"},{"id":"string.ipv6_prefix_empty","message":"value is empty, which is not a valid IPv6 prefix","expression":"this != ''"}]}}},{"name":"host_and_port","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"hostAndPort","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.host_and_port","message":"value must be a valid host (hostname or IP address) and port pair","expression":"this == '' || this.isHostAndPort(true)"},{"id":"string.host_and_port_empty","message":"value is empty, which is not a valid host and port pair","expression":"this != ''"}]}}},{"name":"well_known_regex","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".buf.validate.KnownRegex","oneofIndex":0,"jsonName":"wellKnownRegex","options":{"[buf.validate.priv.field]":{"cel":[{"id":"string.well_known_regex.header_name","message":"value must be a valid HTTP header name","expression":"rules.well_known_regex != 1 || this == '' || this.matches(!has(rules.strict) || rules.strict ?'^:?[0-9a-zA-Z!#$%&\\'*+-.^_|~\\x60]+$' :'^[^\\u0000\\u000A\\u000D]+$')"},{"id":"string.well_known_regex.header_name_empty","message":"value is empty, which is not a valid HTTP header name","expression":"rules.well_known_regex != 1 || this != ''"},{"id":"string.well_known_regex.header_value","message":"value must be a valid HTTP header value","expression":"rules.well_known_regex != 2 || this.matches(!has(rules.strict) || rules.strict ?'^[^\\u0000-\\u0008\\u000A-\\u001F\\u007F]*$' :'^[^\\u0000\\u000A\\u000D]*$')"}]}}},{"name":"strict","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"strict","proto3Optional":true}],"oneofDecl":[{"name":"well_known"},{"name":"_const"},{"name":"_len"},{"name":"_min_len"},{"name":"_max_len"},{"name":"_len_bytes"},{"name":"_min_bytes"},{"name":"_max_bytes"},{"name":"_pattern"},{"name":"_prefix"},{"name":"_suffix"},{"name":"_contains"},{"name":"_not_contains"},{"name":"_strict"}]},{"name":"BytesRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":1,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.const","expression":"this != rules.const ? 'value must be %x'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"len","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":2,"jsonName":"len","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.len","expression":"uint(this.size()) != rules.len ? 'value length must be %s bytes'.format([rules.len]) : ''"}]}},"proto3Optional":true},{"name":"min_len","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":3,"jsonName":"minLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.min_len","expression":"uint(this.size()) < rules.min_len ? 'value length must be at least %s bytes'.format([rules.min_len]) : ''"}]}},"proto3Optional":true},{"name":"max_len","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":4,"jsonName":"maxLen","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.max_len","expression":"uint(this.size()) > rules.max_len ? 'value must be at most %s bytes'.format([rules.max_len]) : ''"}]}},"proto3Optional":true},{"name":"pattern","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pattern","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.pattern","expression":"!string(this).matches(rules.pattern) ? 'value must match regex pattern `%s`'.format([rules.pattern]) : ''"}]}},"proto3Optional":true},{"name":"prefix","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":6,"jsonName":"prefix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.prefix","expression":"!this.startsWith(rules.prefix) ? 'value does not have prefix %x'.format([rules.prefix]) : ''"}]}},"proto3Optional":true},{"name":"suffix","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":7,"jsonName":"suffix","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.suffix","expression":"!this.endsWith(rules.suffix) ? 'value does not have suffix %x'.format([rules.suffix]) : ''"}]}},"proto3Optional":true},{"name":"contains","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":8,"jsonName":"contains","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.contains","expression":"!this.contains(rules.contains) ? 'value does not contain %x'.format([rules.contains]) : ''"}]}},"proto3Optional":true},{"name":"in","number":8,"label":"LABEL_REPEATED","type":"TYPE_BYTES","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.in","expression":"dyn(rules)['in'].size() > 0 && !(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":9,"label":"LABEL_REPEATED","type":"TYPE_BYTES","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}},{"name":"ip","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ip","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.ip","message":"value must be a valid IP address","expression":"this.size() == 0 || this.size() == 4 || this.size() == 16"},{"id":"bytes.ip_empty","message":"value is empty, which is not a valid IP address","expression":"this.size() != 0"}]}}},{"name":"ipv4","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv4","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.ipv4","message":"value must be a valid IPv4 address","expression":"this.size() == 0 || this.size() == 4"},{"id":"bytes.ipv4_empty","message":"value is empty, which is not a valid IPv4 address","expression":"this.size() != 0"}]}}},{"name":"ipv6","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ipv6","options":{"[buf.validate.priv.field]":{"cel":[{"id":"bytes.ipv6","message":"value must be a valid IPv6 address","expression":"this.size() == 0 || this.size() == 16"},{"id":"bytes.ipv6_empty","message":"value is empty, which is not a valid IPv6 address","expression":"this.size() != 0"}]}}}],"oneofDecl":[{"name":"well_known"},{"name":"_const"},{"name":"_len"},{"name":"_min_len"},{"name":"_max_len"},{"name":"_pattern"},{"name":"_prefix"},{"name":"_suffix"},{"name":"_contains"}]},{"name":"EnumRules","field":[{"name":"const","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"enum.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"defined_only","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"definedOnly","proto3Optional":true},{"name":"in","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"enum.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"enum.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"_const"},{"name":"_defined_only"}]},{"name":"RepeatedRules","field":[{"name":"min_items","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"minItems","options":{"[buf.validate.priv.field]":{"cel":[{"id":"repeated.min_items","expression":"uint(this.size()) < rules.min_items ? 'value must contain at least %d item(s)'.format([rules.min_items]) : ''"}]}},"proto3Optional":true},{"name":"max_items","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"maxItems","options":{"[buf.validate.priv.field]":{"cel":[{"id":"repeated.max_items","expression":"uint(this.size()) > rules.max_items ? 'value must contain no more than %s item(s)'.format([rules.max_items]) : ''"}]}},"proto3Optional":true},{"name":"unique","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"unique","options":{"[buf.validate.priv.field]":{"cel":[{"id":"repeated.unique","message":"repeated value must contain unique items","expression":"this.unique()"}]}},"proto3Optional":true},{"name":"items","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","oneofIndex":3,"jsonName":"items","proto3Optional":true}],"oneofDecl":[{"name":"_min_items"},{"name":"_max_items"},{"name":"_unique"},{"name":"_items"}]},{"name":"MapRules","field":[{"name":"min_pairs","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":0,"jsonName":"minPairs","options":{"[buf.validate.priv.field]":{"cel":[{"id":"map.min_pairs","expression":"uint(this.size()) < rules.min_pairs ? 'map must be at least %d entries'.format([rules.min_pairs]) : ''"}]}},"proto3Optional":true},{"name":"max_pairs","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":1,"jsonName":"maxPairs","options":{"[buf.validate.priv.field]":{"cel":[{"id":"map.max_pairs","expression":"uint(this.size()) > rules.max_pairs ? 'map must be at most %d entries'.format([rules.max_pairs]) : ''"}]}},"proto3Optional":true},{"name":"keys","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","oneofIndex":2,"jsonName":"keys","proto3Optional":true},{"name":"values","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","oneofIndex":3,"jsonName":"values","proto3Optional":true}],"oneofDecl":[{"name":"_min_pairs"},{"name":"_max_pairs"},{"name":"_keys"},{"name":"_values"}]},{"name":"AnyRules","field":[{"name":"in","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"in"},{"name":"not_in","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"notIn"}]},{"name":"DurationRules","field":[{"name":"const","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"gt","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"duration.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"duration.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"duration.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"duration.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"duration.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"duration.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"duration.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"duration.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"in","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"in","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.in","expression":"!(this in dyn(rules)['in']) ? 'value must be in list %s'.format([dyn(rules)['in']]) : ''"}]}}},{"name":"not_in","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"notIn","options":{"[buf.validate.priv.field]":{"cel":[{"id":"duration.not_in","expression":"this in rules.not_in ? 'value must not be in list %s'.format([rules.not_in]) : ''"}]}}}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"}]},{"name":"TimestampRules","field":[{"name":"const","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"const","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.const","expression":"this != rules.const ? 'value must equal %s'.format([rules.const]) : ''"}]}},"proto3Optional":true},{"name":"lt","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"lt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.lt","expression":"!has(rules.gte) && !has(rules.gt) && this >= rules.lt? 'value must be less than %s'.format([rules.lt]) : ''"}]}}},{"name":"lte","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"lte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.lte","expression":"!has(rules.gte) && !has(rules.gt) && this > rules.lte? 'value must be less than or equal to %s'.format([rules.lte]) : ''"}]}}},{"name":"lt_now","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ltNow","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.lt_now","expression":"this > now ? 'value must be less than now' : ''"}]}}},{"name":"gt","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"gt","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.gt","expression":"!has(rules.lt) && !has(rules.lte) && this <= rules.gt? 'value must be greater than %s'.format([rules.gt]) : ''"},{"id":"timestamp.gt_lt","expression":"has(rules.lt) && rules.lt >= rules.gt && (this >= rules.lt || this <= rules.gt)? 'value must be greater than %s and less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"timestamp.gt_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gt && (rules.lt <= this && this <= rules.gt)? 'value must be greater than %s or less than %s'.format([rules.gt, rules.lt]) : ''"},{"id":"timestamp.gt_lte","expression":"has(rules.lte) && rules.lte >= rules.gt && (this > rules.lte || this <= rules.gt)? 'value must be greater than %s and less than or equal to %s'.format([rules.gt, rules.lte]) : ''"},{"id":"timestamp.gt_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gt && (rules.lte < this && this <= rules.gt)? 'value must be greater than %s or less than or equal to %s'.format([rules.gt, rules.lte]) : ''"}]}}},{"name":"gte","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"gte","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.gte","expression":"!has(rules.lt) && !has(rules.lte) && this < rules.gte? 'value must be greater than or equal to %s'.format([rules.gte]) : ''"},{"id":"timestamp.gte_lt","expression":"has(rules.lt) && rules.lt >= rules.gte && (this >= rules.lt || this < rules.gte)? 'value must be greater than or equal to %s and less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"timestamp.gte_lt_exclusive","expression":"has(rules.lt) && rules.lt < rules.gte && (rules.lt <= this && this < rules.gte)? 'value must be greater than or equal to %s or less than %s'.format([rules.gte, rules.lt]) : ''"},{"id":"timestamp.gte_lte","expression":"has(rules.lte) && rules.lte >= rules.gte && (this > rules.lte || this < rules.gte)? 'value must be greater than or equal to %s and less than or equal to %s'.format([rules.gte, rules.lte]) : ''"},{"id":"timestamp.gte_lte_exclusive","expression":"has(rules.lte) && rules.lte < rules.gte && (rules.lte < this && this < rules.gte)? 'value must be greater than or equal to %s or less than or equal to %s'.format([rules.gte, rules.lte]) : ''"}]}}},{"name":"gt_now","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"gtNow","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.gt_now","expression":"this < now ? 'value must be greater than now' : ''"}]}}},{"name":"within","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","oneofIndex":3,"jsonName":"within","options":{"[buf.validate.priv.field]":{"cel":[{"id":"timestamp.within","expression":"this < now-rules.within || this > now+rules.within ? 'value must be within %s of now'.format([rules.within]) : ''"}]}},"proto3Optional":true}],"oneofDecl":[{"name":"less_than"},{"name":"greater_than"},{"name":"_const"},{"name":"_within"}]}],"enumType":[{"name":"Ignore","value":[{"name":"IGNORE_UNSPECIFIED","number":0},{"name":"IGNORE_IF_UNPOPULATED","number":1},{"name":"IGNORE_IF_DEFAULT_VALUE","number":2},{"name":"IGNORE_ALWAYS","number":3},{"name":"IGNORE_EMPTY","number":1,"options":{"deprecated":true}},{"name":"IGNORE_DEFAULT","number":2,"options":{"deprecated":true}}],"options":{"allowAlias":true}},{"name":"KnownRegex","value":[{"name":"KNOWN_REGEX_UNSPECIFIED","number":0},{"name":"KNOWN_REGEX_HTTP_HEADER_NAME","number":1},{"name":"KNOWN_REGEX_HTTP_HEADER_VALUE","number":2}]}],"extension":[{"name":"message","number":1159,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.MessageConstraints","extendee":".google.protobuf.MessageOptions","jsonName":"message","proto3Optional":true},{"name":"oneof","number":1159,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.OneofConstraints","extendee":".google.protobuf.OneofOptions","jsonName":"oneof","proto3Optional":true},{"name":"field","number":1159,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".buf.validate.FieldConstraints","extendee":".google.protobuf.FieldOptions","jsonName":"field","proto3Optional":true}],"options":{"javaPackage":"build.buf.validate","javaOuterClassname":"ValidateProto","javaMultipleFiles":true,"goPackage":"buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate"},"sourceCodeInfo":{"location":[{"span":[14,0,4129,1]},{"path":[12],"span":[14,0,18],"leadingDetachedComments":[" Copyright 2023 Buf Technologies, Inc.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"]},{"path":[2],"span":[16,0,21]},{"path":[3,0],"span":[18,0,39]},{"path":[3,1],"span":[19,0,41]},{"path":[3,2],"span":[20,0,42]},{"path":[3,3],"span":[21,0,40]},{"path":[3,4],"span":[22,0,41]},{"path":[8],"span":[24,0,94]},{"path":[8,11],"span":[24,0,94]},{"path":[8],"span":[25,0,34]},{"path":[8,10],"span":[25,0,34]},{"path":[8],"span":[26,0,46]},{"path":[8,8],"span":[26,0,46]},{"path":[8],"span":[27,0,43]},{"path":[8,1],"span":[27,0,43]},{"path":[7],"span":[33,0,37,1],"leadingComments":" MessageOptions is an extension to google.protobuf.MessageOptions. It allows\n the addition of validation rules at the message level. These rules can be\n applied to incoming messages to ensure they meet certain criteria before\n being processed.\n"},{"path":[7,0],"span":[36,2,45],"leadingComments":" Rules specify the validations to be performed on this message. By default,\n no validation is performed against a message.\n"},{"path":[7,0,2],"span":[33,7,37]},{"path":[7,0,4],"span":[36,2,10]},{"path":[7,0,6],"span":[36,11,29]},{"path":[7,0,1],"span":[36,30,37]},{"path":[7,0,3],"span":[36,40,44]},{"path":[7],"span":[43,0,47,1],"leadingComments":" OneofOptions is an extension to google.protobuf.OneofOptions. It allows\n the addition of validation rules on a oneof. These rules can be\n applied to incoming messages to ensure they meet certain criteria before\n being processed.\n"},{"path":[7,1],"span":[46,2,41],"leadingComments":" Rules specify the validations to be performed on this oneof. By default,\n no validation is performed against a oneof.\n"},{"path":[7,1,2],"span":[43,7,35]},{"path":[7,1,4],"span":[46,2,10]},{"path":[7,1,6],"span":[46,11,27]},{"path":[7,1,1],"span":[46,28,33]},{"path":[7,1,3],"span":[46,36,40]},{"path":[7],"span":[53,0,57,1],"leadingComments":" FieldOptions is an extension to google.protobuf.FieldOptions. It allows\n the addition of validation rules at the field level. These rules can be\n applied to incoming messages to ensure they meet certain criteria before\n being processed.\n"},{"path":[7,2],"span":[56,2,41],"leadingComments":" Rules specify the validations to be performed on this field. By default,\n no validation is performed against a field.\n"},{"path":[7,2,2],"span":[53,7,35]},{"path":[7,2,4],"span":[56,2,10]},{"path":[7,2,6],"span":[56,11,27]},{"path":[7,2,1],"span":[56,28,33]},{"path":[7,2,3],"span":[56,36,40]},{"path":[4,0],"span":[61,0,90,1],"leadingComments":" MessageConstraints represents validation rules that are applied to the entire message.\n It includes disabling options and a list of Constraint messages representing Common Expression Language (CEL) validation rules.\n"},{"path":[4,0,1],"span":[61,8,26]},{"path":[4,0,2,0],"span":[71,2,29],"leadingComments":" `disabled` is a boolean flag that, when set to true, nullifies any validation rules for this message.\n This includes any fields within the message that would otherwise support validation.\n\n ```proto\n message MyMessage {\n // validation will be bypassed for this message\n option (buf.validate.message).disabled = true;\n }\n ```\n"},{"path":[4,0,2,0,4],"span":[71,2,10]},{"path":[4,0,2,0,5],"span":[71,11,15]},{"path":[4,0,2,0,1],"span":[71,16,24]},{"path":[4,0,2,0,3],"span":[71,27,28]},{"path":[4,0,2,1],"span":[89,2,30],"leadingComments":" `cel` is a repeated field of type Constraint. Each Constraint specifies a validation rule to be applied to this message.\n These constraints are written in Common Expression Language (CEL) syntax. For more information on\n CEL, [see our documentation](https://github.com/bufbuild/protovalidate/blob/main/docs/cel.md).\n\n\n ```proto\n message MyMessage {\n // The field `foo` must be greater than 42.\n option (buf.validate.message).cel = {\n id: \"my_message.value\",\n message: \"value must be greater than 42\",\n expression: \"this.foo > 42\",\n };\n optional int32 foo = 1;\n }\n ```\n"},{"path":[4,0,2,1,4],"span":[89,2,10]},{"path":[4,0,2,1,6],"span":[89,11,21]},{"path":[4,0,2,1,1],"span":[89,22,25]},{"path":[4,0,2,1,3],"span":[89,28,29]},{"path":[4,1],"span":[94,0,113,1],"leadingComments":" The `OneofConstraints` message type enables you to manage constraints for\n oneof fields in your protobuf messages.\n"},{"path":[4,1,1],"span":[94,8,24]},{"path":[4,1,2,0],"span":[112,2,29],"leadingComments":" If `required` is true, exactly one field of the oneof must be present. A\n validation error is returned if no fields in the oneof are present. The\n field itself may still be a default value; further constraints\n should be placed on the fields themselves to ensure they are valid values,\n such as `min_len` or `gt`.\n\n ```proto\n message MyMessage {\n oneof value {\n // Either `a` or `b` must be set. If `a` is set, it must also be\n // non-empty; whereas if `b` is set, it can still be an empty string.\n option (buf.validate.oneof).required = true;\n string a = 1 [(buf.validate.field).string.min_len = 1];\n string b = 2;\n }\n }\n ```\n"},{"path":[4,1,2,0,4],"span":[112,2,10]},{"path":[4,1,2,0,5],"span":[112,11,15]},{"path":[4,1,2,0,1],"span":[112,16,24]},{"path":[4,1,2,0,3],"span":[112,27,28]},{"path":[4,2],"span":[117,0,199,1],"leadingComments":" FieldConstraints encapsulates the rules for each type of field. Depending on\n the field, the correct set should be used to ensure proper validations.\n"},{"path":[4,2,1],"span":[117,8,24]},{"path":[4,2,2,0],"span":[132,2,31],"leadingComments":" `cel` is a repeated field used to represent a textual expression\n in the Common Expression Language (CEL) syntax. For more information on\n CEL, [see our documentation](https://github.com/bufbuild/protovalidate/blob/main/docs/cel.md).\n\n ```proto\n message MyMessage {\n // The field `value` must be greater than 42.\n optional int32 value = 1 [(buf.validate.field).cel = {\n id: \"my_message.value\",\n message: \"value must be greater than 42\",\n expression: \"this > 42\",\n }];\n }\n ```\n"},{"path":[4,2,2,0,4],"span":[132,2,10]},{"path":[4,2,2,0,6],"span":[132,11,21]},{"path":[4,2,2,0,1],"span":[132,22,25]},{"path":[4,2,2,0,3],"span":[132,28,30]},{"path":[4,2,2,1],"span":[150,2,21],"leadingComments":" If `required` is true, the field must be populated. A populated field can be\n described as \"serialized in the wire format,\" which includes:\n\n - the following \"nullable\" fields must be explicitly set to be considered populated:\n - singular message fields (whose fields may be unpopulated/default values)\n - member fields of a oneof (may be their default value)\n - proto3 optional fields (may be their default value)\n - proto2 scalar fields (both optional and required)\n - proto3 scalar fields must be non-zero to be considered populated\n - repeated and map fields must be non-empty to be considered populated\n\n ```proto\n message MyMessage {\n // The field `value` must be set to a non-null value.\n optional MyOtherMessage value = 1 [(buf.validate.field).required = true];\n }\n ```\n"},{"path":[4,2,2,1,5],"span":[150,2,6]},{"path":[4,2,2,1,1],"span":[150,7,15]},{"path":[4,2,2,1,3],"span":[150,18,20]},{"path":[4,2,2,2],"span":[164,2,21],"leadingComments":" Skip validation on the field if its value matches the specified criteria.\n See Ignore enum for details.\n\n ```proto\n message UpdateRequest {\n // The uri rule only applies if the field is populated and not an empty\n // string.\n optional string url = 1 [\n (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE,\n (buf.validate.field).string.uri = true,\n ];\n }\n ```\n"},{"path":[4,2,2,2,6],"span":[164,2,8]},{"path":[4,2,2,2,1],"span":[164,9,15]},{"path":[4,2,2,2,3],"span":[164,18,20]},{"path":[4,2,8,0],"span":[166,2,193,3]},{"path":[4,2,8,0,1],"span":[166,8,12]},{"path":[4,2,2,3],"span":[168,4,25],"leadingComments":" Scalar Field Types\n"},{"path":[4,2,2,3,6],"span":[168,4,14]},{"path":[4,2,2,3,1],"span":[168,15,20]},{"path":[4,2,2,3,3],"span":[168,23,24]},{"path":[4,2,2,4],"span":[169,4,27]},{"path":[4,2,2,4,6],"span":[169,4,15]},{"path":[4,2,2,4,1],"span":[169,16,22]},{"path":[4,2,2,4,3],"span":[169,25,26]},{"path":[4,2,2,5],"span":[170,4,25]},{"path":[4,2,2,5,6],"span":[170,4,14]},{"path":[4,2,2,5,1],"span":[170,15,20]},{"path":[4,2,2,5,3],"span":[170,23,24]},{"path":[4,2,2,6],"span":[171,4,25]},{"path":[4,2,2,6,6],"span":[171,4,14]},{"path":[4,2,2,6,1],"span":[171,15,20]},{"path":[4,2,2,6,3],"span":[171,23,24]},{"path":[4,2,2,7],"span":[172,4,27]},{"path":[4,2,2,7,6],"span":[172,4,15]},{"path":[4,2,2,7,1],"span":[172,16,22]},{"path":[4,2,2,7,3],"span":[172,25,26]},{"path":[4,2,2,8],"span":[173,4,27]},{"path":[4,2,2,8,6],"span":[173,4,15]},{"path":[4,2,2,8,1],"span":[173,16,22]},{"path":[4,2,2,8,3],"span":[173,25,26]},{"path":[4,2,2,9],"span":[174,4,27]},{"path":[4,2,2,9,6],"span":[174,4,15]},{"path":[4,2,2,9,1],"span":[174,16,22]},{"path":[4,2,2,9,3],"span":[174,25,26]},{"path":[4,2,2,10],"span":[175,4,27]},{"path":[4,2,2,10,6],"span":[175,4,15]},{"path":[4,2,2,10,1],"span":[175,16,22]},{"path":[4,2,2,10,3],"span":[175,25,26]},{"path":[4,2,2,11],"span":[176,4,29]},{"path":[4,2,2,11,6],"span":[176,4,16]},{"path":[4,2,2,11,1],"span":[176,17,24]},{"path":[4,2,2,11,3],"span":[176,27,28]},{"path":[4,2,2,12],"span":[177,4,30]},{"path":[4,2,2,12,6],"span":[177,4,16]},{"path":[4,2,2,12,1],"span":[177,17,24]},{"path":[4,2,2,12,3],"span":[177,27,29]},{"path":[4,2,2,13],"span":[178,4,32]},{"path":[4,2,2,13,6],"span":[178,4,17]},{"path":[4,2,2,13,1],"span":[178,18,26]},{"path":[4,2,2,13,3],"span":[178,29,31]},{"path":[4,2,2,14],"span":[179,4,32]},{"path":[4,2,2,14,6],"span":[179,4,17]},{"path":[4,2,2,14,1],"span":[179,18,26]},{"path":[4,2,2,14,3],"span":[179,29,31]},{"path":[4,2,2,15],"span":[180,4,24]},{"path":[4,2,2,15,6],"span":[180,4,13]},{"path":[4,2,2,15,1],"span":[180,14,18]},{"path":[4,2,2,15,3],"span":[180,21,23]},{"path":[4,2,2,16],"span":[181,4,28]},{"path":[4,2,2,16,6],"span":[181,4,15]},{"path":[4,2,2,16,1],"span":[181,16,22]},{"path":[4,2,2,16,3],"span":[181,25,27]},{"path":[4,2,2,17],"span":[182,4,26]},{"path":[4,2,2,17,6],"span":[182,4,14]},{"path":[4,2,2,17,1],"span":[182,15,20]},{"path":[4,2,2,17,3],"span":[182,23,25]},{"path":[4,2,2,18],"span":[185,4,24],"leadingComments":" Complex Field Types\n"},{"path":[4,2,2,18,6],"span":[185,4,13]},{"path":[4,2,2,18,1],"span":[185,14,18]},{"path":[4,2,2,18,3],"span":[185,21,23]},{"path":[4,2,2,19],"span":[186,4,32]},{"path":[4,2,2,19,6],"span":[186,4,17]},{"path":[4,2,2,19,1],"span":[186,18,26]},{"path":[4,2,2,19,3],"span":[186,29,31]},{"path":[4,2,2,20],"span":[187,4,22]},{"path":[4,2,2,20,6],"span":[187,4,12]},{"path":[4,2,2,20,1],"span":[187,13,16]},{"path":[4,2,2,20,3],"span":[187,19,21]},{"path":[4,2,2,21],"span":[190,4,22],"leadingComments":" Well-Known Field Types\n"},{"path":[4,2,2,21,6],"span":[190,4,12]},{"path":[4,2,2,21,1],"span":[190,13,16]},{"path":[4,2,2,21,3],"span":[190,19,21]},{"path":[4,2,2,22],"span":[191,4,32]},{"path":[4,2,2,22,6],"span":[191,4,17]},{"path":[4,2,2,22,1],"span":[191,18,26]},{"path":[4,2,2,22,3],"span":[191,29,31]},{"path":[4,2,2,23],"span":[192,4,34]},{"path":[4,2,2,23,6],"span":[192,4,18]},{"path":[4,2,2,23,1],"span":[192,19,28]},{"path":[4,2,2,23,3],"span":[192,31,33]},{"path":[4,2,2,24],"span":[196,2,40],"leadingComments":" DEPRECATED: use ignore=IGNORE_ALWAYS instead. TODO: remove this field pre-v1.\n"},{"path":[4,2,2,24,5],"span":[196,2,6]},{"path":[4,2,2,24,1],"span":[196,7,14]},{"path":[4,2,2,24,3],"span":[196,17,19]},{"path":[4,2,2,24,8],"span":[196,20,39]},{"path":[4,2,2,24,8,3],"span":[196,21,38]},{"path":[4,2,2,25],"span":[198,2,45],"leadingComments":" DEPRECATED: use ignore=IGNORE_IF_UNPOPULATED instead. TODO: remove this field pre-v1.\n"},{"path":[4,2,2,25,5],"span":[198,2,6]},{"path":[4,2,2,25,1],"span":[198,7,19]},{"path":[4,2,2,25,3],"span":[198,22,24]},{"path":[4,2,2,25,8],"span":[198,25,44]},{"path":[4,2,2,25,8,3],"span":[198,26,43]},{"path":[5,0],"span":[203,0,353,1],"leadingComments":" Specifies how FieldConstraints.ignore behaves. See the documentation for\n FieldConstraints.required for definitions of \"populated\" and \"nullable\".\n"},{"path":[5,0,1],"span":[203,5,11]},{"path":[5,0,3],"span":[205,2,28]},{"path":[5,0,3,2],"span":[205,2,28],"leadingComments":" buf:lint:ignore ENUM_NO_ALLOW_ALIAS // allowance for deprecations. TODO: remove pre-v1.\n"},{"path":[5,0,2,0],"span":[235,2,25],"leadingComments":" Validation is only skipped if it's an unpopulated nullable fields.\n\n ```proto\n syntax=\"proto3\";\n\n message Request {\n // The uri rule applies to any value, including the empty string.\n string foo = 1 [\n (buf.validate.field).string.uri = true\n ];\n\n // The uri rule only applies if the field is set, including if it's\n // set to the empty string.\n optional string bar = 2 [\n (buf.validate.field).string.uri = true\n ];\n\n // The min_items rule always applies, even if the list is empty.\n repeated string baz = 3 [\n (buf.validate.field).repeated.min_items = 3\n ];\n\n // The custom CEL rule applies only if the field is set, including if\n // it's the \"zero\" value of that message.\n SomeMessage quux = 4 [\n (buf.validate.field).cel = {/* ... */}\n ];\n }\n ```\n"},{"path":[5,0,2,0,1],"span":[235,2,20]},{"path":[5,0,2,0,2],"span":[235,23,24]},{"path":[5,0,2,1],"span":[274,2,28],"leadingComments":" Validation is skipped if the field is unpopulated. This rule is redundant\n if the field is already nullable. This value is equivalent behavior to the\n deprecated ignore_empty rule.\n\n ```proto\n syntax=\"proto3\n\n message Request {\n // The uri rule applies only if the value is not the empty string.\n string foo = 1 [\n (buf.validate.field).string.uri = true,\n (buf.validate.field).ignore = IGNORE_IF_UNPOPULATED\n ];\n\n // IGNORE_IF_UNPOPULATED is equivalent to IGNORE_UNSPECIFIED in this\n // case: the uri rule only applies if the field is set, including if\n // it's set to the empty string.\n optional string bar = 2 [\n (buf.validate.field).string.uri = true,\n (buf.validate.field).ignore = IGNORE_IF_UNPOPULATED\n ];\n\n // The min_items rule only applies if the list has at least one item.\n repeated string baz = 3 [\n (buf.validate.field).repeated.min_items = 3,\n (buf.validate.field).ignore = IGNORE_IF_UNPOPULATED\n ];\n\n // IGNORE_IF_UNPOPULATED is equivalent to IGNORE_UNSPECIFIED in this\n // case: the custom CEL rule applies only if the field is set, including\n // if it's the \"zero\" value of that message.\n SomeMessage quux = 4 [\n (buf.validate.field).cel = {/* ... */},\n (buf.validate.field).ignore = IGNORE_IF_UNPOPULATED\n ];\n }\n ```\n"},{"path":[5,0,2,1,1],"span":[274,2,23]},{"path":[5,0,2,1,2],"span":[274,26,27]},{"path":[5,0,2,2],"span":[332,2,30],"leadingComments":" Validation is skipped if the field is unpopulated or if it is a nullable\n field populated with its default value. This is typically the zero or\n empty value, but proto2 scalars support custom defaults. For messages, the\n default is a non-null message with all its fields unpopulated.\n\n ```proto\n syntax=\"proto3\n\n message Request {\n // IGNORE_IF_DEFAULT_VALUE is equivalent to IGNORE_IF_UNPOPULATED in\n // this case; the uri rule applies only if the value is not the empty\n // string.\n string foo = 1 [\n (buf.validate.field).string.uri = true,\n (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE\n ];\n\n // The uri rule only applies if the field is set to a value other than\n // the empty string.\n optional string bar = 2 [\n (buf.validate.field).string.uri = true,\n (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE\n ];\n\n // IGNORE_IF_DEFAULT_VALUE is equivalent to IGNORE_IF_UNPOPULATED in\n // this case; the min_items rule only applies if the list has at least\n // one item.\n repeated string baz = 3 [\n (buf.validate.field).repeated.min_items = 3,\n (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE\n ];\n\n // The custom CEL rule only applies if the field is set to a value other\n // than an empty message (i.e., fields are unpopulated).\n SomeMessage quux = 4 [\n (buf.validate.field).cel = {/* ... */},\n (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE\n ];\n }\n ```\n\n This rule is affected by proto2 custom default values:\n\n ```proto\n syntax=\"proto2\";\n\n message Request {\n // The gt rule only applies if the field is set and it's value is not\n the default (i.e., not -42). The rule even applies if the field is set\n to zero since the default value differs.\n optional int32 value = 1 [\n default = -42,\n (buf.validate.field).int32.gt = 0,\n (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE\n ];\n }\n"},{"path":[5,0,2,2,1],"span":[332,2,25]},{"path":[5,0,2,2,2],"span":[332,28,29]},{"path":[5,0,2,3],"span":[347,2,20],"leadingComments":" The validation rules of this field will be skipped and not evaluated. This\n is useful for situations that necessitate turning off the rules of a field\n containing a message that may not make sense in the current context, or to\n temporarily disable constraints during development.\n\n ```proto\n message MyMessage {\n // The field's rules will always be ignored, including any validation's\n // on value's fields.\n MyOtherMessage value = 1 [\n (buf.validate.field).ignore = IGNORE_ALWAYS];\n }\n ```\n"},{"path":[5,0,2,3,1],"span":[347,2,15]},{"path":[5,0,2,3,2],"span":[347,18,19]},{"path":[5,0,2,4],"span":[350,2,39],"leadingComments":" Deprecated: Use IGNORE_IF_UNPOPULATED instead. TODO: Remove this value pre-v1.\n"},{"path":[5,0,2,4,1],"span":[350,2,14]},{"path":[5,0,2,4,2],"span":[350,17,18]},{"path":[5,0,2,4,3],"span":[350,19,38]},{"path":[5,0,2,4,3,1],"span":[350,20,37]},{"path":[5,0,2,5],"span":[352,2,41],"leadingComments":" Deprecated: Use IGNORE_IF_DEFAULT_VALUE. TODO: Remove this value pre-v1.\n"},{"path":[5,0,2,5,1],"span":[352,2,16]},{"path":[5,0,2,5,2],"span":[352,19,20]},{"path":[5,0,2,5,3],"span":[352,21,40]},{"path":[5,0,2,5,3,1],"span":[352,22,39]},{"path":[4,3],"span":[357,0,548,1],"leadingComments":" FloatRules describes the constraints applied to `float` values. These\n rules may also be applied to the `google.protobuf.FloatValue` Well-Known-Type.\n"},{"path":[4,3,1],"span":[357,8,18]},{"path":[4,3,2,0],"span":[367,2,370,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyFloat {\n // value must equal 42.0\n float value = 1 [(buf.validate.field).float.const = 42.0];\n }\n ```\n"},{"path":[4,3,2,0,4],"span":[367,2,10]},{"path":[4,3,2,0,5],"span":[367,11,16]},{"path":[4,3,2,0,1],"span":[367,17,22]},{"path":[4,3,2,0,3],"span":[367,25,26]},{"path":[4,3,2,0,8],"span":[367,27,370,4]},{"path":[4,3,2,0,8,1160,1,0],"span":[367,28,370,3]},{"path":[4,3,2,0,8,1160,1,0,1],"span":[368,4,21]},{"path":[4,3,2,0,8,1160,1,0,3],"span":[369,4,88]},{"path":[4,3,8,0],"span":[372,2,406,3]},{"path":[4,3,8,0,1],"span":[372,8,17]},{"path":[4,3,2,1],"span":[383,4,388,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MyFloat {\n // value must be less than 10.0\n float value = 1 [(buf.validate.field).float.lt = 10.0];\n }\n ```\n"},{"path":[4,3,2,1,5],"span":[383,4,9]},{"path":[4,3,2,1,1],"span":[383,10,12]},{"path":[4,3,2,1,3],"span":[383,15,16]},{"path":[4,3,2,1,8],"span":[383,17,388,6]},{"path":[4,3,2,1,8,1160,1,0],"span":[383,18,388,5]},{"path":[4,3,2,1,8,1160,1,0,1],"span":[384,6,20]},{"path":[4,3,2,1,8,1160,1,0,3],"span":[385,6,387,64]},{"path":[4,3,2,2],"span":[400,4,405,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyFloat {\n // value must be less than or equal to 10.0\n float value = 1 [(buf.validate.field).float.lte = 10.0];\n }\n ```\n"},{"path":[4,3,2,2,5],"span":[400,4,9]},{"path":[4,3,2,2,1],"span":[400,10,13]},{"path":[4,3,2,2,3],"span":[400,16,17]},{"path":[4,3,2,2,8],"span":[400,18,405,6]},{"path":[4,3,2,2,8,1160,1,0],"span":[400,19,405,5]},{"path":[4,3,2,2,8,1160,1,0,1],"span":[401,6,21]},{"path":[4,3,2,2,8,1160,1,0,3],"span":[402,6,404,77]},{"path":[4,3,8,1],"span":[408,2,510,3]},{"path":[4,3,8,1,1],"span":[408,8,20]},{"path":[4,3,2,3],"span":[427,4,458,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyFloat {\n // value must be greater than 5.0 [float.gt]\n float value = 1 [(buf.validate.field).float.gt = 5.0];\n\n // value must be greater than 5 and less than 10.0 [float.gt_lt]\n float other_value = 2 [(buf.validate.field).float = { gt: 5.0, lt: 10.0 }];\n\n // value must be greater than 10 or less than 5.0 [float.gt_lt_exclusive]\n float another_value = 3 [(buf.validate.field).float = { gt: 10.0, lt: 5.0 }];\n }\n ```\n"},{"path":[4,3,2,3,5],"span":[427,4,9]},{"path":[4,3,2,3,1],"span":[427,10,12]},{"path":[4,3,2,3,3],"span":[427,15,16]},{"path":[4,3,2,3,8],"span":[427,17,458,5]},{"path":[4,3,2,3,8,1160,1,0],"span":[428,6,433,7]},{"path":[4,3,2,3,8,1160,1,0,1],"span":[429,8,22]},{"path":[4,3,2,3,8,1160,1,0,3],"span":[430,8,432,69]},{"path":[4,3,2,3,8,1160,1,1],"span":[434,6,439,7]},{"path":[4,3,2,3,8,1160,1,1,1],"span":[435,8,25]},{"path":[4,3,2,3,8,1160,1,1,3],"span":[436,8,438,96]},{"path":[4,3,2,3,8,1160,1,2],"span":[440,6,445,7]},{"path":[4,3,2,3,8,1160,1,2,1],"span":[441,8,35]},{"path":[4,3,2,3,8,1160,1,2,3],"span":[442,8,444,95]},{"path":[4,3,2,3,8,1160,1,3],"span":[446,6,451,7]},{"path":[4,3,2,3,8,1160,1,3,1],"span":[447,8,26]},{"path":[4,3,2,3,8,1160,1,3,3],"span":[448,8,450,109]},{"path":[4,3,2,3,8,1160,1,4],"span":[452,6,457,7]},{"path":[4,3,2,3,8,1160,1,4,1],"span":[453,8,36]},{"path":[4,3,2,3,8,1160,1,4,3],"span":[454,8,456,108]},{"path":[4,3,2,4],"span":[478,4,509,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyFloat {\n // value must be greater than or equal to 5.0 [float.gte]\n float value = 1 [(buf.validate.field).float.gte = 5.0];\n\n // value must be greater than or equal to 5.0 and less than 10.0 [float.gte_lt]\n float other_value = 2 [(buf.validate.field).float = { gte: 5.0, lt: 10.0 }];\n\n // value must be greater than or equal to 10.0 or less than 5.0 [float.gte_lt_exclusive]\n float another_value = 3 [(buf.validate.field).float = { gte: 10.0, lt: 5.0 }];\n }\n ```\n"},{"path":[4,3,2,4,5],"span":[478,4,9]},{"path":[4,3,2,4,1],"span":[478,10,13]},{"path":[4,3,2,4,3],"span":[478,16,17]},{"path":[4,3,2,4,8],"span":[478,18,509,5]},{"path":[4,3,2,4,8,1160,1,0],"span":[479,6,484,7]},{"path":[4,3,2,4,8,1160,1,0,1],"span":[480,8,23]},{"path":[4,3,2,4,8,1160,1,0,3],"span":[481,8,483,82]},{"path":[4,3,2,4,8,1160,1,1],"span":[485,6,490,7]},{"path":[4,3,2,4,8,1160,1,1,1],"span":[486,8,26]},{"path":[4,3,2,4,8,1160,1,1,3],"span":[487,8,489,109]},{"path":[4,3,2,4,8,1160,1,2],"span":[491,6,496,7]},{"path":[4,3,2,4,8,1160,1,2,1],"span":[492,8,36]},{"path":[4,3,2,4,8,1160,1,2,3],"span":[493,8,495,108]},{"path":[4,3,2,4,8,1160,1,3],"span":[497,6,502,7]},{"path":[4,3,2,4,8,1160,1,3,1],"span":[498,8,27]},{"path":[4,3,2,4,8,1160,1,3,3],"span":[499,8,501,122]},{"path":[4,3,2,4,8,1160,1,4],"span":[503,6,508,7]},{"path":[4,3,2,4,8,1160,1,4,1],"span":[504,8,37]},{"path":[4,3,2,4,8,1160,1,4,3],"span":[505,8,507,121]},{"path":[4,3,2,5],"span":[522,2,525,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message\n is generated.\n\n ```proto\n message MyFloat {\n // value must be in list [1.0, 2.0, 3.0]\n repeated float value = 1 (buf.validate.field).float = { in: [1.0, 2.0, 3.0] };\n }\n ```\n"},{"path":[4,3,2,5,4],"span":[522,2,10]},{"path":[4,3,2,5,5],"span":[522,11,16]},{"path":[4,3,2,5,1],"span":[522,17,19]},{"path":[4,3,2,5,3],"span":[522,22,23]},{"path":[4,3,2,5,8],"span":[522,24,525,4]},{"path":[4,3,2,5,8,1160,1,0],"span":[522,25,525,3]},{"path":[4,3,2,5,8,1160,1,0,1],"span":[523,4,18]},{"path":[4,3,2,5,8,1160,1,0,3],"span":[524,4,106]},{"path":[4,3,2,6],"span":[537,2,540,5],"leadingComments":" `in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MyFloat {\n // value must not be in list [1.0, 2.0, 3.0]\n repeated float value = 1 (buf.validate.field).float = { not_in: [1.0, 2.0, 3.0] };\n }\n ```\n"},{"path":[4,3,2,6,4],"span":[537,2,10]},{"path":[4,3,2,6,5],"span":[537,11,16]},{"path":[4,3,2,6,1],"span":[537,17,23]},{"path":[4,3,2,6,3],"span":[537,26,27]},{"path":[4,3,2,6,8],"span":[537,28,540,4]},{"path":[4,3,2,6,8,1160,1,0],"span":[537,29,540,3]},{"path":[4,3,2,6,8,1160,1,0,1],"span":[538,4,22]},{"path":[4,3,2,6,8,1160,1,0,3],"span":[539,4,99]},{"path":[4,3,2,7],"span":[544,2,547,5],"leadingComments":" `finite` requires the field value to be finite. If the field value is\n infinite or NaN, an error message is generated.\n"},{"path":[4,3,2,7,5],"span":[544,2,6]},{"path":[4,3,2,7,1],"span":[544,7,13]},{"path":[4,3,2,7,3],"span":[544,16,17]},{"path":[4,3,2,7,8],"span":[544,18,547,4]},{"path":[4,3,2,7,8,1160,1,0],"span":[544,19,547,3]},{"path":[4,3,2,7,8,1160,1,0,1],"span":[545,4,22]},{"path":[4,3,2,7,8,1160,1,0,3],"span":[546,4,76]},{"path":[4,4],"span":[552,0,740,1],"leadingComments":" DoubleRules describes the constraints applied to `double` values. These\n rules may also be applied to the `google.protobuf.DoubleValue` Well-Known-Type.\n"},{"path":[4,4,1],"span":[552,8,19]},{"path":[4,4,2,0],"span":[562,2,565,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyDouble {\n // value must equal 42.0\n double value = 1 [(buf.validate.field).double.const = 42.0];\n }\n ```\n"},{"path":[4,4,2,0,4],"span":[562,2,10]},{"path":[4,4,2,0,5],"span":[562,11,17]},{"path":[4,4,2,0,1],"span":[562,18,23]},{"path":[4,4,2,0,3],"span":[562,26,27]},{"path":[4,4,2,0,8],"span":[562,28,565,4]},{"path":[4,4,2,0,8,1160,1,0],"span":[562,29,565,3]},{"path":[4,4,2,0,8,1160,1,0,1],"span":[563,4,22]},{"path":[4,4,2,0,8,1160,1,0,3],"span":[564,4,88]},{"path":[4,4,8,0],"span":[566,2,600,3]},{"path":[4,4,8,0,1],"span":[566,8,17]},{"path":[4,4,2,1],"span":[577,4,582,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyDouble {\n // value must be less than 10.0\n double value = 1 [(buf.validate.field).double.lt = 10.0];\n }\n ```\n"},{"path":[4,4,2,1,5],"span":[577,4,10]},{"path":[4,4,2,1,1],"span":[577,11,13]},{"path":[4,4,2,1,3],"span":[577,16,17]},{"path":[4,4,2,1,8],"span":[577,18,582,6]},{"path":[4,4,2,1,8,1160,1,0],"span":[577,19,582,5]},{"path":[4,4,2,1,8,1160,1,0,1],"span":[578,6,21]},{"path":[4,4,2,1,8,1160,1,0,3],"span":[579,6,581,64]},{"path":[4,4,2,2],"span":[594,4,599,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified value\n (field <= value). If the field value is greater than the specified value,\n an error message is generated.\n\n ```proto\n message MyDouble {\n // value must be less than or equal to 10.0\n double value = 1 [(buf.validate.field).double.lte = 10.0];\n }\n ```\n"},{"path":[4,4,2,2,5],"span":[594,4,10]},{"path":[4,4,2,2,1],"span":[594,11,14]},{"path":[4,4,2,2,3],"span":[594,17,18]},{"path":[4,4,2,2,8],"span":[594,19,599,6]},{"path":[4,4,2,2,8,1160,1,0],"span":[594,20,599,5]},{"path":[4,4,2,2,8,1160,1,0,1],"span":[595,6,22]},{"path":[4,4,2,2,8,1160,1,0,3],"span":[596,6,598,77]},{"path":[4,4,8,1],"span":[601,2,703,3]},{"path":[4,4,8,1,1],"span":[601,8,20]},{"path":[4,4,2,3],"span":[620,4,651,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or `lte`,\n the range is reversed, and the field value must be outside the specified\n range. If the field value doesn't meet the required conditions, an error\n message is generated.\n\n ```proto\n message MyDouble {\n // value must be greater than 5.0 [double.gt]\n double value = 1 [(buf.validate.field).double.gt = 5.0];\n\n // value must be greater than 5 and less than 10.0 [double.gt_lt]\n double other_value = 2 [(buf.validate.field).double = { gt: 5.0, lt: 10.0 }];\n\n // value must be greater than 10 or less than 5.0 [double.gt_lt_exclusive]\n double another_value = 3 [(buf.validate.field).double = { gt: 10.0, lt: 5.0 }];\n }\n ```\n"},{"path":[4,4,2,3,5],"span":[620,4,10]},{"path":[4,4,2,3,1],"span":[620,11,13]},{"path":[4,4,2,3,3],"span":[620,16,17]},{"path":[4,4,2,3,8],"span":[620,18,651,5]},{"path":[4,4,2,3,8,1160,1,0],"span":[621,6,626,7]},{"path":[4,4,2,3,8,1160,1,0,1],"span":[622,8,23]},{"path":[4,4,2,3,8,1160,1,0,3],"span":[623,8,625,69]},{"path":[4,4,2,3,8,1160,1,1],"span":[627,6,632,7]},{"path":[4,4,2,3,8,1160,1,1,1],"span":[628,8,26]},{"path":[4,4,2,3,8,1160,1,1,3],"span":[629,8,631,96]},{"path":[4,4,2,3,8,1160,1,2],"span":[633,6,638,7]},{"path":[4,4,2,3,8,1160,1,2,1],"span":[634,8,36]},{"path":[4,4,2,3,8,1160,1,2,3],"span":[635,8,637,95]},{"path":[4,4,2,3,8,1160,1,3],"span":[639,6,644,7]},{"path":[4,4,2,3,8,1160,1,3,1],"span":[640,8,27]},{"path":[4,4,2,3,8,1160,1,3,3],"span":[641,8,643,109]},{"path":[4,4,2,3,8,1160,1,4],"span":[645,6,650,7]},{"path":[4,4,2,3,8,1160,1,4,1],"span":[646,8,37]},{"path":[4,4,2,3,8,1160,1,4,3],"span":[647,8,649,108]},{"path":[4,4,2,4],"span":[671,4,702,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyDouble {\n // value must be greater than or equal to 5.0 [double.gte]\n double value = 1 [(buf.validate.field).double.gte = 5.0];\n\n // value must be greater than or equal to 5.0 and less than 10.0 [double.gte_lt]\n double other_value = 2 [(buf.validate.field).double = { gte: 5.0, lt: 10.0 }];\n\n // value must be greater than or equal to 10.0 or less than 5.0 [double.gte_lt_exclusive]\n double another_value = 3 [(buf.validate.field).double = { gte: 10.0, lt: 5.0 }];\n }\n ```\n"},{"path":[4,4,2,4,5],"span":[671,4,10]},{"path":[4,4,2,4,1],"span":[671,11,14]},{"path":[4,4,2,4,3],"span":[671,17,18]},{"path":[4,4,2,4,8],"span":[671,19,702,5]},{"path":[4,4,2,4,8,1160,1,0],"span":[672,6,677,7]},{"path":[4,4,2,4,8,1160,1,0,1],"span":[673,8,24]},{"path":[4,4,2,4,8,1160,1,0,3],"span":[674,8,676,82]},{"path":[4,4,2,4,8,1160,1,1],"span":[678,6,683,7]},{"path":[4,4,2,4,8,1160,1,1,1],"span":[679,8,27]},{"path":[4,4,2,4,8,1160,1,1,3],"span":[680,8,682,109]},{"path":[4,4,2,4,8,1160,1,2],"span":[684,6,689,7]},{"path":[4,4,2,4,8,1160,1,2,1],"span":[685,8,37]},{"path":[4,4,2,4,8,1160,1,2,3],"span":[686,8,688,108]},{"path":[4,4,2,4,8,1160,1,3],"span":[690,6,695,7]},{"path":[4,4,2,4,8,1160,1,3,1],"span":[691,8,28]},{"path":[4,4,2,4,8,1160,1,3,3],"span":[692,8,694,122]},{"path":[4,4,2,4,8,1160,1,4],"span":[696,6,701,7]},{"path":[4,4,2,4,8,1160,1,4,1],"span":[697,8,38]},{"path":[4,4,2,4,8,1160,1,4,3],"span":[698,8,700,121]},{"path":[4,4,2,5],"span":[714,2,717,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MyDouble {\n // value must be in list [1.0, 2.0, 3.0]\n repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };\n }\n ```\n"},{"path":[4,4,2,5,4],"span":[714,2,10]},{"path":[4,4,2,5,5],"span":[714,11,17]},{"path":[4,4,2,5,1],"span":[714,18,20]},{"path":[4,4,2,5,3],"span":[714,23,24]},{"path":[4,4,2,5,8],"span":[714,25,717,4]},{"path":[4,4,2,5,8,1160,1,0],"span":[714,26,717,3]},{"path":[4,4,2,5,8,1160,1,0,1],"span":[715,4,19]},{"path":[4,4,2,5,8,1160,1,0,3],"span":[716,4,106]},{"path":[4,4,2,6],"span":[729,2,732,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MyDouble {\n // value must not be in list [1.0, 2.0, 3.0]\n repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };\n }\n ```\n"},{"path":[4,4,2,6,4],"span":[729,2,10]},{"path":[4,4,2,6,5],"span":[729,11,17]},{"path":[4,4,2,6,1],"span":[729,18,24]},{"path":[4,4,2,6,3],"span":[729,27,28]},{"path":[4,4,2,6,8],"span":[729,29,732,4]},{"path":[4,4,2,6,8,1160,1,0],"span":[729,30,732,3]},{"path":[4,4,2,6,8,1160,1,0,1],"span":[730,4,23]},{"path":[4,4,2,6,8,1160,1,0,3],"span":[731,4,99]},{"path":[4,4,2,7],"span":[736,2,739,5],"leadingComments":" `finite` requires the field value to be finite. If the field value is\n infinite or NaN, an error message is generated.\n"},{"path":[4,4,2,7,5],"span":[736,2,6]},{"path":[4,4,2,7,1],"span":[736,7,13]},{"path":[4,4,2,7,3],"span":[736,16,17]},{"path":[4,4,2,7,8],"span":[736,18,739,4]},{"path":[4,4,2,7,8,1160,1,0],"span":[736,19,739,3]},{"path":[4,4,2,7,8,1160,1,0,1],"span":[737,4,23]},{"path":[4,4,2,7,8,1160,1,0,3],"span":[738,4,76]},{"path":[4,5],"span":[744,0,926,1],"leadingComments":" Int32Rules describes the constraints applied to `int32` values. These\n rules may also be applied to the `google.protobuf.Int32Value` Well-Known-Type.\n"},{"path":[4,5,1],"span":[744,8,18]},{"path":[4,5,2,0],"span":[754,2,757,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyInt32 {\n // value must equal 42\n int32 value = 1 [(buf.validate.field).int32.const = 42];\n }\n ```\n"},{"path":[4,5,2,0,4],"span":[754,2,10]},{"path":[4,5,2,0,5],"span":[754,11,16]},{"path":[4,5,2,0,1],"span":[754,17,22]},{"path":[4,5,2,0,3],"span":[754,25,26]},{"path":[4,5,2,0,8],"span":[754,27,757,4]},{"path":[4,5,2,0,8,1160,1,0],"span":[754,28,757,3]},{"path":[4,5,2,0,8,1160,1,0,1],"span":[755,4,21]},{"path":[4,5,2,0,8,1160,1,0,3],"span":[756,4,88]},{"path":[4,5,8,0],"span":[758,2,792,3]},{"path":[4,5,8,0,1],"span":[758,8,17]},{"path":[4,5,2,1],"span":[769,4,774,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field\n < value). If the field value is equal to or greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyInt32 {\n // value must be less than 10\n int32 value = 1 [(buf.validate.field).int32.lt = 10];\n }\n ```\n"},{"path":[4,5,2,1,5],"span":[769,4,9]},{"path":[4,5,2,1,1],"span":[769,10,12]},{"path":[4,5,2,1,3],"span":[769,15,16]},{"path":[4,5,2,1,8],"span":[769,17,774,6]},{"path":[4,5,2,1,8,1160,1,0],"span":[769,18,774,5]},{"path":[4,5,2,1,8,1160,1,0,1],"span":[770,6,20]},{"path":[4,5,2,1,8,1160,1,0,3],"span":[771,6,773,64]},{"path":[4,5,2,2],"span":[786,4,791,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyInt32 {\n // value must be less than or equal to 10\n int32 value = 1 [(buf.validate.field).int32.lte = 10];\n }\n ```\n"},{"path":[4,5,2,2,5],"span":[786,4,9]},{"path":[4,5,2,2,1],"span":[786,10,13]},{"path":[4,5,2,2,3],"span":[786,16,17]},{"path":[4,5,2,2,8],"span":[786,18,791,6]},{"path":[4,5,2,2,8,1160,1,0],"span":[786,19,791,5]},{"path":[4,5,2,2,8,1160,1,0,1],"span":[787,6,21]},{"path":[4,5,2,2,8,1160,1,0,3],"span":[788,6,790,77]},{"path":[4,5,8,1],"span":[793,2,895,3]},{"path":[4,5,8,1,1],"span":[793,8,20]},{"path":[4,5,2,3],"span":[812,4,843,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyInt32 {\n // value must be greater than 5 [int32.gt]\n int32 value = 1 [(buf.validate.field).int32.gt = 5];\n\n // value must be greater than 5 and less than 10 [int32.gt_lt]\n int32 other_value = 2 [(buf.validate.field).int32 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [int32.gt_lt_exclusive]\n int32 another_value = 3 [(buf.validate.field).int32 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,5,2,3,5],"span":[812,4,9]},{"path":[4,5,2,3,1],"span":[812,10,12]},{"path":[4,5,2,3,3],"span":[812,15,16]},{"path":[4,5,2,3,8],"span":[812,17,843,5]},{"path":[4,5,2,3,8,1160,1,0],"span":[813,6,818,7]},{"path":[4,5,2,3,8,1160,1,0,1],"span":[814,8,22]},{"path":[4,5,2,3,8,1160,1,0,3],"span":[815,8,817,69]},{"path":[4,5,2,3,8,1160,1,1],"span":[819,6,824,7]},{"path":[4,5,2,3,8,1160,1,1,1],"span":[820,8,25]},{"path":[4,5,2,3,8,1160,1,1,3],"span":[821,8,823,96]},{"path":[4,5,2,3,8,1160,1,2],"span":[825,6,830,7]},{"path":[4,5,2,3,8,1160,1,2,1],"span":[826,8,35]},{"path":[4,5,2,3,8,1160,1,2,3],"span":[827,8,829,95]},{"path":[4,5,2,3,8,1160,1,3],"span":[831,6,836,7]},{"path":[4,5,2,3,8,1160,1,3,1],"span":[832,8,26]},{"path":[4,5,2,3,8,1160,1,3,3],"span":[833,8,835,109]},{"path":[4,5,2,3,8,1160,1,4],"span":[837,6,842,7]},{"path":[4,5,2,3,8,1160,1,4,1],"span":[838,8,36]},{"path":[4,5,2,3,8,1160,1,4,3],"span":[839,8,841,108]},{"path":[4,5,2,4],"span":[863,4,894,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified value\n (exclusive). If the value of `gte` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyInt32 {\n // value must be greater than or equal to 5 [int32.gte]\n int32 value = 1 [(buf.validate.field).int32.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [int32.gte_lt]\n int32 other_value = 2 [(buf.validate.field).int32 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [int32.gte_lt_exclusive]\n int32 another_value = 3 [(buf.validate.field).int32 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,5,2,4,5],"span":[863,4,9]},{"path":[4,5,2,4,1],"span":[863,10,13]},{"path":[4,5,2,4,3],"span":[863,16,17]},{"path":[4,5,2,4,8],"span":[863,18,894,5]},{"path":[4,5,2,4,8,1160,1,0],"span":[864,6,869,7]},{"path":[4,5,2,4,8,1160,1,0,1],"span":[865,8,23]},{"path":[4,5,2,4,8,1160,1,0,3],"span":[866,8,868,82]},{"path":[4,5,2,4,8,1160,1,1],"span":[870,6,875,7]},{"path":[4,5,2,4,8,1160,1,1,1],"span":[871,8,26]},{"path":[4,5,2,4,8,1160,1,1,3],"span":[872,8,874,109]},{"path":[4,5,2,4,8,1160,1,2],"span":[876,6,881,7]},{"path":[4,5,2,4,8,1160,1,2,1],"span":[877,8,36]},{"path":[4,5,2,4,8,1160,1,2,3],"span":[878,8,880,108]},{"path":[4,5,2,4,8,1160,1,3],"span":[882,6,887,7]},{"path":[4,5,2,4,8,1160,1,3,1],"span":[883,8,27]},{"path":[4,5,2,4,8,1160,1,3,3],"span":[884,8,886,122]},{"path":[4,5,2,4,8,1160,1,4],"span":[888,6,893,7]},{"path":[4,5,2,4,8,1160,1,4,1],"span":[889,8,37]},{"path":[4,5,2,4,8,1160,1,4,3],"span":[890,8,892,121]},{"path":[4,5,2,5],"span":[907,2,910,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MyInt32 {\n // value must be in list [1, 2, 3]\n repeated int32 value = 1 (buf.validate.field).int32 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,5,2,5,4],"span":[907,2,10]},{"path":[4,5,2,5,5],"span":[907,11,16]},{"path":[4,5,2,5,1],"span":[907,17,19]},{"path":[4,5,2,5,3],"span":[907,22,23]},{"path":[4,5,2,5,8],"span":[907,24,910,4]},{"path":[4,5,2,5,8,1160,1,0],"span":[907,25,910,3]},{"path":[4,5,2,5,8,1160,1,0,1],"span":[908,4,18]},{"path":[4,5,2,5,8,1160,1,0,3],"span":[909,4,106]},{"path":[4,5,2,6],"span":[922,2,925,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error message\n is generated.\n\n ```proto\n message MyInt32 {\n // value must not be in list [1, 2, 3]\n repeated int32 value = 1 (buf.validate.field).int32 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,5,2,6,4],"span":[922,2,10]},{"path":[4,5,2,6,5],"span":[922,11,16]},{"path":[4,5,2,6,1],"span":[922,17,23]},{"path":[4,5,2,6,3],"span":[922,26,27]},{"path":[4,5,2,6,8],"span":[922,28,925,4]},{"path":[4,5,2,6,8,1160,1,0],"span":[922,29,925,3]},{"path":[4,5,2,6,8,1160,1,0,1],"span":[923,4,22]},{"path":[4,5,2,6,8,1160,1,0,3],"span":[924,4,99]},{"path":[4,6],"span":[930,0,1112,1],"leadingComments":" Int64Rules describes the constraints applied to `int64` values. These\n rules may also be applied to the `google.protobuf.Int64Value` Well-Known-Type.\n"},{"path":[4,6,1],"span":[930,8,18]},{"path":[4,6,2,0],"span":[940,2,943,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyInt64 {\n // value must equal 42\n int64 value = 1 [(buf.validate.field).int64.const = 42];\n }\n ```\n"},{"path":[4,6,2,0,4],"span":[940,2,10]},{"path":[4,6,2,0,5],"span":[940,11,16]},{"path":[4,6,2,0,1],"span":[940,17,22]},{"path":[4,6,2,0,3],"span":[940,25,26]},{"path":[4,6,2,0,8],"span":[940,27,943,4]},{"path":[4,6,2,0,8,1160,1,0],"span":[940,28,943,3]},{"path":[4,6,2,0,8,1160,1,0,1],"span":[941,4,21]},{"path":[4,6,2,0,8,1160,1,0,3],"span":[942,4,88]},{"path":[4,6,8,0],"span":[944,2,978,3]},{"path":[4,6,8,0,1],"span":[944,8,17]},{"path":[4,6,2,1],"span":[955,4,960,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MyInt64 {\n // value must be less than 10\n int64 value = 1 [(buf.validate.field).int64.lt = 10];\n }\n ```\n"},{"path":[4,6,2,1,5],"span":[955,4,9]},{"path":[4,6,2,1,1],"span":[955,10,12]},{"path":[4,6,2,1,3],"span":[955,15,16]},{"path":[4,6,2,1,8],"span":[955,17,960,6]},{"path":[4,6,2,1,8,1160,1,0],"span":[955,18,960,5]},{"path":[4,6,2,1,8,1160,1,0,1],"span":[956,6,20]},{"path":[4,6,2,1,8,1160,1,0,3],"span":[957,6,959,64]},{"path":[4,6,2,2],"span":[972,4,977,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyInt64 {\n // value must be less than or equal to 10\n int64 value = 1 [(buf.validate.field).int64.lte = 10];\n }\n ```\n"},{"path":[4,6,2,2,5],"span":[972,4,9]},{"path":[4,6,2,2,1],"span":[972,10,13]},{"path":[4,6,2,2,3],"span":[972,16,17]},{"path":[4,6,2,2,8],"span":[972,18,977,6]},{"path":[4,6,2,2,8,1160,1,0],"span":[972,19,977,5]},{"path":[4,6,2,2,8,1160,1,0,1],"span":[973,6,21]},{"path":[4,6,2,2,8,1160,1,0,3],"span":[974,6,976,77]},{"path":[4,6,8,1],"span":[979,2,1081,3]},{"path":[4,6,8,1,1],"span":[979,8,20]},{"path":[4,6,2,3],"span":[998,4,1029,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyInt64 {\n // value must be greater than 5 [int64.gt]\n int64 value = 1 [(buf.validate.field).int64.gt = 5];\n\n // value must be greater than 5 and less than 10 [int64.gt_lt]\n int64 other_value = 2 [(buf.validate.field).int64 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [int64.gt_lt_exclusive]\n int64 another_value = 3 [(buf.validate.field).int64 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,6,2,3,5],"span":[998,4,9]},{"path":[4,6,2,3,1],"span":[998,10,12]},{"path":[4,6,2,3,3],"span":[998,15,16]},{"path":[4,6,2,3,8],"span":[998,17,1029,5]},{"path":[4,6,2,3,8,1160,1,0],"span":[999,6,1004,7]},{"path":[4,6,2,3,8,1160,1,0,1],"span":[1000,8,22]},{"path":[4,6,2,3,8,1160,1,0,3],"span":[1001,8,1003,69]},{"path":[4,6,2,3,8,1160,1,1],"span":[1005,6,1010,7]},{"path":[4,6,2,3,8,1160,1,1,1],"span":[1006,8,25]},{"path":[4,6,2,3,8,1160,1,1,3],"span":[1007,8,1009,96]},{"path":[4,6,2,3,8,1160,1,2],"span":[1011,6,1016,7]},{"path":[4,6,2,3,8,1160,1,2,1],"span":[1012,8,35]},{"path":[4,6,2,3,8,1160,1,2,3],"span":[1013,8,1015,95]},{"path":[4,6,2,3,8,1160,1,3],"span":[1017,6,1022,7]},{"path":[4,6,2,3,8,1160,1,3,1],"span":[1018,8,26]},{"path":[4,6,2,3,8,1160,1,3,3],"span":[1019,8,1021,109]},{"path":[4,6,2,3,8,1160,1,4],"span":[1023,6,1028,7]},{"path":[4,6,2,3,8,1160,1,4,1],"span":[1024,8,36]},{"path":[4,6,2,3,8,1160,1,4,3],"span":[1025,8,1027,108]},{"path":[4,6,2,4],"span":[1049,4,1080,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyInt64 {\n // value must be greater than or equal to 5 [int64.gte]\n int64 value = 1 [(buf.validate.field).int64.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [int64.gte_lt]\n int64 other_value = 2 [(buf.validate.field).int64 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [int64.gte_lt_exclusive]\n int64 another_value = 3 [(buf.validate.field).int64 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,6,2,4,5],"span":[1049,4,9]},{"path":[4,6,2,4,1],"span":[1049,10,13]},{"path":[4,6,2,4,3],"span":[1049,16,17]},{"path":[4,6,2,4,8],"span":[1049,18,1080,5]},{"path":[4,6,2,4,8,1160,1,0],"span":[1050,6,1055,7]},{"path":[4,6,2,4,8,1160,1,0,1],"span":[1051,8,23]},{"path":[4,6,2,4,8,1160,1,0,3],"span":[1052,8,1054,82]},{"path":[4,6,2,4,8,1160,1,1],"span":[1056,6,1061,7]},{"path":[4,6,2,4,8,1160,1,1,1],"span":[1057,8,26]},{"path":[4,6,2,4,8,1160,1,1,3],"span":[1058,8,1060,109]},{"path":[4,6,2,4,8,1160,1,2],"span":[1062,6,1067,7]},{"path":[4,6,2,4,8,1160,1,2,1],"span":[1063,8,36]},{"path":[4,6,2,4,8,1160,1,2,3],"span":[1064,8,1066,108]},{"path":[4,6,2,4,8,1160,1,3],"span":[1068,6,1073,7]},{"path":[4,6,2,4,8,1160,1,3,1],"span":[1069,8,27]},{"path":[4,6,2,4,8,1160,1,3,3],"span":[1070,8,1072,122]},{"path":[4,6,2,4,8,1160,1,4],"span":[1074,6,1079,7]},{"path":[4,6,2,4,8,1160,1,4,1],"span":[1075,8,37]},{"path":[4,6,2,4,8,1160,1,4,3],"span":[1076,8,1078,121]},{"path":[4,6,2,5],"span":[1093,2,1096,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MyInt64 {\n // value must be in list [1, 2, 3]\n repeated int64 value = 1 (buf.validate.field).int64 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,6,2,5,4],"span":[1093,2,10]},{"path":[4,6,2,5,5],"span":[1093,11,16]},{"path":[4,6,2,5,1],"span":[1093,17,19]},{"path":[4,6,2,5,3],"span":[1093,22,23]},{"path":[4,6,2,5,8],"span":[1093,24,1096,4]},{"path":[4,6,2,5,8,1160,1,0],"span":[1093,25,1096,3]},{"path":[4,6,2,5,8,1160,1,0,1],"span":[1094,4,18]},{"path":[4,6,2,5,8,1160,1,0,3],"span":[1095,4,106]},{"path":[4,6,2,6],"span":[1108,2,1111,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MyInt64 {\n // value must not be in list [1, 2, 3]\n repeated int64 value = 1 (buf.validate.field).int64 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,6,2,6,4],"span":[1108,2,10]},{"path":[4,6,2,6,5],"span":[1108,11,16]},{"path":[4,6,2,6,1],"span":[1108,17,23]},{"path":[4,6,2,6,3],"span":[1108,26,27]},{"path":[4,6,2,6,8],"span":[1108,28,1111,4]},{"path":[4,6,2,6,8,1160,1,0],"span":[1108,29,1111,3]},{"path":[4,6,2,6,8,1160,1,0,1],"span":[1109,4,22]},{"path":[4,6,2,6,8,1160,1,0,3],"span":[1110,4,99]},{"path":[4,7],"span":[1116,0,1298,1],"leadingComments":" UInt32Rules describes the constraints applied to `uint32` values. These\n rules may also be applied to the `google.protobuf.UInt32Value` Well-Known-Type.\n"},{"path":[4,7,1],"span":[1116,8,19]},{"path":[4,7,2,0],"span":[1126,2,1129,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyUInt32 {\n // value must equal 42\n uint32 value = 1 [(buf.validate.field).uint32.const = 42];\n }\n ```\n"},{"path":[4,7,2,0,4],"span":[1126,2,10]},{"path":[4,7,2,0,5],"span":[1126,11,17]},{"path":[4,7,2,0,1],"span":[1126,18,23]},{"path":[4,7,2,0,3],"span":[1126,26,27]},{"path":[4,7,2,0,8],"span":[1126,28,1129,4]},{"path":[4,7,2,0,8,1160,1,0],"span":[1126,29,1129,3]},{"path":[4,7,2,0,8,1160,1,0,1],"span":[1127,4,22]},{"path":[4,7,2,0,8,1160,1,0,3],"span":[1128,4,88]},{"path":[4,7,8,0],"span":[1130,2,1164,3]},{"path":[4,7,8,0,1],"span":[1130,8,17]},{"path":[4,7,2,1],"span":[1141,4,1146,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MyUInt32 {\n // value must be less than 10\n uint32 value = 1 [(buf.validate.field).uint32.lt = 10];\n }\n ```\n"},{"path":[4,7,2,1,5],"span":[1141,4,10]},{"path":[4,7,2,1,1],"span":[1141,11,13]},{"path":[4,7,2,1,3],"span":[1141,16,17]},{"path":[4,7,2,1,8],"span":[1141,18,1146,6]},{"path":[4,7,2,1,8,1160,1,0],"span":[1141,19,1146,5]},{"path":[4,7,2,1,8,1160,1,0,1],"span":[1142,6,21]},{"path":[4,7,2,1,8,1160,1,0,3],"span":[1143,6,1145,64]},{"path":[4,7,2,2],"span":[1158,4,1163,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyUInt32 {\n // value must be less than or equal to 10\n uint32 value = 1 [(buf.validate.field).uint32.lte = 10];\n }\n ```\n"},{"path":[4,7,2,2,5],"span":[1158,4,10]},{"path":[4,7,2,2,1],"span":[1158,11,14]},{"path":[4,7,2,2,3],"span":[1158,17,18]},{"path":[4,7,2,2,8],"span":[1158,19,1163,6]},{"path":[4,7,2,2,8,1160,1,0],"span":[1158,20,1163,5]},{"path":[4,7,2,2,8,1160,1,0,1],"span":[1159,6,22]},{"path":[4,7,2,2,8,1160,1,0,3],"span":[1160,6,1162,77]},{"path":[4,7,8,1],"span":[1165,2,1267,3]},{"path":[4,7,8,1,1],"span":[1165,8,20]},{"path":[4,7,2,3],"span":[1184,4,1215,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyUInt32 {\n // value must be greater than 5 [uint32.gt]\n uint32 value = 1 [(buf.validate.field).uint32.gt = 5];\n\n // value must be greater than 5 and less than 10 [uint32.gt_lt]\n uint32 other_value = 2 [(buf.validate.field).uint32 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [uint32.gt_lt_exclusive]\n uint32 another_value = 3 [(buf.validate.field).uint32 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,7,2,3,5],"span":[1184,4,10]},{"path":[4,7,2,3,1],"span":[1184,11,13]},{"path":[4,7,2,3,3],"span":[1184,16,17]},{"path":[4,7,2,3,8],"span":[1184,18,1215,5]},{"path":[4,7,2,3,8,1160,1,0],"span":[1185,6,1190,7]},{"path":[4,7,2,3,8,1160,1,0,1],"span":[1186,8,23]},{"path":[4,7,2,3,8,1160,1,0,3],"span":[1187,8,1189,69]},{"path":[4,7,2,3,8,1160,1,1],"span":[1191,6,1196,7]},{"path":[4,7,2,3,8,1160,1,1,1],"span":[1192,8,26]},{"path":[4,7,2,3,8,1160,1,1,3],"span":[1193,8,1195,96]},{"path":[4,7,2,3,8,1160,1,2],"span":[1197,6,1202,7]},{"path":[4,7,2,3,8,1160,1,2,1],"span":[1198,8,36]},{"path":[4,7,2,3,8,1160,1,2,3],"span":[1199,8,1201,95]},{"path":[4,7,2,3,8,1160,1,3],"span":[1203,6,1208,7]},{"path":[4,7,2,3,8,1160,1,3,1],"span":[1204,8,27]},{"path":[4,7,2,3,8,1160,1,3,3],"span":[1205,8,1207,109]},{"path":[4,7,2,3,8,1160,1,4],"span":[1209,6,1214,7]},{"path":[4,7,2,3,8,1160,1,4,1],"span":[1210,8,37]},{"path":[4,7,2,3,8,1160,1,4,3],"span":[1211,8,1213,108]},{"path":[4,7,2,4],"span":[1235,4,1266,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyUInt32 {\n // value must be greater than or equal to 5 [uint32.gte]\n uint32 value = 1 [(buf.validate.field).uint32.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [uint32.gte_lt]\n uint32 other_value = 2 [(buf.validate.field).uint32 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [uint32.gte_lt_exclusive]\n uint32 another_value = 3 [(buf.validate.field).uint32 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,7,2,4,5],"span":[1235,4,10]},{"path":[4,7,2,4,1],"span":[1235,11,14]},{"path":[4,7,2,4,3],"span":[1235,17,18]},{"path":[4,7,2,4,8],"span":[1235,19,1266,5]},{"path":[4,7,2,4,8,1160,1,0],"span":[1236,6,1241,7]},{"path":[4,7,2,4,8,1160,1,0,1],"span":[1237,8,24]},{"path":[4,7,2,4,8,1160,1,0,3],"span":[1238,8,1240,82]},{"path":[4,7,2,4,8,1160,1,1],"span":[1242,6,1247,7]},{"path":[4,7,2,4,8,1160,1,1,1],"span":[1243,8,27]},{"path":[4,7,2,4,8,1160,1,1,3],"span":[1244,8,1246,109]},{"path":[4,7,2,4,8,1160,1,2],"span":[1248,6,1253,7]},{"path":[4,7,2,4,8,1160,1,2,1],"span":[1249,8,37]},{"path":[4,7,2,4,8,1160,1,2,3],"span":[1250,8,1252,108]},{"path":[4,7,2,4,8,1160,1,3],"span":[1254,6,1259,7]},{"path":[4,7,2,4,8,1160,1,3,1],"span":[1255,8,28]},{"path":[4,7,2,4,8,1160,1,3,3],"span":[1256,8,1258,122]},{"path":[4,7,2,4,8,1160,1,4],"span":[1260,6,1265,7]},{"path":[4,7,2,4,8,1160,1,4,1],"span":[1261,8,38]},{"path":[4,7,2,4,8,1160,1,4,3],"span":[1262,8,1264,121]},{"path":[4,7,2,5],"span":[1279,2,1282,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MyUInt32 {\n // value must be in list [1, 2, 3]\n repeated uint32 value = 1 (buf.validate.field).uint32 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,7,2,5,4],"span":[1279,2,10]},{"path":[4,7,2,5,5],"span":[1279,11,17]},{"path":[4,7,2,5,1],"span":[1279,18,20]},{"path":[4,7,2,5,3],"span":[1279,23,24]},{"path":[4,7,2,5,8],"span":[1279,25,1282,4]},{"path":[4,7,2,5,8,1160,1,0],"span":[1279,26,1282,3]},{"path":[4,7,2,5,8,1160,1,0,1],"span":[1280,4,19]},{"path":[4,7,2,5,8,1160,1,0,3],"span":[1281,4,106]},{"path":[4,7,2,6],"span":[1294,2,1297,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MyUInt32 {\n // value must not be in list [1, 2, 3]\n repeated uint32 value = 1 (buf.validate.field).uint32 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,7,2,6,4],"span":[1294,2,10]},{"path":[4,7,2,6,5],"span":[1294,11,17]},{"path":[4,7,2,6,1],"span":[1294,18,24]},{"path":[4,7,2,6,3],"span":[1294,27,28]},{"path":[4,7,2,6,8],"span":[1294,29,1297,4]},{"path":[4,7,2,6,8,1160,1,0],"span":[1294,30,1297,3]},{"path":[4,7,2,6,8,1160,1,0,1],"span":[1295,4,23]},{"path":[4,7,2,6,8,1160,1,0,3],"span":[1296,4,99]},{"path":[4,8],"span":[1302,0,1483,1],"leadingComments":" UInt64Rules describes the constraints applied to `uint64` values. These\n rules may also be applied to the `google.protobuf.UInt64Value` Well-Known-Type.\n"},{"path":[4,8,1],"span":[1302,8,19]},{"path":[4,8,2,0],"span":[1312,2,1315,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyUInt64 {\n // value must equal 42\n uint64 value = 1 [(buf.validate.field).uint64.const = 42];\n }\n ```\n"},{"path":[4,8,2,0,4],"span":[1312,2,10]},{"path":[4,8,2,0,5],"span":[1312,11,17]},{"path":[4,8,2,0,1],"span":[1312,18,23]},{"path":[4,8,2,0,3],"span":[1312,26,27]},{"path":[4,8,2,0,8],"span":[1312,28,1315,4]},{"path":[4,8,2,0,8,1160,1,0],"span":[1312,29,1315,3]},{"path":[4,8,2,0,8,1160,1,0,1],"span":[1313,4,22]},{"path":[4,8,2,0,8,1160,1,0,3],"span":[1314,4,88]},{"path":[4,8,8,0],"span":[1316,2,1350,3]},{"path":[4,8,8,0,1],"span":[1316,8,17]},{"path":[4,8,2,1],"span":[1327,4,1332,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MyUInt64 {\n // value must be less than 10\n uint64 value = 1 [(buf.validate.field).uint64.lt = 10];\n }\n ```\n"},{"path":[4,8,2,1,5],"span":[1327,4,10]},{"path":[4,8,2,1,1],"span":[1327,11,13]},{"path":[4,8,2,1,3],"span":[1327,16,17]},{"path":[4,8,2,1,8],"span":[1327,18,1332,6]},{"path":[4,8,2,1,8,1160,1,0],"span":[1327,19,1332,5]},{"path":[4,8,2,1,8,1160,1,0,1],"span":[1328,6,21]},{"path":[4,8,2,1,8,1160,1,0,3],"span":[1329,6,1331,64]},{"path":[4,8,2,2],"span":[1344,4,1349,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyUInt64 {\n // value must be less than or equal to 10\n uint64 value = 1 [(buf.validate.field).uint64.lte = 10];\n }\n ```\n"},{"path":[4,8,2,2,5],"span":[1344,4,10]},{"path":[4,8,2,2,1],"span":[1344,11,14]},{"path":[4,8,2,2,3],"span":[1344,17,18]},{"path":[4,8,2,2,8],"span":[1344,19,1349,6]},{"path":[4,8,2,2,8,1160,1,0],"span":[1344,20,1349,5]},{"path":[4,8,2,2,8,1160,1,0,1],"span":[1345,6,22]},{"path":[4,8,2,2,8,1160,1,0,3],"span":[1346,6,1348,77]},{"path":[4,8,8,1],"span":[1351,2,1453,3]},{"path":[4,8,8,1,1],"span":[1351,8,20]},{"path":[4,8,2,3],"span":[1370,4,1401,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyUInt64 {\n // value must be greater than 5 [uint64.gt]\n uint64 value = 1 [(buf.validate.field).uint64.gt = 5];\n\n // value must be greater than 5 and less than 10 [uint64.gt_lt]\n uint64 other_value = 2 [(buf.validate.field).uint64 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [uint64.gt_lt_exclusive]\n uint64 another_value = 3 [(buf.validate.field).uint64 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,8,2,3,5],"span":[1370,4,10]},{"path":[4,8,2,3,1],"span":[1370,11,13]},{"path":[4,8,2,3,3],"span":[1370,16,17]},{"path":[4,8,2,3,8],"span":[1370,18,1401,5]},{"path":[4,8,2,3,8,1160,1,0],"span":[1371,6,1376,7]},{"path":[4,8,2,3,8,1160,1,0,1],"span":[1372,8,23]},{"path":[4,8,2,3,8,1160,1,0,3],"span":[1373,8,1375,69]},{"path":[4,8,2,3,8,1160,1,1],"span":[1377,6,1382,7]},{"path":[4,8,2,3,8,1160,1,1,1],"span":[1378,8,26]},{"path":[4,8,2,3,8,1160,1,1,3],"span":[1379,8,1381,96]},{"path":[4,8,2,3,8,1160,1,2],"span":[1383,6,1388,7]},{"path":[4,8,2,3,8,1160,1,2,1],"span":[1384,8,36]},{"path":[4,8,2,3,8,1160,1,2,3],"span":[1385,8,1387,95]},{"path":[4,8,2,3,8,1160,1,3],"span":[1389,6,1394,7]},{"path":[4,8,2,3,8,1160,1,3,1],"span":[1390,8,27]},{"path":[4,8,2,3,8,1160,1,3,3],"span":[1391,8,1393,109]},{"path":[4,8,2,3,8,1160,1,4],"span":[1395,6,1400,7]},{"path":[4,8,2,3,8,1160,1,4,1],"span":[1396,8,37]},{"path":[4,8,2,3,8,1160,1,4,3],"span":[1397,8,1399,108]},{"path":[4,8,2,4],"span":[1421,4,1452,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyUInt64 {\n // value must be greater than or equal to 5 [uint64.gte]\n uint64 value = 1 [(buf.validate.field).uint64.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [uint64.gte_lt]\n uint64 other_value = 2 [(buf.validate.field).uint64 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [uint64.gte_lt_exclusive]\n uint64 another_value = 3 [(buf.validate.field).uint64 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,8,2,4,5],"span":[1421,4,10]},{"path":[4,8,2,4,1],"span":[1421,11,14]},{"path":[4,8,2,4,3],"span":[1421,17,18]},{"path":[4,8,2,4,8],"span":[1421,19,1452,5]},{"path":[4,8,2,4,8,1160,1,0],"span":[1422,6,1427,7]},{"path":[4,8,2,4,8,1160,1,0,1],"span":[1423,8,24]},{"path":[4,8,2,4,8,1160,1,0,3],"span":[1424,8,1426,82]},{"path":[4,8,2,4,8,1160,1,1],"span":[1428,6,1433,7]},{"path":[4,8,2,4,8,1160,1,1,1],"span":[1429,8,27]},{"path":[4,8,2,4,8,1160,1,1,3],"span":[1430,8,1432,109]},{"path":[4,8,2,4,8,1160,1,2],"span":[1434,6,1439,7]},{"path":[4,8,2,4,8,1160,1,2,1],"span":[1435,8,37]},{"path":[4,8,2,4,8,1160,1,2,3],"span":[1436,8,1438,108]},{"path":[4,8,2,4,8,1160,1,3],"span":[1440,6,1445,7]},{"path":[4,8,2,4,8,1160,1,3,1],"span":[1441,8,28]},{"path":[4,8,2,4,8,1160,1,3,3],"span":[1442,8,1444,122]},{"path":[4,8,2,4,8,1160,1,4],"span":[1446,6,1451,7]},{"path":[4,8,2,4,8,1160,1,4,1],"span":[1447,8,38]},{"path":[4,8,2,4,8,1160,1,4,3],"span":[1448,8,1450,121]},{"path":[4,8,2,5],"span":[1464,2,1467,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MyUInt64 {\n // value must be in list [1, 2, 3]\n repeated uint64 value = 1 (buf.validate.field).uint64 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,8,2,5,4],"span":[1464,2,10]},{"path":[4,8,2,5,5],"span":[1464,11,17]},{"path":[4,8,2,5,1],"span":[1464,18,20]},{"path":[4,8,2,5,3],"span":[1464,23,24]},{"path":[4,8,2,5,8],"span":[1464,25,1467,4]},{"path":[4,8,2,5,8,1160,1,0],"span":[1464,26,1467,3]},{"path":[4,8,2,5,8,1160,1,0,1],"span":[1465,4,19]},{"path":[4,8,2,5,8,1160,1,0,3],"span":[1466,4,106]},{"path":[4,8,2,6],"span":[1479,2,1482,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MyUInt64 {\n // value must not be in list [1, 2, 3]\n repeated uint64 value = 1 (buf.validate.field).uint64 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,8,2,6,4],"span":[1479,2,10]},{"path":[4,8,2,6,5],"span":[1479,11,17]},{"path":[4,8,2,6,1],"span":[1479,18,24]},{"path":[4,8,2,6,3],"span":[1479,27,28]},{"path":[4,8,2,6,8],"span":[1479,29,1482,4]},{"path":[4,8,2,6,8,1160,1,0],"span":[1479,30,1482,3]},{"path":[4,8,2,6,8,1160,1,0,1],"span":[1480,4,23]},{"path":[4,8,2,6,8,1160,1,0,3],"span":[1481,4,99]},{"path":[4,9],"span":[1486,0,1668,1],"leadingComments":" SInt32Rules describes the constraints applied to `sint32` values.\n"},{"path":[4,9,1],"span":[1486,8,19]},{"path":[4,9,2,0],"span":[1496,2,1499,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MySInt32 {\n // value must equal 42\n sint32 value = 1 [(buf.validate.field).sint32.const = 42];\n }\n ```\n"},{"path":[4,9,2,0,4],"span":[1496,2,10]},{"path":[4,9,2,0,5],"span":[1496,11,17]},{"path":[4,9,2,0,1],"span":[1496,18,23]},{"path":[4,9,2,0,3],"span":[1496,26,27]},{"path":[4,9,2,0,8],"span":[1496,28,1499,4]},{"path":[4,9,2,0,8,1160,1,0],"span":[1496,29,1499,3]},{"path":[4,9,2,0,8,1160,1,0,1],"span":[1497,4,22]},{"path":[4,9,2,0,8,1160,1,0,3],"span":[1498,4,88]},{"path":[4,9,8,0],"span":[1500,2,1534,3]},{"path":[4,9,8,0,1],"span":[1500,8,17]},{"path":[4,9,2,1],"span":[1511,4,1516,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field\n < value). If the field value is equal to or greater than the specified\n value, an error message is generated.\n\n ```proto\n message MySInt32 {\n // value must be less than 10\n sint32 value = 1 [(buf.validate.field).sint32.lt = 10];\n }\n ```\n"},{"path":[4,9,2,1,5],"span":[1511,4,10]},{"path":[4,9,2,1,1],"span":[1511,11,13]},{"path":[4,9,2,1,3],"span":[1511,16,17]},{"path":[4,9,2,1,8],"span":[1511,18,1516,6]},{"path":[4,9,2,1,8,1160,1,0],"span":[1511,19,1516,5]},{"path":[4,9,2,1,8,1160,1,0,1],"span":[1512,6,21]},{"path":[4,9,2,1,8,1160,1,0,3],"span":[1513,6,1515,64]},{"path":[4,9,2,2],"span":[1528,4,1533,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MySInt32 {\n // value must be less than or equal to 10\n sint32 value = 1 [(buf.validate.field).sint32.lte = 10];\n }\n ```\n"},{"path":[4,9,2,2,5],"span":[1528,4,10]},{"path":[4,9,2,2,1],"span":[1528,11,14]},{"path":[4,9,2,2,3],"span":[1528,17,18]},{"path":[4,9,2,2,8],"span":[1528,19,1533,6]},{"path":[4,9,2,2,8,1160,1,0],"span":[1528,20,1533,5]},{"path":[4,9,2,2,8,1160,1,0,1],"span":[1529,6,22]},{"path":[4,9,2,2,8,1160,1,0,3],"span":[1530,6,1532,77]},{"path":[4,9,8,1],"span":[1535,2,1637,3]},{"path":[4,9,8,1,1],"span":[1535,8,20]},{"path":[4,9,2,3],"span":[1554,4,1585,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySInt32 {\n // value must be greater than 5 [sint32.gt]\n sint32 value = 1 [(buf.validate.field).sint32.gt = 5];\n\n // value must be greater than 5 and less than 10 [sint32.gt_lt]\n sint32 other_value = 2 [(buf.validate.field).sint32 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [sint32.gt_lt_exclusive]\n sint32 another_value = 3 [(buf.validate.field).sint32 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,9,2,3,5],"span":[1554,4,10]},{"path":[4,9,2,3,1],"span":[1554,11,13]},{"path":[4,9,2,3,3],"span":[1554,16,17]},{"path":[4,9,2,3,8],"span":[1554,18,1585,5]},{"path":[4,9,2,3,8,1160,1,0],"span":[1555,6,1560,7]},{"path":[4,9,2,3,8,1160,1,0,1],"span":[1556,8,23]},{"path":[4,9,2,3,8,1160,1,0,3],"span":[1557,8,1559,69]},{"path":[4,9,2,3,8,1160,1,1],"span":[1561,6,1566,7]},{"path":[4,9,2,3,8,1160,1,1,1],"span":[1562,8,26]},{"path":[4,9,2,3,8,1160,1,1,3],"span":[1563,8,1565,96]},{"path":[4,9,2,3,8,1160,1,2],"span":[1567,6,1572,7]},{"path":[4,9,2,3,8,1160,1,2,1],"span":[1568,8,36]},{"path":[4,9,2,3,8,1160,1,2,3],"span":[1569,8,1571,95]},{"path":[4,9,2,3,8,1160,1,3],"span":[1573,6,1578,7]},{"path":[4,9,2,3,8,1160,1,3,1],"span":[1574,8,27]},{"path":[4,9,2,3,8,1160,1,3,3],"span":[1575,8,1577,109]},{"path":[4,9,2,3,8,1160,1,4],"span":[1579,6,1584,7]},{"path":[4,9,2,3,8,1160,1,4,1],"span":[1580,8,37]},{"path":[4,9,2,3,8,1160,1,4,3],"span":[1581,8,1583,108]},{"path":[4,9,2,4],"span":[1605,4,1636,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySInt32 {\n // value must be greater than or equal to 5 [sint32.gte]\n sint32 value = 1 [(buf.validate.field).sint32.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [sint32.gte_lt]\n sint32 other_value = 2 [(buf.validate.field).sint32 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [sint32.gte_lt_exclusive]\n sint32 another_value = 3 [(buf.validate.field).sint32 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,9,2,4,5],"span":[1605,4,10]},{"path":[4,9,2,4,1],"span":[1605,11,14]},{"path":[4,9,2,4,3],"span":[1605,17,18]},{"path":[4,9,2,4,8],"span":[1605,19,1636,5]},{"path":[4,9,2,4,8,1160,1,0],"span":[1606,6,1611,7]},{"path":[4,9,2,4,8,1160,1,0,1],"span":[1607,8,24]},{"path":[4,9,2,4,8,1160,1,0,3],"span":[1608,8,1610,82]},{"path":[4,9,2,4,8,1160,1,1],"span":[1612,6,1617,7]},{"path":[4,9,2,4,8,1160,1,1,1],"span":[1613,8,27]},{"path":[4,9,2,4,8,1160,1,1,3],"span":[1614,8,1616,109]},{"path":[4,9,2,4,8,1160,1,2],"span":[1618,6,1623,7]},{"path":[4,9,2,4,8,1160,1,2,1],"span":[1619,8,37]},{"path":[4,9,2,4,8,1160,1,2,3],"span":[1620,8,1622,108]},{"path":[4,9,2,4,8,1160,1,3],"span":[1624,6,1629,7]},{"path":[4,9,2,4,8,1160,1,3,1],"span":[1625,8,28]},{"path":[4,9,2,4,8,1160,1,3,3],"span":[1626,8,1628,122]},{"path":[4,9,2,4,8,1160,1,4],"span":[1630,6,1635,7]},{"path":[4,9,2,4,8,1160,1,4,1],"span":[1631,8,38]},{"path":[4,9,2,4,8,1160,1,4,3],"span":[1632,8,1634,121]},{"path":[4,9,2,5],"span":[1649,2,1652,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MySInt32 {\n // value must be in list [1, 2, 3]\n repeated sint32 value = 1 (buf.validate.field).sint32 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,9,2,5,4],"span":[1649,2,10]},{"path":[4,9,2,5,5],"span":[1649,11,17]},{"path":[4,9,2,5,1],"span":[1649,18,20]},{"path":[4,9,2,5,3],"span":[1649,23,24]},{"path":[4,9,2,5,8],"span":[1649,25,1652,4]},{"path":[4,9,2,5,8,1160,1,0],"span":[1649,26,1652,3]},{"path":[4,9,2,5,8,1160,1,0,1],"span":[1650,4,19]},{"path":[4,9,2,5,8,1160,1,0,3],"span":[1651,4,106]},{"path":[4,9,2,6],"span":[1664,2,1667,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MySInt32 {\n // value must not be in list [1, 2, 3]\n repeated sint32 value = 1 (buf.validate.field).sint32 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,9,2,6,4],"span":[1664,2,10]},{"path":[4,9,2,6,5],"span":[1664,11,17]},{"path":[4,9,2,6,1],"span":[1664,18,24]},{"path":[4,9,2,6,3],"span":[1664,27,28]},{"path":[4,9,2,6,8],"span":[1664,29,1667,4]},{"path":[4,9,2,6,8,1160,1,0],"span":[1664,30,1667,3]},{"path":[4,9,2,6,8,1160,1,0,1],"span":[1665,4,23]},{"path":[4,9,2,6,8,1160,1,0,3],"span":[1666,4,99]},{"path":[4,10],"span":[1671,0,1853,1],"leadingComments":" SInt64Rules describes the constraints applied to `sint64` values.\n"},{"path":[4,10,1],"span":[1671,8,19]},{"path":[4,10,2,0],"span":[1681,2,1684,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MySInt64 {\n // value must equal 42\n sint64 value = 1 [(buf.validate.field).sint64.const = 42];\n }\n ```\n"},{"path":[4,10,2,0,4],"span":[1681,2,10]},{"path":[4,10,2,0,5],"span":[1681,11,17]},{"path":[4,10,2,0,1],"span":[1681,18,23]},{"path":[4,10,2,0,3],"span":[1681,26,27]},{"path":[4,10,2,0,8],"span":[1681,28,1684,4]},{"path":[4,10,2,0,8,1160,1,0],"span":[1681,29,1684,3]},{"path":[4,10,2,0,8,1160,1,0,1],"span":[1682,4,22]},{"path":[4,10,2,0,8,1160,1,0,3],"span":[1683,4,88]},{"path":[4,10,8,0],"span":[1685,2,1719,3]},{"path":[4,10,8,0,1],"span":[1685,8,17]},{"path":[4,10,2,1],"span":[1696,4,1701,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field\n < value). If the field value is equal to or greater than the specified\n value, an error message is generated.\n\n ```proto\n message MySInt64 {\n // value must be less than 10\n sint64 value = 1 [(buf.validate.field).sint64.lt = 10];\n }\n ```\n"},{"path":[4,10,2,1,5],"span":[1696,4,10]},{"path":[4,10,2,1,1],"span":[1696,11,13]},{"path":[4,10,2,1,3],"span":[1696,16,17]},{"path":[4,10,2,1,8],"span":[1696,18,1701,6]},{"path":[4,10,2,1,8,1160,1,0],"span":[1696,19,1701,5]},{"path":[4,10,2,1,8,1160,1,0,1],"span":[1697,6,21]},{"path":[4,10,2,1,8,1160,1,0,3],"span":[1698,6,1700,64]},{"path":[4,10,2,2],"span":[1713,4,1718,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MySInt64 {\n // value must be less than or equal to 10\n sint64 value = 1 [(buf.validate.field).sint64.lte = 10];\n }\n ```\n"},{"path":[4,10,2,2,5],"span":[1713,4,10]},{"path":[4,10,2,2,1],"span":[1713,11,14]},{"path":[4,10,2,2,3],"span":[1713,17,18]},{"path":[4,10,2,2,8],"span":[1713,19,1718,6]},{"path":[4,10,2,2,8,1160,1,0],"span":[1713,20,1718,5]},{"path":[4,10,2,2,8,1160,1,0,1],"span":[1714,6,22]},{"path":[4,10,2,2,8,1160,1,0,3],"span":[1715,6,1717,77]},{"path":[4,10,8,1],"span":[1720,2,1822,3]},{"path":[4,10,8,1,1],"span":[1720,8,20]},{"path":[4,10,2,3],"span":[1739,4,1770,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySInt64 {\n // value must be greater than 5 [sint64.gt]\n sint64 value = 1 [(buf.validate.field).sint64.gt = 5];\n\n // value must be greater than 5 and less than 10 [sint64.gt_lt]\n sint64 other_value = 2 [(buf.validate.field).sint64 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [sint64.gt_lt_exclusive]\n sint64 another_value = 3 [(buf.validate.field).sint64 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,10,2,3,5],"span":[1739,4,10]},{"path":[4,10,2,3,1],"span":[1739,11,13]},{"path":[4,10,2,3,3],"span":[1739,16,17]},{"path":[4,10,2,3,8],"span":[1739,18,1770,5]},{"path":[4,10,2,3,8,1160,1,0],"span":[1740,6,1745,7]},{"path":[4,10,2,3,8,1160,1,0,1],"span":[1741,8,23]},{"path":[4,10,2,3,8,1160,1,0,3],"span":[1742,8,1744,69]},{"path":[4,10,2,3,8,1160,1,1],"span":[1746,6,1751,7]},{"path":[4,10,2,3,8,1160,1,1,1],"span":[1747,8,26]},{"path":[4,10,2,3,8,1160,1,1,3],"span":[1748,8,1750,96]},{"path":[4,10,2,3,8,1160,1,2],"span":[1752,6,1757,7]},{"path":[4,10,2,3,8,1160,1,2,1],"span":[1753,8,36]},{"path":[4,10,2,3,8,1160,1,2,3],"span":[1754,8,1756,95]},{"path":[4,10,2,3,8,1160,1,3],"span":[1758,6,1763,7]},{"path":[4,10,2,3,8,1160,1,3,1],"span":[1759,8,27]},{"path":[4,10,2,3,8,1160,1,3,3],"span":[1760,8,1762,109]},{"path":[4,10,2,3,8,1160,1,4],"span":[1764,6,1769,7]},{"path":[4,10,2,3,8,1160,1,4,1],"span":[1765,8,37]},{"path":[4,10,2,3,8,1160,1,4,3],"span":[1766,8,1768,108]},{"path":[4,10,2,4],"span":[1790,4,1821,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySInt64 {\n // value must be greater than or equal to 5 [sint64.gte]\n sint64 value = 1 [(buf.validate.field).sint64.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [sint64.gte_lt]\n sint64 other_value = 2 [(buf.validate.field).sint64 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [sint64.gte_lt_exclusive]\n sint64 another_value = 3 [(buf.validate.field).sint64 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,10,2,4,5],"span":[1790,4,10]},{"path":[4,10,2,4,1],"span":[1790,11,14]},{"path":[4,10,2,4,3],"span":[1790,17,18]},{"path":[4,10,2,4,8],"span":[1790,19,1821,5]},{"path":[4,10,2,4,8,1160,1,0],"span":[1791,6,1796,7]},{"path":[4,10,2,4,8,1160,1,0,1],"span":[1792,8,24]},{"path":[4,10,2,4,8,1160,1,0,3],"span":[1793,8,1795,82]},{"path":[4,10,2,4,8,1160,1,1],"span":[1797,6,1802,7]},{"path":[4,10,2,4,8,1160,1,1,1],"span":[1798,8,27]},{"path":[4,10,2,4,8,1160,1,1,3],"span":[1799,8,1801,109]},{"path":[4,10,2,4,8,1160,1,2],"span":[1803,6,1808,7]},{"path":[4,10,2,4,8,1160,1,2,1],"span":[1804,8,37]},{"path":[4,10,2,4,8,1160,1,2,3],"span":[1805,8,1807,108]},{"path":[4,10,2,4,8,1160,1,3],"span":[1809,6,1814,7]},{"path":[4,10,2,4,8,1160,1,3,1],"span":[1810,8,28]},{"path":[4,10,2,4,8,1160,1,3,3],"span":[1811,8,1813,122]},{"path":[4,10,2,4,8,1160,1,4],"span":[1815,6,1820,7]},{"path":[4,10,2,4,8,1160,1,4,1],"span":[1816,8,38]},{"path":[4,10,2,4,8,1160,1,4,3],"span":[1817,8,1819,121]},{"path":[4,10,2,5],"span":[1834,2,1837,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message\n is generated.\n\n ```proto\n message MySInt64 {\n // value must be in list [1, 2, 3]\n repeated sint64 value = 1 (buf.validate.field).sint64 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,10,2,5,4],"span":[1834,2,10]},{"path":[4,10,2,5,5],"span":[1834,11,17]},{"path":[4,10,2,5,1],"span":[1834,18,20]},{"path":[4,10,2,5,3],"span":[1834,23,24]},{"path":[4,10,2,5,8],"span":[1834,25,1837,4]},{"path":[4,10,2,5,8,1160,1,0],"span":[1834,26,1837,3]},{"path":[4,10,2,5,8,1160,1,0,1],"span":[1835,4,19]},{"path":[4,10,2,5,8,1160,1,0,3],"span":[1836,4,106]},{"path":[4,10,2,6],"span":[1849,2,1852,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MySInt64 {\n // value must not be in list [1, 2, 3]\n repeated sint64 value = 1 (buf.validate.field).sint64 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,10,2,6,4],"span":[1849,2,10]},{"path":[4,10,2,6,5],"span":[1849,11,17]},{"path":[4,10,2,6,1],"span":[1849,18,24]},{"path":[4,10,2,6,3],"span":[1849,27,28]},{"path":[4,10,2,6,8],"span":[1849,29,1852,4]},{"path":[4,10,2,6,8,1160,1,0],"span":[1849,30,1852,3]},{"path":[4,10,2,6,8,1160,1,0,1],"span":[1850,4,23]},{"path":[4,10,2,6,8,1160,1,0,3],"span":[1851,4,99]},{"path":[4,11],"span":[1856,0,2038,1],"leadingComments":" Fixed32Rules describes the constraints applied to `fixed32` values.\n"},{"path":[4,11,1],"span":[1856,8,20]},{"path":[4,11,2,0],"span":[1866,2,1869,5],"leadingComments":" `const` requires the field value to exactly match the specified value.\n If the field value doesn't match, an error message is generated.\n\n ```proto\n message MyFixed32 {\n // value must equal 42\n fixed32 value = 1 [(buf.validate.field).fixed32.const = 42];\n }\n ```\n"},{"path":[4,11,2,0,4],"span":[1866,2,10]},{"path":[4,11,2,0,5],"span":[1866,11,18]},{"path":[4,11,2,0,1],"span":[1866,19,24]},{"path":[4,11,2,0,3],"span":[1866,27,28]},{"path":[4,11,2,0,8],"span":[1866,29,1869,4]},{"path":[4,11,2,0,8,1160,1,0],"span":[1866,30,1869,3]},{"path":[4,11,2,0,8,1160,1,0,1],"span":[1867,4,23]},{"path":[4,11,2,0,8,1160,1,0,3],"span":[1868,4,88]},{"path":[4,11,8,0],"span":[1870,2,1904,3]},{"path":[4,11,8,0,1],"span":[1870,8,17]},{"path":[4,11,2,1],"span":[1881,4,1886,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MyFixed32 {\n // value must be less than 10\n fixed32 value = 1 [(buf.validate.field).fixed32.lt = 10];\n }\n ```\n"},{"path":[4,11,2,1,5],"span":[1881,4,11]},{"path":[4,11,2,1,1],"span":[1881,12,14]},{"path":[4,11,2,1,3],"span":[1881,17,18]},{"path":[4,11,2,1,8],"span":[1881,19,1886,6]},{"path":[4,11,2,1,8,1160,1,0],"span":[1881,20,1886,5]},{"path":[4,11,2,1,8,1160,1,0,1],"span":[1882,6,22]},{"path":[4,11,2,1,8,1160,1,0,3],"span":[1883,6,1885,64]},{"path":[4,11,2,2],"span":[1898,4,1903,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyFixed32 {\n // value must be less than or equal to 10\n fixed32 value = 1 [(buf.validate.field).fixed32.lte = 10];\n }\n ```\n"},{"path":[4,11,2,2,5],"span":[1898,4,11]},{"path":[4,11,2,2,1],"span":[1898,12,15]},{"path":[4,11,2,2,3],"span":[1898,18,19]},{"path":[4,11,2,2,8],"span":[1898,20,1903,6]},{"path":[4,11,2,2,8,1160,1,0],"span":[1898,21,1903,5]},{"path":[4,11,2,2,8,1160,1,0,1],"span":[1899,6,23]},{"path":[4,11,2,2,8,1160,1,0,3],"span":[1900,6,1902,77]},{"path":[4,11,8,1],"span":[1905,2,2007,3]},{"path":[4,11,8,1,1],"span":[1905,8,20]},{"path":[4,11,2,3],"span":[1924,4,1955,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyFixed32 {\n // value must be greater than 5 [fixed32.gt]\n fixed32 value = 1 [(buf.validate.field).fixed32.gt = 5];\n\n // value must be greater than 5 and less than 10 [fixed32.gt_lt]\n fixed32 other_value = 2 [(buf.validate.field).fixed32 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [fixed32.gt_lt_exclusive]\n fixed32 another_value = 3 [(buf.validate.field).fixed32 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,11,2,3,5],"span":[1924,4,11]},{"path":[4,11,2,3,1],"span":[1924,12,14]},{"path":[4,11,2,3,3],"span":[1924,17,18]},{"path":[4,11,2,3,8],"span":[1924,19,1955,5]},{"path":[4,11,2,3,8,1160,1,0],"span":[1925,6,1930,7]},{"path":[4,11,2,3,8,1160,1,0,1],"span":[1926,8,24]},{"path":[4,11,2,3,8,1160,1,0,3],"span":[1927,8,1929,69]},{"path":[4,11,2,3,8,1160,1,1],"span":[1931,6,1936,7]},{"path":[4,11,2,3,8,1160,1,1,1],"span":[1932,8,27]},{"path":[4,11,2,3,8,1160,1,1,3],"span":[1933,8,1935,96]},{"path":[4,11,2,3,8,1160,1,2],"span":[1937,6,1942,7]},{"path":[4,11,2,3,8,1160,1,2,1],"span":[1938,8,37]},{"path":[4,11,2,3,8,1160,1,2,3],"span":[1939,8,1941,95]},{"path":[4,11,2,3,8,1160,1,3],"span":[1943,6,1948,7]},{"path":[4,11,2,3,8,1160,1,3,1],"span":[1944,8,28]},{"path":[4,11,2,3,8,1160,1,3,3],"span":[1945,8,1947,109]},{"path":[4,11,2,3,8,1160,1,4],"span":[1949,6,1954,7]},{"path":[4,11,2,3,8,1160,1,4,1],"span":[1950,8,38]},{"path":[4,11,2,3,8,1160,1,4,3],"span":[1951,8,1953,108]},{"path":[4,11,2,4],"span":[1975,4,2006,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyFixed32 {\n // value must be greater than or equal to 5 [fixed32.gte]\n fixed32 value = 1 [(buf.validate.field).fixed32.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [fixed32.gte_lt]\n fixed32 other_value = 2 [(buf.validate.field).fixed32 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [fixed32.gte_lt_exclusive]\n fixed32 another_value = 3 [(buf.validate.field).fixed32 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,11,2,4,5],"span":[1975,4,11]},{"path":[4,11,2,4,1],"span":[1975,12,15]},{"path":[4,11,2,4,3],"span":[1975,18,19]},{"path":[4,11,2,4,8],"span":[1975,20,2006,5]},{"path":[4,11,2,4,8,1160,1,0],"span":[1976,6,1981,7]},{"path":[4,11,2,4,8,1160,1,0,1],"span":[1977,8,25]},{"path":[4,11,2,4,8,1160,1,0,3],"span":[1978,8,1980,82]},{"path":[4,11,2,4,8,1160,1,1],"span":[1982,6,1987,7]},{"path":[4,11,2,4,8,1160,1,1,1],"span":[1983,8,28]},{"path":[4,11,2,4,8,1160,1,1,3],"span":[1984,8,1986,109]},{"path":[4,11,2,4,8,1160,1,2],"span":[1988,6,1993,7]},{"path":[4,11,2,4,8,1160,1,2,1],"span":[1989,8,38]},{"path":[4,11,2,4,8,1160,1,2,3],"span":[1990,8,1992,108]},{"path":[4,11,2,4,8,1160,1,3],"span":[1994,6,1999,7]},{"path":[4,11,2,4,8,1160,1,3,1],"span":[1995,8,29]},{"path":[4,11,2,4,8,1160,1,3,3],"span":[1996,8,1998,122]},{"path":[4,11,2,4,8,1160,1,4],"span":[2000,6,2005,7]},{"path":[4,11,2,4,8,1160,1,4,1],"span":[2001,8,39]},{"path":[4,11,2,4,8,1160,1,4,3],"span":[2002,8,2004,121]},{"path":[4,11,2,5],"span":[2019,2,2022,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message\n is generated.\n\n ```proto\n message MyFixed32 {\n // value must be in list [1, 2, 3]\n repeated fixed32 value = 1 (buf.validate.field).fixed32 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,11,2,5,4],"span":[2019,2,10]},{"path":[4,11,2,5,5],"span":[2019,11,18]},{"path":[4,11,2,5,1],"span":[2019,19,21]},{"path":[4,11,2,5,3],"span":[2019,24,25]},{"path":[4,11,2,5,8],"span":[2019,26,2022,4]},{"path":[4,11,2,5,8,1160,1,0],"span":[2019,27,2022,3]},{"path":[4,11,2,5,8,1160,1,0,1],"span":[2020,4,20]},{"path":[4,11,2,5,8,1160,1,0,3],"span":[2021,4,106]},{"path":[4,11,2,6],"span":[2034,2,2037,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MyFixed32 {\n // value must not be in list [1, 2, 3]\n repeated fixed32 value = 1 (buf.validate.field).fixed32 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,11,2,6,4],"span":[2034,2,10]},{"path":[4,11,2,6,5],"span":[2034,11,18]},{"path":[4,11,2,6,1],"span":[2034,19,25]},{"path":[4,11,2,6,3],"span":[2034,28,29]},{"path":[4,11,2,6,8],"span":[2034,30,2037,4]},{"path":[4,11,2,6,8,1160,1,0],"span":[2034,31,2037,3]},{"path":[4,11,2,6,8,1160,1,0,1],"span":[2035,4,24]},{"path":[4,11,2,6,8,1160,1,0,3],"span":[2036,4,99]},{"path":[4,12],"span":[2041,0,2223,1],"leadingComments":" Fixed64Rules describes the constraints applied to `fixed64` values.\n"},{"path":[4,12,1],"span":[2041,8,20]},{"path":[4,12,2,0],"span":[2051,2,2054,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyFixed64 {\n // value must equal 42\n fixed64 value = 1 [(buf.validate.field).fixed64.const = 42];\n }\n ```\n"},{"path":[4,12,2,0,4],"span":[2051,2,10]},{"path":[4,12,2,0,5],"span":[2051,11,18]},{"path":[4,12,2,0,1],"span":[2051,19,24]},{"path":[4,12,2,0,3],"span":[2051,27,28]},{"path":[4,12,2,0,8],"span":[2051,29,2054,4]},{"path":[4,12,2,0,8,1160,1,0],"span":[2051,30,2054,3]},{"path":[4,12,2,0,8,1160,1,0,1],"span":[2052,4,23]},{"path":[4,12,2,0,8,1160,1,0,3],"span":[2053,4,88]},{"path":[4,12,8,0],"span":[2055,2,2089,3]},{"path":[4,12,8,0,1],"span":[2055,8,17]},{"path":[4,12,2,1],"span":[2066,4,2071,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MyFixed64 {\n // value must be less than 10\n fixed64 value = 1 [(buf.validate.field).fixed64.lt = 10];\n }\n ```\n"},{"path":[4,12,2,1,5],"span":[2066,4,11]},{"path":[4,12,2,1,1],"span":[2066,12,14]},{"path":[4,12,2,1,3],"span":[2066,17,18]},{"path":[4,12,2,1,8],"span":[2066,19,2071,6]},{"path":[4,12,2,1,8,1160,1,0],"span":[2066,20,2071,5]},{"path":[4,12,2,1,8,1160,1,0,1],"span":[2067,6,22]},{"path":[4,12,2,1,8,1160,1,0,3],"span":[2068,6,2070,64]},{"path":[4,12,2,2],"span":[2083,4,2088,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MyFixed64 {\n // value must be less than or equal to 10\n fixed64 value = 1 [(buf.validate.field).fixed64.lte = 10];\n }\n ```\n"},{"path":[4,12,2,2,5],"span":[2083,4,11]},{"path":[4,12,2,2,1],"span":[2083,12,15]},{"path":[4,12,2,2,3],"span":[2083,18,19]},{"path":[4,12,2,2,8],"span":[2083,20,2088,6]},{"path":[4,12,2,2,8,1160,1,0],"span":[2083,21,2088,5]},{"path":[4,12,2,2,8,1160,1,0,1],"span":[2084,6,23]},{"path":[4,12,2,2,8,1160,1,0,3],"span":[2085,6,2087,77]},{"path":[4,12,8,1],"span":[2090,2,2192,3]},{"path":[4,12,8,1,1],"span":[2090,8,20]},{"path":[4,12,2,3],"span":[2109,4,2140,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyFixed64 {\n // value must be greater than 5 [fixed64.gt]\n fixed64 value = 1 [(buf.validate.field).fixed64.gt = 5];\n\n // value must be greater than 5 and less than 10 [fixed64.gt_lt]\n fixed64 other_value = 2 [(buf.validate.field).fixed64 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [fixed64.gt_lt_exclusive]\n fixed64 another_value = 3 [(buf.validate.field).fixed64 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,12,2,3,5],"span":[2109,4,11]},{"path":[4,12,2,3,1],"span":[2109,12,14]},{"path":[4,12,2,3,3],"span":[2109,17,18]},{"path":[4,12,2,3,8],"span":[2109,19,2140,5]},{"path":[4,12,2,3,8,1160,1,0],"span":[2110,6,2115,7]},{"path":[4,12,2,3,8,1160,1,0,1],"span":[2111,8,24]},{"path":[4,12,2,3,8,1160,1,0,3],"span":[2112,8,2114,69]},{"path":[4,12,2,3,8,1160,1,1],"span":[2116,6,2121,7]},{"path":[4,12,2,3,8,1160,1,1,1],"span":[2117,8,27]},{"path":[4,12,2,3,8,1160,1,1,3],"span":[2118,8,2120,96]},{"path":[4,12,2,3,8,1160,1,2],"span":[2122,6,2127,7]},{"path":[4,12,2,3,8,1160,1,2,1],"span":[2123,8,37]},{"path":[4,12,2,3,8,1160,1,2,3],"span":[2124,8,2126,95]},{"path":[4,12,2,3,8,1160,1,3],"span":[2128,6,2133,7]},{"path":[4,12,2,3,8,1160,1,3,1],"span":[2129,8,28]},{"path":[4,12,2,3,8,1160,1,3,3],"span":[2130,8,2132,109]},{"path":[4,12,2,3,8,1160,1,4],"span":[2134,6,2139,7]},{"path":[4,12,2,3,8,1160,1,4,1],"span":[2135,8,38]},{"path":[4,12,2,3,8,1160,1,4,3],"span":[2136,8,2138,108]},{"path":[4,12,2,4],"span":[2160,4,2191,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyFixed64 {\n // value must be greater than or equal to 5 [fixed64.gte]\n fixed64 value = 1 [(buf.validate.field).fixed64.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [fixed64.gte_lt]\n fixed64 other_value = 2 [(buf.validate.field).fixed64 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [fixed64.gte_lt_exclusive]\n fixed64 another_value = 3 [(buf.validate.field).fixed64 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,12,2,4,5],"span":[2160,4,11]},{"path":[4,12,2,4,1],"span":[2160,12,15]},{"path":[4,12,2,4,3],"span":[2160,18,19]},{"path":[4,12,2,4,8],"span":[2160,20,2191,5]},{"path":[4,12,2,4,8,1160,1,0],"span":[2161,6,2166,7]},{"path":[4,12,2,4,8,1160,1,0,1],"span":[2162,8,25]},{"path":[4,12,2,4,8,1160,1,0,3],"span":[2163,8,2165,82]},{"path":[4,12,2,4,8,1160,1,1],"span":[2167,6,2172,7]},{"path":[4,12,2,4,8,1160,1,1,1],"span":[2168,8,28]},{"path":[4,12,2,4,8,1160,1,1,3],"span":[2169,8,2171,109]},{"path":[4,12,2,4,8,1160,1,2],"span":[2173,6,2178,7]},{"path":[4,12,2,4,8,1160,1,2,1],"span":[2174,8,38]},{"path":[4,12,2,4,8,1160,1,2,3],"span":[2175,8,2177,108]},{"path":[4,12,2,4,8,1160,1,3],"span":[2179,6,2184,7]},{"path":[4,12,2,4,8,1160,1,3,1],"span":[2180,8,29]},{"path":[4,12,2,4,8,1160,1,3,3],"span":[2181,8,2183,122]},{"path":[4,12,2,4,8,1160,1,4],"span":[2185,6,2190,7]},{"path":[4,12,2,4,8,1160,1,4,1],"span":[2186,8,39]},{"path":[4,12,2,4,8,1160,1,4,3],"span":[2187,8,2189,121]},{"path":[4,12,2,5],"span":[2204,2,2207,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MyFixed64 {\n // value must be in list [1, 2, 3]\n repeated fixed64 value = 1 (buf.validate.field).fixed64 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,12,2,5,4],"span":[2204,2,10]},{"path":[4,12,2,5,5],"span":[2204,11,18]},{"path":[4,12,2,5,1],"span":[2204,19,21]},{"path":[4,12,2,5,3],"span":[2204,24,25]},{"path":[4,12,2,5,8],"span":[2204,26,2207,4]},{"path":[4,12,2,5,8,1160,1,0],"span":[2204,27,2207,3]},{"path":[4,12,2,5,8,1160,1,0,1],"span":[2205,4,20]},{"path":[4,12,2,5,8,1160,1,0,3],"span":[2206,4,106]},{"path":[4,12,2,6],"span":[2219,2,2222,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MyFixed64 {\n // value must not be in list [1, 2, 3]\n repeated fixed64 value = 1 (buf.validate.field).fixed64 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,12,2,6,4],"span":[2219,2,10]},{"path":[4,12,2,6,5],"span":[2219,11,18]},{"path":[4,12,2,6,1],"span":[2219,19,25]},{"path":[4,12,2,6,3],"span":[2219,28,29]},{"path":[4,12,2,6,8],"span":[2219,30,2222,4]},{"path":[4,12,2,6,8,1160,1,0],"span":[2219,31,2222,3]},{"path":[4,12,2,6,8,1160,1,0,1],"span":[2220,4,24]},{"path":[4,12,2,6,8,1160,1,0,3],"span":[2221,4,99]},{"path":[4,13],"span":[2226,0,2408,1],"leadingComments":" SFixed32Rules describes the constraints applied to `fixed32` values.\n"},{"path":[4,13,1],"span":[2226,8,21]},{"path":[4,13,2,0],"span":[2236,2,2239,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MySFixed32 {\n // value must equal 42\n sfixed32 value = 1 [(buf.validate.field).sfixed32.const = 42];\n }\n ```\n"},{"path":[4,13,2,0,4],"span":[2236,2,10]},{"path":[4,13,2,0,5],"span":[2236,11,19]},{"path":[4,13,2,0,1],"span":[2236,20,25]},{"path":[4,13,2,0,3],"span":[2236,28,29]},{"path":[4,13,2,0,8],"span":[2236,30,2239,4]},{"path":[4,13,2,0,8,1160,1,0],"span":[2236,31,2239,3]},{"path":[4,13,2,0,8,1160,1,0,1],"span":[2237,4,24]},{"path":[4,13,2,0,8,1160,1,0,3],"span":[2238,4,88]},{"path":[4,13,8,0],"span":[2240,2,2274,3]},{"path":[4,13,8,0,1],"span":[2240,8,17]},{"path":[4,13,2,1],"span":[2251,4,2256,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MySFixed32 {\n // value must be less than 10\n sfixed32 value = 1 [(buf.validate.field).sfixed32.lt = 10];\n }\n ```\n"},{"path":[4,13,2,1,5],"span":[2251,4,12]},{"path":[4,13,2,1,1],"span":[2251,13,15]},{"path":[4,13,2,1,3],"span":[2251,18,19]},{"path":[4,13,2,1,8],"span":[2251,20,2256,6]},{"path":[4,13,2,1,8,1160,1,0],"span":[2251,21,2256,5]},{"path":[4,13,2,1,8,1160,1,0,1],"span":[2252,6,23]},{"path":[4,13,2,1,8,1160,1,0,3],"span":[2253,6,2255,64]},{"path":[4,13,2,2],"span":[2268,4,2273,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MySFixed32 {\n // value must be less than or equal to 10\n sfixed32 value = 1 [(buf.validate.field).sfixed32.lte = 10];\n }\n ```\n"},{"path":[4,13,2,2,5],"span":[2268,4,12]},{"path":[4,13,2,2,1],"span":[2268,13,16]},{"path":[4,13,2,2,3],"span":[2268,19,20]},{"path":[4,13,2,2,8],"span":[2268,21,2273,6]},{"path":[4,13,2,2,8,1160,1,0],"span":[2268,22,2273,5]},{"path":[4,13,2,2,8,1160,1,0,1],"span":[2269,6,24]},{"path":[4,13,2,2,8,1160,1,0,3],"span":[2270,6,2272,77]},{"path":[4,13,8,1],"span":[2275,2,2377,3]},{"path":[4,13,8,1,1],"span":[2275,8,20]},{"path":[4,13,2,3],"span":[2294,4,2325,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySFixed32 {\n // value must be greater than 5 [sfixed32.gt]\n sfixed32 value = 1 [(buf.validate.field).sfixed32.gt = 5];\n\n // value must be greater than 5 and less than 10 [sfixed32.gt_lt]\n sfixed32 other_value = 2 [(buf.validate.field).sfixed32 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [sfixed32.gt_lt_exclusive]\n sfixed32 another_value = 3 [(buf.validate.field).sfixed32 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,13,2,3,5],"span":[2294,4,12]},{"path":[4,13,2,3,1],"span":[2294,13,15]},{"path":[4,13,2,3,3],"span":[2294,18,19]},{"path":[4,13,2,3,8],"span":[2294,20,2325,5]},{"path":[4,13,2,3,8,1160,1,0],"span":[2295,6,2300,7]},{"path":[4,13,2,3,8,1160,1,0,1],"span":[2296,8,25]},{"path":[4,13,2,3,8,1160,1,0,3],"span":[2297,8,2299,69]},{"path":[4,13,2,3,8,1160,1,1],"span":[2301,6,2306,7]},{"path":[4,13,2,3,8,1160,1,1,1],"span":[2302,8,28]},{"path":[4,13,2,3,8,1160,1,1,3],"span":[2303,8,2305,96]},{"path":[4,13,2,3,8,1160,1,2],"span":[2307,6,2312,7]},{"path":[4,13,2,3,8,1160,1,2,1],"span":[2308,8,38]},{"path":[4,13,2,3,8,1160,1,2,3],"span":[2309,8,2311,95]},{"path":[4,13,2,3,8,1160,1,3],"span":[2313,6,2318,7]},{"path":[4,13,2,3,8,1160,1,3,1],"span":[2314,8,29]},{"path":[4,13,2,3,8,1160,1,3,3],"span":[2315,8,2317,109]},{"path":[4,13,2,3,8,1160,1,4],"span":[2319,6,2324,7]},{"path":[4,13,2,3,8,1160,1,4,1],"span":[2320,8,39]},{"path":[4,13,2,3,8,1160,1,4,3],"span":[2321,8,2323,108]},{"path":[4,13,2,4],"span":[2345,4,2376,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySFixed32 {\n // value must be greater than or equal to 5 [sfixed32.gte]\n sfixed32 value = 1 [(buf.validate.field).sfixed32.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [sfixed32.gte_lt]\n sfixed32 other_value = 2 [(buf.validate.field).sfixed32 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [sfixed32.gte_lt_exclusive]\n sfixed32 another_value = 3 [(buf.validate.field).sfixed32 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,13,2,4,5],"span":[2345,4,12]},{"path":[4,13,2,4,1],"span":[2345,13,16]},{"path":[4,13,2,4,3],"span":[2345,19,20]},{"path":[4,13,2,4,8],"span":[2345,21,2376,5]},{"path":[4,13,2,4,8,1160,1,0],"span":[2346,6,2351,7]},{"path":[4,13,2,4,8,1160,1,0,1],"span":[2347,8,26]},{"path":[4,13,2,4,8,1160,1,0,3],"span":[2348,8,2350,82]},{"path":[4,13,2,4,8,1160,1,1],"span":[2352,6,2357,7]},{"path":[4,13,2,4,8,1160,1,1,1],"span":[2353,8,29]},{"path":[4,13,2,4,8,1160,1,1,3],"span":[2354,8,2356,109]},{"path":[4,13,2,4,8,1160,1,2],"span":[2358,6,2363,7]},{"path":[4,13,2,4,8,1160,1,2,1],"span":[2359,8,39]},{"path":[4,13,2,4,8,1160,1,2,3],"span":[2360,8,2362,108]},{"path":[4,13,2,4,8,1160,1,3],"span":[2364,6,2369,7]},{"path":[4,13,2,4,8,1160,1,3,1],"span":[2365,8,30]},{"path":[4,13,2,4,8,1160,1,3,3],"span":[2366,8,2368,122]},{"path":[4,13,2,4,8,1160,1,4],"span":[2370,6,2375,7]},{"path":[4,13,2,4,8,1160,1,4,1],"span":[2371,8,40]},{"path":[4,13,2,4,8,1160,1,4,3],"span":[2372,8,2374,121]},{"path":[4,13,2,5],"span":[2389,2,2392,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MySFixed32 {\n // value must be in list [1, 2, 3]\n repeated sfixed32 value = 1 (buf.validate.field).sfixed32 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,13,2,5,4],"span":[2389,2,10]},{"path":[4,13,2,5,5],"span":[2389,11,19]},{"path":[4,13,2,5,1],"span":[2389,20,22]},{"path":[4,13,2,5,3],"span":[2389,25,26]},{"path":[4,13,2,5,8],"span":[2389,27,2392,4]},{"path":[4,13,2,5,8,1160,1,0],"span":[2389,28,2392,3]},{"path":[4,13,2,5,8,1160,1,0,1],"span":[2390,4,21]},{"path":[4,13,2,5,8,1160,1,0,3],"span":[2391,4,106]},{"path":[4,13,2,6],"span":[2404,2,2407,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MySFixed32 {\n // value must not be in list [1, 2, 3]\n repeated sfixed32 value = 1 (buf.validate.field).sfixed32 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,13,2,6,4],"span":[2404,2,10]},{"path":[4,13,2,6,5],"span":[2404,11,19]},{"path":[4,13,2,6,1],"span":[2404,20,26]},{"path":[4,13,2,6,3],"span":[2404,29,30]},{"path":[4,13,2,6,8],"span":[2404,31,2407,4]},{"path":[4,13,2,6,8,1160,1,0],"span":[2404,32,2407,3]},{"path":[4,13,2,6,8,1160,1,0,1],"span":[2405,4,25]},{"path":[4,13,2,6,8,1160,1,0,3],"span":[2406,4,99]},{"path":[4,14],"span":[2411,0,2593,1],"leadingComments":" SFixed64Rules describes the constraints applied to `fixed64` values.\n"},{"path":[4,14,1],"span":[2411,8,21]},{"path":[4,14,2,0],"span":[2421,2,2424,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MySFixed64 {\n // value must equal 42\n sfixed64 value = 1 [(buf.validate.field).sfixed64.const = 42];\n }\n ```\n"},{"path":[4,14,2,0,4],"span":[2421,2,10]},{"path":[4,14,2,0,5],"span":[2421,11,19]},{"path":[4,14,2,0,1],"span":[2421,20,25]},{"path":[4,14,2,0,3],"span":[2421,28,29]},{"path":[4,14,2,0,8],"span":[2421,30,2424,4]},{"path":[4,14,2,0,8,1160,1,0],"span":[2421,31,2424,3]},{"path":[4,14,2,0,8,1160,1,0,1],"span":[2422,4,24]},{"path":[4,14,2,0,8,1160,1,0,3],"span":[2423,4,88]},{"path":[4,14,8,0],"span":[2425,2,2459,3]},{"path":[4,14,8,0,1],"span":[2425,8,17]},{"path":[4,14,2,1],"span":[2436,4,2441,7],"leadingComments":" `lt` requires the field value to be less than the specified value (field <\n value). If the field value is equal to or greater than the specified value,\n an error message is generated.\n\n ```proto\n message MySFixed64 {\n // value must be less than 10\n sfixed64 value = 1 [(buf.validate.field).sfixed64.lt = 10];\n }\n ```\n"},{"path":[4,14,2,1,5],"span":[2436,4,12]},{"path":[4,14,2,1,1],"span":[2436,13,15]},{"path":[4,14,2,1,3],"span":[2436,18,19]},{"path":[4,14,2,1,8],"span":[2436,20,2441,6]},{"path":[4,14,2,1,8,1160,1,0],"span":[2436,21,2441,5]},{"path":[4,14,2,1,8,1160,1,0,1],"span":[2437,6,23]},{"path":[4,14,2,1,8,1160,1,0,3],"span":[2438,6,2440,64]},{"path":[4,14,2,2],"span":[2453,4,2458,7],"leadingComments":" `lte` requires the field value to be less than or equal to the specified\n value (field <= value). If the field value is greater than the specified\n value, an error message is generated.\n\n ```proto\n message MySFixed64 {\n // value must be less than or equal to 10\n sfixed64 value = 1 [(buf.validate.field).sfixed64.lte = 10];\n }\n ```\n"},{"path":[4,14,2,2,5],"span":[2453,4,12]},{"path":[4,14,2,2,1],"span":[2453,13,16]},{"path":[4,14,2,2,3],"span":[2453,19,20]},{"path":[4,14,2,2,8],"span":[2453,21,2458,6]},{"path":[4,14,2,2,8,1160,1,0],"span":[2453,22,2458,5]},{"path":[4,14,2,2,8,1160,1,0,1],"span":[2454,6,24]},{"path":[4,14,2,2,8,1160,1,0,3],"span":[2455,6,2457,77]},{"path":[4,14,8,1],"span":[2460,2,2562,3]},{"path":[4,14,8,1,1],"span":[2460,8,20]},{"path":[4,14,2,3],"span":[2479,4,2510,6],"leadingComments":" `gt` requires the field value to be greater than the specified value\n (exclusive). If the value of `gt` is larger than a specified `lt` or\n `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySFixed64 {\n // value must be greater than 5 [sfixed64.gt]\n sfixed64 value = 1 [(buf.validate.field).sfixed64.gt = 5];\n\n // value must be greater than 5 and less than 10 [sfixed64.gt_lt]\n sfixed64 other_value = 2 [(buf.validate.field).sfixed64 = { gt: 5, lt: 10 }];\n\n // value must be greater than 10 or less than 5 [sfixed64.gt_lt_exclusive]\n sfixed64 another_value = 3 [(buf.validate.field).sfixed64 = { gt: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,14,2,3,5],"span":[2479,4,12]},{"path":[4,14,2,3,1],"span":[2479,13,15]},{"path":[4,14,2,3,3],"span":[2479,18,19]},{"path":[4,14,2,3,8],"span":[2479,20,2510,5]},{"path":[4,14,2,3,8,1160,1,0],"span":[2480,6,2485,7]},{"path":[4,14,2,3,8,1160,1,0,1],"span":[2481,8,25]},{"path":[4,14,2,3,8,1160,1,0,3],"span":[2482,8,2484,69]},{"path":[4,14,2,3,8,1160,1,1],"span":[2486,6,2491,7]},{"path":[4,14,2,3,8,1160,1,1,1],"span":[2487,8,28]},{"path":[4,14,2,3,8,1160,1,1,3],"span":[2488,8,2490,96]},{"path":[4,14,2,3,8,1160,1,2],"span":[2492,6,2497,7]},{"path":[4,14,2,3,8,1160,1,2,1],"span":[2493,8,38]},{"path":[4,14,2,3,8,1160,1,2,3],"span":[2494,8,2496,95]},{"path":[4,14,2,3,8,1160,1,3],"span":[2498,6,2503,7]},{"path":[4,14,2,3,8,1160,1,3,1],"span":[2499,8,29]},{"path":[4,14,2,3,8,1160,1,3,3],"span":[2500,8,2502,109]},{"path":[4,14,2,3,8,1160,1,4],"span":[2504,6,2509,7]},{"path":[4,14,2,3,8,1160,1,4,1],"span":[2505,8,39]},{"path":[4,14,2,3,8,1160,1,4,3],"span":[2506,8,2508,108]},{"path":[4,14,2,4],"span":[2530,4,2561,6],"leadingComments":" `gte` requires the field value to be greater than or equal to the specified\n value (exclusive). If the value of `gte` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MySFixed64 {\n // value must be greater than or equal to 5 [sfixed64.gte]\n sfixed64 value = 1 [(buf.validate.field).sfixed64.gte = 5];\n\n // value must be greater than or equal to 5 and less than 10 [sfixed64.gte_lt]\n sfixed64 other_value = 2 [(buf.validate.field).sfixed64 = { gte: 5, lt: 10 }];\n\n // value must be greater than or equal to 10 or less than 5 [sfixed64.gte_lt_exclusive]\n sfixed64 another_value = 3 [(buf.validate.field).sfixed64 = { gte: 10, lt: 5 }];\n }\n ```\n"},{"path":[4,14,2,4,5],"span":[2530,4,12]},{"path":[4,14,2,4,1],"span":[2530,13,16]},{"path":[4,14,2,4,3],"span":[2530,19,20]},{"path":[4,14,2,4,8],"span":[2530,21,2561,5]},{"path":[4,14,2,4,8,1160,1,0],"span":[2531,6,2536,7]},{"path":[4,14,2,4,8,1160,1,0,1],"span":[2532,8,26]},{"path":[4,14,2,4,8,1160,1,0,3],"span":[2533,8,2535,82]},{"path":[4,14,2,4,8,1160,1,1],"span":[2537,6,2542,7]},{"path":[4,14,2,4,8,1160,1,1,1],"span":[2538,8,29]},{"path":[4,14,2,4,8,1160,1,1,3],"span":[2539,8,2541,109]},{"path":[4,14,2,4,8,1160,1,2],"span":[2543,6,2548,7]},{"path":[4,14,2,4,8,1160,1,2,1],"span":[2544,8,39]},{"path":[4,14,2,4,8,1160,1,2,3],"span":[2545,8,2547,108]},{"path":[4,14,2,4,8,1160,1,3],"span":[2549,6,2554,7]},{"path":[4,14,2,4,8,1160,1,3,1],"span":[2550,8,30]},{"path":[4,14,2,4,8,1160,1,3,3],"span":[2551,8,2553,122]},{"path":[4,14,2,4,8,1160,1,4],"span":[2555,6,2560,7]},{"path":[4,14,2,4,8,1160,1,4,1],"span":[2556,8,40]},{"path":[4,14,2,4,8,1160,1,4,3],"span":[2557,8,2559,121]},{"path":[4,14,2,5],"span":[2574,2,2577,5],"leadingComments":" `in` requires the field value to be equal to one of the specified values.\n If the field value isn't one of the specified values, an error message is\n generated.\n\n ```proto\n message MySFixed64 {\n // value must be in list [1, 2, 3]\n repeated sfixed64 value = 1 (buf.validate.field).sfixed64 = { in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,14,2,5,4],"span":[2574,2,10]},{"path":[4,14,2,5,5],"span":[2574,11,19]},{"path":[4,14,2,5,1],"span":[2574,20,22]},{"path":[4,14,2,5,3],"span":[2574,25,26]},{"path":[4,14,2,5,8],"span":[2574,27,2577,4]},{"path":[4,14,2,5,8,1160,1,0],"span":[2574,28,2577,3]},{"path":[4,14,2,5,8,1160,1,0,1],"span":[2575,4,21]},{"path":[4,14,2,5,8,1160,1,0,3],"span":[2576,4,106]},{"path":[4,14,2,6],"span":[2589,2,2592,5],"leadingComments":" `not_in` requires the field value to not be equal to any of the specified\n values. If the field value is one of the specified values, an error\n message is generated.\n\n ```proto\n message MySFixed64 {\n // value must not be in list [1, 2, 3]\n repeated sfixed64 value = 1 (buf.validate.field).sfixed64 = { not_in: [1, 2, 3] };\n }\n ```\n"},{"path":[4,14,2,6,4],"span":[2589,2,10]},{"path":[4,14,2,6,5],"span":[2589,11,19]},{"path":[4,14,2,6,1],"span":[2589,20,26]},{"path":[4,14,2,6,3],"span":[2589,29,30]},{"path":[4,14,2,6,8],"span":[2589,31,2592,4]},{"path":[4,14,2,6,8,1160,1,0],"span":[2589,32,2592,3]},{"path":[4,14,2,6,8,1160,1,0,1],"span":[2590,4,25]},{"path":[4,14,2,6,8,1160,1,0,3],"span":[2591,4,99]},{"path":[4,15],"span":[2597,0,2611,1],"leadingComments":" BoolRules describes the constraints applied to `bool` values. These rules\n may also be applied to the `google.protobuf.BoolValue` Well-Known-Type.\n"},{"path":[4,15,1],"span":[2597,8,17]},{"path":[4,15,2,0],"span":[2607,2,2610,5],"leadingComments":" `const` requires the field value to exactly match the specified boolean value.\n If the field value doesn't match, an error message is generated.\n\n ```proto\n message MyBool {\n // value must equal true\n bool value = 1 [(buf.validate.field).bool.const = true];\n }\n ```\n"},{"path":[4,15,2,0,4],"span":[2607,2,10]},{"path":[4,15,2,0,5],"span":[2607,11,15]},{"path":[4,15,2,0,1],"span":[2607,16,21]},{"path":[4,15,2,0,3],"span":[2607,24,25]},{"path":[4,15,2,0,8],"span":[2607,26,2610,4]},{"path":[4,15,2,0,8,1160,1,0],"span":[2607,27,2610,3]},{"path":[4,15,2,0,8,1160,1,0,1],"span":[2608,4,20]},{"path":[4,15,2,0,8,1160,1,0,3],"span":[2609,4,88]},{"path":[4,16],"span":[2615,0,3280,1],"leadingComments":" StringRules describes the constraints applied to `string` values These\n rules may also be applied to the `google.protobuf.StringValue` Well-Known-Type.\n"},{"path":[4,16,1],"span":[2615,8,19]},{"path":[4,16,2,0],"span":[2625,2,2628,5],"leadingComments":" `const` requires the field value to exactly match the specified value. If\n the field value doesn't match, an error message is generated.\n\n ```proto\n message MyString {\n // value must equal `hello`\n string value = 1 [(buf.validate.field).string.const = \"hello\"];\n }\n ```\n"},{"path":[4,16,2,0,4],"span":[2625,2,10]},{"path":[4,16,2,0,5],"span":[2625,11,17]},{"path":[4,16,2,0,1],"span":[2625,18,23]},{"path":[4,16,2,0,3],"span":[2625,26,27]},{"path":[4,16,2,0,8],"span":[2625,28,2628,4]},{"path":[4,16,2,0,8,1160,1,0],"span":[2625,29,2628,3]},{"path":[4,16,2,0,8,1160,1,0,1],"span":[2626,4,22]},{"path":[4,16,2,0,8,1160,1,0,3],"span":[2627,4,90]},{"path":[4,16,2,1],"span":[2641,2,2644,5],"leadingComments":" `len` dictates that the field value must have the specified\n number of characters (Unicode code points), which may differ from the number\n of bytes in the string. If the field value does not meet the specified\n length, an error message will be generated.\n\n ```proto\n message MyString {\n // value length must be 5 characters\n string value = 1 [(buf.validate.field).string.len = 5];\n }\n ```\n"},{"path":[4,16,2,1,4],"span":[2641,2,10]},{"path":[4,16,2,1,5],"span":[2641,11,17]},{"path":[4,16,2,1,1],"span":[2641,18,21]},{"path":[4,16,2,1,3],"span":[2641,24,26]},{"path":[4,16,2,1,8],"span":[2641,27,2644,4]},{"path":[4,16,2,1,8,1160,1,0],"span":[2641,28,2644,3]},{"path":[4,16,2,1,8,1160,1,0,1],"span":[2642,4,20]},{"path":[4,16,2,1,8,1160,1,0,3],"span":[2643,4,112]},{"path":[4,16,2,2],"span":[2657,2,2660,5],"leadingComments":" `min_len` specifies that the field value must have at least the specified\n number of characters (Unicode code points), which may differ from the number\n of bytes in the string. If the field value contains fewer characters, an error\n message will be generated.\n\n ```proto\n message MyString {\n // value length must be at least 3 characters\n string value = 1 [(buf.validate.field).string.min_len = 3];\n }\n ```\n"},{"path":[4,16,2,2,4],"span":[2657,2,10]},{"path":[4,16,2,2,5],"span":[2657,11,17]},{"path":[4,16,2,2,1],"span":[2657,18,25]},{"path":[4,16,2,2,3],"span":[2657,28,29]},{"path":[4,16,2,2,8],"span":[2657,30,2660,4]},{"path":[4,16,2,2,8,1160,1,0],"span":[2657,31,2660,3]},{"path":[4,16,2,2,8,1160,1,0,1],"span":[2658,4,24]},{"path":[4,16,2,2,8,1160,1,0,3],"span":[2659,4,128]},{"path":[4,16,2,3],"span":[2673,2,2676,5],"leadingComments":" `max_len` specifies that the field value must have no more than the specified\n number of characters (Unicode code points), which may differ from the\n number of bytes in the string. If the field value contains more characters,\n an error message will be generated.\n\n ```proto\n message MyString {\n // value length must be at most 10 characters\n string value = 1 [(buf.validate.field).string.max_len = 10];\n }\n ```\n"},{"path":[4,16,2,3,4],"span":[2673,2,10]},{"path":[4,16,2,3,5],"span":[2673,11,17]},{"path":[4,16,2,3,1],"span":[2673,18,25]},{"path":[4,16,2,3,3],"span":[2673,28,29]},{"path":[4,16,2,3,8],"span":[2673,30,2676,4]},{"path":[4,16,2,3,8,1160,1,0],"span":[2673,31,2676,3]},{"path":[4,16,2,3,8,1160,1,0,1],"span":[2674,4,24]},{"path":[4,16,2,3,8,1160,1,0,3],"span":[2675,4,127]},{"path":[4,16,2,4],"span":[2688,2,2691,5],"leadingComments":" `len_bytes` dictates that the field value must have the specified number of\n bytes. If the field value does not match the specified length in bytes,\n an error message will be generated.\n\n ```proto\n message MyString {\n // value length must be 6 bytes\n string value = 1 [(buf.validate.field).string.len_bytes = 6];\n }\n ```\n"},{"path":[4,16,2,4,4],"span":[2688,2,10]},{"path":[4,16,2,4,5],"span":[2688,11,17]},{"path":[4,16,2,4,1],"span":[2688,18,27]},{"path":[4,16,2,4,3],"span":[2688,30,32]},{"path":[4,16,2,4,8],"span":[2688,33,2691,4]},{"path":[4,16,2,4,8,1160,1,0],"span":[2688,34,2691,3]},{"path":[4,16,2,4,8,1160,1,0,1],"span":[2689,4,26]},{"path":[4,16,2,4,8,1160,1,0,3],"span":[2690,4,126]},{"path":[4,16,2,5],"span":[2704,2,2707,5],"leadingComments":" `min_bytes` specifies that the field value must have at least the specified\n number of bytes. If the field value contains fewer bytes, an error message\n will be generated.\n\n ```proto\n message MyString {\n // value length must be at least 4 bytes\n string value = 1 [(buf.validate.field).string.min_bytes = 4];\n }\n\n ```\n"},{"path":[4,16,2,5,4],"span":[2704,2,10]},{"path":[4,16,2,5,5],"span":[2704,11,17]},{"path":[4,16,2,5,1],"span":[2704,18,27]},{"path":[4,16,2,5,3],"span":[2704,30,31]},{"path":[4,16,2,5,8],"span":[2704,32,2707,4]},{"path":[4,16,2,5,8,1160,1,0],"span":[2704,33,2707,3]},{"path":[4,16,2,5,8,1160,1,0,1],"span":[2705,4,26]},{"path":[4,16,2,5,8,1160,1,0,3],"span":[2706,4,134]},{"path":[4,16,2,6],"span":[2719,2,2722,5],"leadingComments":" `max_bytes` specifies that the field value must have no more than the\nspecified number of bytes. If the field value contains more bytes, an\n error message will be generated.\n\n ```proto\n message MyString {\n // value length must be at most 8 bytes\n string value = 1 [(buf.validate.field).string.max_bytes = 8];\n }\n ```\n"},{"path":[4,16,2,6,4],"span":[2719,2,10]},{"path":[4,16,2,6,5],"span":[2719,11,17]},{"path":[4,16,2,6,1],"span":[2719,18,27]},{"path":[4,16,2,6,3],"span":[2719,30,31]},{"path":[4,16,2,6,8],"span":[2719,32,2722,4]},{"path":[4,16,2,6,8,1160,1,0],"span":[2719,33,2722,3]},{"path":[4,16,2,6,8,1160,1,0,1],"span":[2720,4,26]},{"path":[4,16,2,6,8,1160,1,0,3],"span":[2721,4,133]},{"path":[4,16,2,7],"span":[2735,2,2738,5],"leadingComments":" `pattern` specifies that the field value must match the specified\n regular expression (RE2 syntax), with the expression provided without any\n delimiters. If the field value doesn't match the regular expression, an\n error message will be generated.\n\n ```proto\n message MyString {\n // value does not match regex pattern `^[a-zA-Z]//$`\n string value = 1 [(buf.validate.field).string.pattern = \"^[a-zA-Z]//$\"];\n }\n ```\n"},{"path":[4,16,2,7,4],"span":[2735,2,10]},{"path":[4,16,2,7,5],"span":[2735,11,17]},{"path":[4,16,2,7,1],"span":[2735,18,25]},{"path":[4,16,2,7,3],"span":[2735,28,29]},{"path":[4,16,2,7,8],"span":[2735,30,2738,4]},{"path":[4,16,2,7,8,1160,1,0],"span":[2735,31,2738,3]},{"path":[4,16,2,7,8,1160,1,0,1],"span":[2736,4,24]},{"path":[4,16,2,7,8,1160,1,0,3],"span":[2737,4,119]},{"path":[4,16,2,8],"span":[2751,2,2754,5],"leadingComments":" `prefix` specifies that the field value must have the\nspecified substring at the beginning of the string. If the field value\n doesn't start with the specified prefix, an error message will be\n generated.\n\n ```proto\n message MyString {\n // value does not have prefix `pre`\n string value = 1 [(buf.validate.field).string.prefix = \"pre\"];\n }\n ```\n"},{"path":[4,16,2,8,4],"span":[2751,2,10]},{"path":[4,16,2,8,5],"span":[2751,11,17]},{"path":[4,16,2,8,1],"span":[2751,18,24]},{"path":[4,16,2,8,3],"span":[2751,27,28]},{"path":[4,16,2,8,8],"span":[2751,29,2754,4]},{"path":[4,16,2,8,8,1160,1,0],"span":[2751,30,2754,3]},{"path":[4,16,2,8,8,1160,1,0,1],"span":[2752,4,23]},{"path":[4,16,2,8,8,1160,1,0,3],"span":[2753,4,112]},{"path":[4,16,2,9],"span":[2766,2,2769,5],"leadingComments":" `suffix` specifies that the field value must have the\nspecified substring at the end of the string. If the field value doesn't\n end with the specified suffix, an error message will be generated.\n\n ```proto\n message MyString {\n // value does not have suffix `post`\n string value = 1 [(buf.validate.field).string.suffix = \"post\"];\n }\n ```\n"},{"path":[4,16,2,9,4],"span":[2766,2,10]},{"path":[4,16,2,9,5],"span":[2766,11,17]},{"path":[4,16,2,9,1],"span":[2766,18,24]},{"path":[4,16,2,9,3],"span":[2766,27,28]},{"path":[4,16,2,9,8],"span":[2766,29,2769,4]},{"path":[4,16,2,9,8,1160,1,0],"span":[2766,30,2769,3]},{"path":[4,16,2,9,8,1160,1,0,1],"span":[2767,4,23]},{"path":[4,16,2,9,8,1160,1,0,3],"span":[2768,4,110]},{"path":[4,16,2,10],"span":[2781,2,2784,5],"leadingComments":" `contains` specifies that the field value must have the\nspecified substring anywhere in the string. If the field value doesn't\n contain the specified substring, an error message will be generated.\n\n ```proto\n message MyString {\n // value does not contain substring `inside`.\n string value = 1 [(buf.validate.field).string.contains = \"inside\"];\n }\n ```\n"},{"path":[4,16,2,10,4],"span":[2781,2,10]},{"path":[4,16,2,10,5],"span":[2781,11,17]},{"path":[4,16,2,10,1],"span":[2781,18,26]},{"path":[4,16,2,10,3],"span":[2781,29,30]},{"path":[4,16,2,10,8],"span":[2781,31,2784,4]},{"path":[4,16,2,10,8,1160,1,0],"span":[2781,32,2784,3]},{"path":[4,16,2,10,8,1160,1,0,1],"span":[2782,4,25]},{"path":[4,16,2,10,8,1160,1,0,3],"span":[2783,4,120]},{"path":[4,16,2,11],"span":[2796,2,2799,5],"leadingComments":" `not_contains` specifies that the field value must not have the\nspecified substring anywhere in the string. If the field value contains\n the specified substring, an error message will be generated.\n\n ```proto\n message MyString {\n // value contains substring `inside`.\n string value = 1 [(buf.validate.field).string.not_contains = \"inside\"];\n }\n ```\n"},{"path":[4,16,2,11,4],"span":[2796,2,10]},{"path":[4,16,2,11,5],"span":[2796,11,17]},{"path":[4,16,2,11,1],"span":[2796,18,30]},{"path":[4,16,2,11,3],"span":[2796,33,35]},{"path":[4,16,2,11,8],"span":[2796,36,2799,4]},{"path":[4,16,2,11,8,1160,1,0],"span":[2796,37,2799,3]},{"path":[4,16,2,11,8,1160,1,0,1],"span":[2797,4,29]},{"path":[4,16,2,11,8,1160,1,0,3],"span":[2798,4,119]},{"path":[4,16,2,12],"span":[2811,2,2814,5],"leadingComments":" `in` specifies that the field value must be equal to one of the specified\n values. If the field value isn't one of the specified values, an error\n message will be generated.\n\n ```proto\n message MyString {\n // value must be in list [\"apple\", \"banana\"]\n repeated string value = 1 [(buf.validate.field).string.in = \"apple\", (buf.validate.field).string.in = \"banana\"];\n }\n ```\n"},{"path":[4,16,2,12,4],"span":[2811,2,10]},{"path":[4,16,2,12,5],"span":[2811,11,17]},{"path":[4,16,2,12,1],"span":[2811,18,20]},{"path":[4,16,2,12,3],"span":[2811,23,25]},{"path":[4,16,2,12,8],"span":[2811,26,2814,4]},{"path":[4,16,2,12,8,1160,1,0],"span":[2811,27,2814,3]},{"path":[4,16,2,12,8,1160,1,0,1],"span":[2812,4,19]},{"path":[4,16,2,12,8,1160,1,0,3],"span":[2813,4,106]},{"path":[4,16,2,13],"span":[2825,2,2828,5],"leadingComments":" `not_in` specifies that the field value cannot be equal to any\n of the specified values. If the field value is one of the specified values,\n an error message will be generated.\n ```proto\n message MyString {\n // value must not be in list [\"orange\", \"grape\"]\n repeated string value = 1 [(buf.validate.field).string.not_in = \"orange\", (buf.validate.field).string.not_in = \"grape\"];\n }\n ```\n"},{"path":[4,16,2,13,4],"span":[2825,2,10]},{"path":[4,16,2,13,5],"span":[2825,11,17]},{"path":[4,16,2,13,1],"span":[2825,18,24]},{"path":[4,16,2,13,3],"span":[2825,27,29]},{"path":[4,16,2,13,8],"span":[2825,30,2828,4]},{"path":[4,16,2,13,8,1160,1,0],"span":[2825,31,2828,3]},{"path":[4,16,2,13,8,1160,1,0,1],"span":[2826,4,23]},{"path":[4,16,2,13,8,1160,1,0,3],"span":[2827,4,99]},{"path":[4,16,8,0],"span":[2832,2,3265,3],"leadingComments":" `WellKnown` rules provide advanced constraints against common string\n patterns\n"},{"path":[4,16,8,0,1],"span":[2832,8,18]},{"path":[4,16,2,14],"span":[2843,4,2854,6],"leadingComments":" `email` specifies that the field value must be a valid email address\n (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1).\n If the field value isn't a valid email address, an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid email address\n string value = 1 [(buf.validate.field).string.email = true];\n }\n ```\n"},{"path":[4,16,2,14,5],"span":[2843,4,8]},{"path":[4,16,2,14,1],"span":[2843,9,14]},{"path":[4,16,2,14,3],"span":[2843,17,19]},{"path":[4,16,2,14,8],"span":[2843,20,2854,5]},{"path":[4,16,2,14,8,1160,1,0],"span":[2844,6,2848,7]},{"path":[4,16,2,14,8,1160,1,0,1],"span":[2845,8,26]},{"path":[4,16,2,14,8,1160,1,0,2],"span":[2846,8,54]},{"path":[4,16,2,14,8,1160,1,0,3],"span":[2847,8,50]},{"path":[4,16,2,14,8,1160,1,1],"span":[2849,6,2853,7]},{"path":[4,16,2,14,8,1160,1,1,1],"span":[2850,8,32]},{"path":[4,16,2,14,8,1160,1,1,2],"span":[2851,8,69]},{"path":[4,16,2,14,8,1160,1,1,3],"span":[2852,8,32]},{"path":[4,16,2,15],"span":[2867,4,2878,6],"leadingComments":" `hostname` specifies that the field value must be a valid\n hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5). This constraint doesn't support\n internationalized domain names (IDNs). If the field value isn't a\n valid hostname, an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid hostname\n string value = 1 [(buf.validate.field).string.hostname = true];\n }\n ```\n"},{"path":[4,16,2,15,5],"span":[2867,4,8]},{"path":[4,16,2,15,1],"span":[2867,9,17]},{"path":[4,16,2,15,3],"span":[2867,20,22]},{"path":[4,16,2,15,8],"span":[2867,23,2878,5]},{"path":[4,16,2,15,8,1160,1,0],"span":[2868,6,2872,7]},{"path":[4,16,2,15,8,1160,1,0,1],"span":[2869,8,29]},{"path":[4,16,2,15,8,1160,1,0,2],"span":[2870,8,49]},{"path":[4,16,2,15,8,1160,1,0,3],"span":[2871,8,53]},{"path":[4,16,2,15,8,1160,1,1],"span":[2873,6,2877,7]},{"path":[4,16,2,15,8,1160,1,1,1],"span":[2874,8,35]},{"path":[4,16,2,15,8,1160,1,1,2],"span":[2875,8,64]},{"path":[4,16,2,15,8,1160,1,1,3],"span":[2876,8,32]},{"path":[4,16,2,16],"span":[2891,4,2902,6],"leadingComments":" `ip` specifies that the field value must be a valid IP\n (v4 or v6) address, without surrounding square brackets for IPv6 addresses.\n If the field value isn't a valid IP address, an error message will be\n generated.\n\n ```proto\n message MyString {\n // value must be a valid IP address\n string value = 1 [(buf.validate.field).string.ip = true];\n }\n ```\n"},{"path":[4,16,2,16,5],"span":[2891,4,8]},{"path":[4,16,2,16,1],"span":[2891,9,11]},{"path":[4,16,2,16,3],"span":[2891,14,16]},{"path":[4,16,2,16,8],"span":[2891,17,2902,5]},{"path":[4,16,2,16,8,1160,1,0],"span":[2892,6,2896,7]},{"path":[4,16,2,16,8,1160,1,0,1],"span":[2893,8,23]},{"path":[4,16,2,16,8,1160,1,0,2],"span":[2894,8,51]},{"path":[4,16,2,16,8,1160,1,0,3],"span":[2895,8,47]},{"path":[4,16,2,16,8,1160,1,1],"span":[2897,6,2901,7]},{"path":[4,16,2,16,8,1160,1,1,1],"span":[2898,8,29]},{"path":[4,16,2,16,8,1160,1,1,2],"span":[2899,8,66]},{"path":[4,16,2,16,8,1160,1,1,3],"span":[2900,8,32]},{"path":[4,16,2,17],"span":[2914,4,2925,6],"leadingComments":" `ipv4` specifies that the field value must be a valid IPv4\n address. If the field value isn't a valid IPv4 address, an error message\n will be generated.\n\n ```proto\n message MyString {\n // value must be a valid IPv4 address\n string value = 1 [(buf.validate.field).string.ipv4 = true];\n }\n ```\n"},{"path":[4,16,2,17,5],"span":[2914,4,8]},{"path":[4,16,2,17,1],"span":[2914,9,13]},{"path":[4,16,2,17,3],"span":[2914,16,18]},{"path":[4,16,2,17,8],"span":[2914,19,2925,5]},{"path":[4,16,2,17,8,1160,1,0],"span":[2915,6,2919,7]},{"path":[4,16,2,17,8,1160,1,0,1],"span":[2916,8,25]},{"path":[4,16,2,17,8,1160,1,0,2],"span":[2917,8,53]},{"path":[4,16,2,17,8,1160,1,0,3],"span":[2918,8,48]},{"path":[4,16,2,17,8,1160,1,1],"span":[2920,6,2924,7]},{"path":[4,16,2,17,8,1160,1,1,1],"span":[2921,8,31]},{"path":[4,16,2,17,8,1160,1,1,2],"span":[2922,8,68]},{"path":[4,16,2,17,8,1160,1,1,3],"span":[2923,8,32]},{"path":[4,16,2,18],"span":[2937,4,2948,6],"leadingComments":" `ipv6` specifies that the field value must be a valid\n IPv6 address, without surrounding square brackets. If the field value is\n not a valid IPv6 address, an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid IPv6 address\n string value = 1 [(buf.validate.field).string.ipv6 = true];\n }\n ```\n"},{"path":[4,16,2,18,5],"span":[2937,4,8]},{"path":[4,16,2,18,1],"span":[2937,9,13]},{"path":[4,16,2,18,3],"span":[2937,16,18]},{"path":[4,16,2,18,8],"span":[2937,19,2948,5]},{"path":[4,16,2,18,8,1160,1,0],"span":[2938,6,2942,7]},{"path":[4,16,2,18,8,1160,1,0,1],"span":[2939,8,25]},{"path":[4,16,2,18,8,1160,1,0,2],"span":[2940,8,53]},{"path":[4,16,2,18,8,1160,1,0,3],"span":[2941,8,48]},{"path":[4,16,2,18,8,1160,1,1],"span":[2943,6,2947,7]},{"path":[4,16,2,18,8,1160,1,1,1],"span":[2944,8,31]},{"path":[4,16,2,18,8,1160,1,1,2],"span":[2945,8,68]},{"path":[4,16,2,18,8,1160,1,1,3],"span":[2946,8,32]},{"path":[4,16,2,19],"span":[2960,4,2971,6],"leadingComments":" `uri` specifies that the field value must be a valid,\n absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3). If the field value isn't a valid,\n absolute URI, an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid URI\n string value = 1 [(buf.validate.field).string.uri = true];\n }\n ```\n"},{"path":[4,16,2,19,5],"span":[2960,4,8]},{"path":[4,16,2,19,1],"span":[2960,9,12]},{"path":[4,16,2,19,3],"span":[2960,15,17]},{"path":[4,16,2,19,8],"span":[2960,18,2971,5]},{"path":[4,16,2,19,8,1160,1,0],"span":[2961,6,2965,7]},{"path":[4,16,2,19,8,1160,1,0,1],"span":[2962,8,24]},{"path":[4,16,2,19,8,1160,1,0,2],"span":[2963,8,44]},{"path":[4,16,2,19,8,1160,1,0,3],"span":[2964,8,48]},{"path":[4,16,2,19,8,1160,1,1],"span":[2966,6,2970,7]},{"path":[4,16,2,19,8,1160,1,1,1],"span":[2967,8,30]},{"path":[4,16,2,19,8,1160,1,1,2],"span":[2968,8,59]},{"path":[4,16,2,19,8,1160,1,1,3],"span":[2969,8,32]},{"path":[4,16,2,20],"span":[2983,4,2987,7],"leadingComments":" `uri_ref` specifies that the field value must be a valid URI\n as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute. If the\n field value isn't a valid URI, an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid URI\n string value = 1 [(buf.validate.field).string.uri_ref = true];\n }\n ```\n"},{"path":[4,16,2,20,5],"span":[2983,4,8]},{"path":[4,16,2,20,1],"span":[2983,9,16]},{"path":[4,16,2,20,3],"span":[2983,19,21]},{"path":[4,16,2,20,8],"span":[2983,22,2987,6]},{"path":[4,16,2,20,8,1160,1,0],"span":[2983,23,2987,5]},{"path":[4,16,2,20,8,1160,1,0,1],"span":[2984,6,26]},{"path":[4,16,2,20,8,1160,1,0,2],"span":[2985,6,42]},{"path":[4,16,2,20,8,1160,1,0,3],"span":[2986,6,35]},{"path":[4,16,2,21],"span":[3001,4,3012,6],"leadingComments":" `address` specifies that the field value must be either a valid hostname\n as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5)\n (which doesn't support internationalized domain names or IDNs) or a valid\n IP (v4 or v6). If the field value isn't a valid hostname or IP, an error\n message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid hostname, or ip address\n string value = 1 [(buf.validate.field).string.address = true];\n }\n ```\n"},{"path":[4,16,2,21,5],"span":[3001,4,8]},{"path":[4,16,2,21,1],"span":[3001,9,16]},{"path":[4,16,2,21,3],"span":[3001,19,21]},{"path":[4,16,2,21,8],"span":[3001,22,3012,5]},{"path":[4,16,2,21,8,1160,1,0],"span":[3002,6,3006,7]},{"path":[4,16,2,21,8,1160,1,0,1],"span":[3003,8,28]},{"path":[4,16,2,21,8,1160,1,0,2],"span":[3004,8,64]},{"path":[4,16,2,21,8,1160,1,0,3],"span":[3005,8,68]},{"path":[4,16,2,21,8,1160,1,1],"span":[3007,6,3011,7]},{"path":[4,16,2,21,8,1160,1,1,1],"span":[3008,8,34]},{"path":[4,16,2,21,8,1160,1,1,2],"span":[3009,8,79]},{"path":[4,16,2,21,8,1160,1,1,3],"span":[3010,8,32]},{"path":[4,16,2,22],"span":[3024,4,3035,6],"leadingComments":" `uuid` specifies that the field value must be a valid UUID as defined by\n [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2). If the\n field value isn't a valid UUID, an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid UUID\n string value = 1 [(buf.validate.field).string.uuid = true];\n }\n ```\n"},{"path":[4,16,2,22,5],"span":[3024,4,8]},{"path":[4,16,2,22,1],"span":[3024,9,13]},{"path":[4,16,2,22,3],"span":[3024,16,18]},{"path":[4,16,2,22,8],"span":[3024,19,3035,5]},{"path":[4,16,2,22,8,1160,1,0],"span":[3025,6,3029,7]},{"path":[4,16,2,22,8,1160,1,0,1],"span":[3026,8,25]},{"path":[4,16,2,22,8,1160,1,0,2],"span":[3027,8,45]},{"path":[4,16,2,22,8,1160,1,0,3],"span":[3028,8,129]},{"path":[4,16,2,22,8,1160,1,1],"span":[3030,6,3034,7]},{"path":[4,16,2,22,8,1160,1,1,1],"span":[3031,8,31]},{"path":[4,16,2,22,8,1160,1,1,2],"span":[3032,8,60]},{"path":[4,16,2,22,8,1160,1,1,3],"span":[3033,8,32]},{"path":[4,16,2,23],"span":[3048,4,3059,6],"leadingComments":" `tuuid` (trimmed UUID) specifies that the field value must be a valid UUID as\n defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2) with all dashes\n omitted. If the field value isn't a valid UUID without dashes, an error message\n will be generated.\n\n ```proto\n message MyString {\n // value must be a valid trimmed UUID\n string value = 1 [(buf.validate.field).string.tuuid = true];\n }\n ```\n"},{"path":[4,16,2,23,5],"span":[3048,4,8]},{"path":[4,16,2,23,1],"span":[3048,9,14]},{"path":[4,16,2,23,3],"span":[3048,17,19]},{"path":[4,16,2,23,8],"span":[3048,20,3059,5]},{"path":[4,16,2,23,8,1160,1,0],"span":[3049,6,3053,7]},{"path":[4,16,2,23,8,1160,1,0,1],"span":[3050,8,26]},{"path":[4,16,2,23,8,1160,1,0,2],"span":[3051,8,53]},{"path":[4,16,2,23,8,1160,1,0,3],"span":[3052,8,69]},{"path":[4,16,2,23,8,1160,1,1],"span":[3054,6,3058,7]},{"path":[4,16,2,23,8,1160,1,1,1],"span":[3055,8,32]},{"path":[4,16,2,23,8,1160,1,1,2],"span":[3056,8,68]},{"path":[4,16,2,23,8,1160,1,1,3],"span":[3057,8,32]},{"path":[4,16,2,24],"span":[3072,4,3083,6],"leadingComments":" `ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6)\n address with prefix length. If the field value isn't a valid IP with prefix\n length, an error message will be generated.\n\n\n ```proto\n message MyString {\n // value must be a valid IP with prefix length\n string value = 1 [(buf.validate.field).string.ip_with_prefixlen = true];\n }\n ```\n"},{"path":[4,16,2,24,5],"span":[3072,4,8]},{"path":[4,16,2,24,1],"span":[3072,9,26]},{"path":[4,16,2,24,3],"span":[3072,29,31]},{"path":[4,16,2,24,8],"span":[3072,32,3083,5]},{"path":[4,16,2,24,8,1160,1,0],"span":[3073,6,3077,7]},{"path":[4,16,2,24,8,1160,1,0,1],"span":[3074,8,38]},{"path":[4,16,2,24,8,1160,1,0,2],"span":[3075,8,50]},{"path":[4,16,2,24,8,1160,1,0,3],"span":[3076,8,53]},{"path":[4,16,2,24,8,1160,1,1],"span":[3078,6,3082,7]},{"path":[4,16,2,24,8,1160,1,1,1],"span":[3079,8,44]},{"path":[4,16,2,24,8,1160,1,1,2],"span":[3080,8,65]},{"path":[4,16,2,24,8,1160,1,1,3],"span":[3081,8,32]},{"path":[4,16,2,25],"span":[3096,4,3107,6],"leadingComments":" `ipv4_with_prefixlen` specifies that the field value must be a valid\n IPv4 address with prefix.\n If the field value isn't a valid IPv4 address with prefix length,\n an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid IPv4 address with prefix length\n string value = 1 [(buf.validate.field).string.ipv4_with_prefixlen = true];\n }\n ```\n"},{"path":[4,16,2,25,5],"span":[3096,4,8]},{"path":[4,16,2,25,1],"span":[3096,9,28]},{"path":[4,16,2,25,3],"span":[3096,31,33]},{"path":[4,16,2,25,8],"span":[3096,34,3107,5]},{"path":[4,16,2,25,8,1160,1,0],"span":[3097,6,3101,7]},{"path":[4,16,2,25,8,1160,1,0,1],"span":[3098,8,40]},{"path":[4,16,2,25,8,1160,1,0,2],"span":[3099,8,72]},{"path":[4,16,2,25,8,1160,1,0,3],"span":[3100,8,54]},{"path":[4,16,2,25,8,1160,1,1],"span":[3102,6,3106,7]},{"path":[4,16,2,25,8,1160,1,1,1],"span":[3103,8,46]},{"path":[4,16,2,25,8,1160,1,1,2],"span":[3104,8,87]},{"path":[4,16,2,25,8,1160,1,1,3],"span":[3105,8,32]},{"path":[4,16,2,26],"span":[3120,4,3131,6],"leadingComments":" `ipv6_with_prefixlen` specifies that the field value must be a valid\n IPv6 address with prefix length.\n If the field value is not a valid IPv6 address with prefix length,\n an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid IPv6 address prefix length\n string value = 1 [(buf.validate.field).string.ipv6_with_prefixlen = true];\n }\n ```\n"},{"path":[4,16,2,26,5],"span":[3120,4,8]},{"path":[4,16,2,26,1],"span":[3120,9,28]},{"path":[4,16,2,26,3],"span":[3120,31,33]},{"path":[4,16,2,26,8],"span":[3120,34,3131,5]},{"path":[4,16,2,26,8,1160,1,0],"span":[3121,6,3125,7]},{"path":[4,16,2,26,8,1160,1,0,1],"span":[3122,8,40]},{"path":[4,16,2,26,8,1160,1,0,2],"span":[3123,8,72]},{"path":[4,16,2,26,8,1160,1,0,3],"span":[3124,8,54]},{"path":[4,16,2,26,8,1160,1,1],"span":[3126,6,3130,7]},{"path":[4,16,2,26,8,1160,1,1,1],"span":[3127,8,46]},{"path":[4,16,2,26,8,1160,1,1,2],"span":[3128,8,87]},{"path":[4,16,2,26,8,1160,1,1,3],"span":[3129,8,32]},{"path":[4,16,2,27],"span":[3144,4,3155,6],"leadingComments":" `ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix.\n If the field value isn't a valid IP prefix, an error message will be\n generated. The prefix must have all zeros for the masked bits of the prefix (e.g.,\n `127.0.0.0/16`, not `127.0.0.1/16`).\n\n ```proto\n message MyString {\n // value must be a valid IP prefix\n string value = 1 [(buf.validate.field).string.ip_prefix = true];\n }\n ```\n"},{"path":[4,16,2,27,5],"span":[3144,4,8]},{"path":[4,16,2,27,1],"span":[3144,9,18]},{"path":[4,16,2,27,3],"span":[3144,21,23]},{"path":[4,16,2,27,8],"span":[3144,24,3155,5]},{"path":[4,16,2,27,8,1160,1,0],"span":[3145,6,3149,7]},{"path":[4,16,2,27,8,1160,1,0,1],"span":[3146,8,30]},{"path":[4,16,2,27,8,1160,1,0,2],"span":[3147,8,50]},{"path":[4,16,2,27,8,1160,1,0,3],"span":[3148,8,57]},{"path":[4,16,2,27,8,1160,1,1],"span":[3150,6,3154,7]},{"path":[4,16,2,27,8,1160,1,1,1],"span":[3151,8,36]},{"path":[4,16,2,27,8,1160,1,1,2],"span":[3152,8,65]},{"path":[4,16,2,27,8,1160,1,1,3],"span":[3153,8,32]},{"path":[4,16,2,28],"span":[3168,4,3179,6],"leadingComments":" `ipv4_prefix` specifies that the field value must be a valid IPv4\n prefix. If the field value isn't a valid IPv4 prefix, an error message\n will be generated. The prefix must have all zeros for the masked bits of\n the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`).\n\n ```proto\n message MyString {\n // value must be a valid IPv4 prefix\n string value = 1 [(buf.validate.field).string.ipv4_prefix = true];\n }\n ```\n"},{"path":[4,16,2,28,5],"span":[3168,4,8]},{"path":[4,16,2,28,1],"span":[3168,9,20]},{"path":[4,16,2,28,3],"span":[3168,23,25]},{"path":[4,16,2,28,8],"span":[3168,26,3179,5]},{"path":[4,16,2,28,8,1160,1,0],"span":[3169,6,3173,7]},{"path":[4,16,2,28,8,1160,1,0,1],"span":[3170,8,32]},{"path":[4,16,2,28,8,1160,1,0,2],"span":[3171,8,52]},{"path":[4,16,2,28,8,1160,1,0,3],"span":[3172,8,60]},{"path":[4,16,2,28,8,1160,1,1],"span":[3174,6,3178,7]},{"path":[4,16,2,28,8,1160,1,1,1],"span":[3175,8,38]},{"path":[4,16,2,28,8,1160,1,1,2],"span":[3176,8,67]},{"path":[4,16,2,28,8,1160,1,1,3],"span":[3177,8,32]},{"path":[4,16,2,29],"span":[3192,4,3203,6],"leadingComments":" `ipv6_prefix` specifies that the field value must be a valid IPv6 prefix.\n If the field value is not a valid IPv6 prefix, an error message will be\n generated. The prefix must have all zeros for the masked bits of the prefix\n (e.g., `2001:db8::/48`, not `2001:db8::1/48`).\n\n ```proto\n message MyString {\n // value must be a valid IPv6 prefix\n string value = 1 [(buf.validate.field).string.ipv6_prefix = true];\n }\n ```\n"},{"path":[4,16,2,29,5],"span":[3192,4,8]},{"path":[4,16,2,29,1],"span":[3192,9,20]},{"path":[4,16,2,29,3],"span":[3192,23,25]},{"path":[4,16,2,29,8],"span":[3192,26,3203,5]},{"path":[4,16,2,29,8,1160,1,0],"span":[3193,6,3197,7]},{"path":[4,16,2,29,8,1160,1,0,1],"span":[3194,8,32]},{"path":[4,16,2,29,8,1160,1,0,2],"span":[3195,8,52]},{"path":[4,16,2,29,8,1160,1,0,3],"span":[3196,8,60]},{"path":[4,16,2,29,8,1160,1,1],"span":[3198,6,3202,7]},{"path":[4,16,2,29,8,1160,1,1,1],"span":[3199,8,38]},{"path":[4,16,2,29,8,1160,1,1,2],"span":[3200,8,67]},{"path":[4,16,2,29,8,1160,1,1,3],"span":[3201,8,32]},{"path":[4,16,2,30],"span":[3209,4,3220,6],"leadingComments":" `host_and_port` specifies the field value must be a valid host and port\n pair. The host must be a valid hostname or IP address while the port\n must be in the range of 0-65535, inclusive. IPv6 addresses must be delimited\n with square brackets (e.g., `[::1]:1234`).\n"},{"path":[4,16,2,30,5],"span":[3209,4,8]},{"path":[4,16,2,30,1],"span":[3209,9,22]},{"path":[4,16,2,30,3],"span":[3209,25,27]},{"path":[4,16,2,30,8],"span":[3209,28,3220,5]},{"path":[4,16,2,30,8,1160,1,0],"span":[3210,6,3214,7]},{"path":[4,16,2,30,8,1160,1,0,1],"span":[3211,8,34]},{"path":[4,16,2,30,8,1160,1,0,2],"span":[3212,8,84]},{"path":[4,16,2,30,8,1160,1,0,3],"span":[3213,8,60]},{"path":[4,16,2,30,8,1160,1,1],"span":[3215,6,3219,7]},{"path":[4,16,2,30,8,1160,1,1,1],"span":[3216,8,40]},{"path":[4,16,2,30,8,1160,1,1,2],"span":[3217,8,74]},{"path":[4,16,2,30,8,1160,1,1,3],"span":[3218,8,32]},{"path":[4,16,2,31],"span":[3242,4,3264,6],"leadingComments":" `well_known_regex` specifies a common well-known pattern\n defined as a regex. If the field value doesn't match the well-known\n regex, an error message will be generated.\n\n ```proto\n message MyString {\n // value must be a valid HTTP header value\n string value = 1 [(buf.validate.field).string.well_known_regex = KNOWN_REGEX_HTTP_HEADER_VALUE];\n }\n ```\n\n #### KnownRegex\n\n `well_known_regex` contains some well-known patterns.\n\n | Name | Number | Description |\n |-------------------------------|--------|-------------------------------------------|\n | KNOWN_REGEX_UNSPECIFIED | 0 | |\n | KNOWN_REGEX_HTTP_HEADER_NAME | 1 | HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2) |\n | KNOWN_REGEX_HTTP_HEADER_VALUE | 2 | HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4) |\n"},{"path":[4,16,2,31,6],"span":[3242,4,14]},{"path":[4,16,2,31,1],"span":[3242,15,31]},{"path":[4,16,2,31,3],"span":[3242,34,36]},{"path":[4,16,2,31,8],"span":[3242,37,3264,5]},{"path":[4,16,2,31,8,1160,1,0],"span":[3243,6,3250,7]},{"path":[4,16,2,31,8,1160,1,0,1],"span":[3244,8,49]},{"path":[4,16,2,31,8,1160,1,0,2],"span":[3245,8,57]},{"path":[4,16,2,31,8,1160,1,0,3],"span":[3246,8,3249,42]},{"path":[4,16,2,31,8,1160,1,1],"span":[3251,6,3255,7]},{"path":[4,16,2,31,8,1160,1,1,1],"span":[3252,8,55]},{"path":[4,16,2,31,8,1160,1,1,2],"span":[3253,8,72]},{"path":[4,16,2,31,8,1160,1,1,3],"span":[3254,8,63]},{"path":[4,16,2,31,8,1160,1,2],"span":[3256,6,3263,7]},{"path":[4,16,2,31,8,1160,1,2,1],"span":[3257,8,50]},{"path":[4,16,2,31,8,1160,1,2,2],"span":[3258,8,58]},{"path":[4,16,2,31,8,1160,1,2,3],"span":[3259,8,3262,42]},{"path":[4,16,2,32],"span":[3279,2,28],"leadingComments":" This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to\n enable strict header validation. By default, this is true, and HTTP header\n validations are [RFC-compliant](https://tools.ietf.org/html/rfc7230#section-3). Setting to false will enable looser\n validations that only disallow `\\r\\n\\0` characters, which can be used to\n bypass header matching rules.\n\n ```proto\n message MyString {\n // The field `value` must have be a valid HTTP headers, but not enforced with strict rules.\n string value = 1 [(buf.validate.field).string.strict = false];\n }\n ```\n"},{"path":[4,16,2,32,4],"span":[3279,2,10]},{"path":[4,16,2,32,5],"span":[3279,11,15]},{"path":[4,16,2,32,1],"span":[3279,16,22]},{"path":[4,16,2,32,3],"span":[3279,25,27]},{"path":[5,1],"span":[3283,0,3291,1],"leadingComments":" WellKnownRegex contain some well-known patterns.\n"},{"path":[5,1,1],"span":[3283,5,15]},{"path":[5,1,2,0],"span":[3284,2,30]},{"path":[5,1,2,0,1],"span":[3284,2,25]},{"path":[5,1,2,0,2],"span":[3284,28,29]},{"path":[5,1,2,1],"span":[3287,2,35],"leadingComments":" HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2).\n"},{"path":[5,1,2,1,1],"span":[3287,2,30]},{"path":[5,1,2,1,2],"span":[3287,33,34]},{"path":[5,1,2,2],"span":[3290,2,36],"leadingComments":" HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4).\n"},{"path":[5,1,2,2,1],"span":[3290,2,31]},{"path":[5,1,2,2,2],"span":[3290,34,35]},{"path":[4,17],"span":[3295,0,3515,1],"leadingComments":" BytesRules describe the constraints applied to `bytes` values. These rules\n may also be applied to the `google.protobuf.BytesValue` Well-Known-Type.\n"},{"path":[4,17,1],"span":[3295,8,18]},{"path":[4,17,2,0],"span":[3305,2,3308,5],"leadingComments":" `const` requires the field value to exactly match the specified bytes\n value. If the field value doesn't match, an error message is generated.\n\n ```proto\n message MyBytes {\n // value must be \"\\x01\\x02\\x03\\x04\"\n bytes value = 1 [(buf.validate.field).bytes.const = \"\\x01\\x02\\x03\\x04\"];\n }\n ```\n"},{"path":[4,17,2,0,4],"span":[3305,2,10]},{"path":[4,17,2,0,5],"span":[3305,11,16]},{"path":[4,17,2,0,1],"span":[3305,17,22]},{"path":[4,17,2,0,3],"span":[3305,25,26]},{"path":[4,17,2,0,8],"span":[3305,27,3308,4]},{"path":[4,17,2,0,8,1160,1,0],"span":[3305,28,3308,3]},{"path":[4,17,2,0,8,1160,1,0,1],"span":[3306,4,21]},{"path":[4,17,2,0,8,1160,1,0,3],"span":[3307,4,85]},{"path":[4,17,2,1],"span":[3319,2,3322,5],"leadingComments":" `len` requires the field value to have the specified length in bytes.\n If the field value doesn't match, an error message is generated.\n\n ```proto\n message MyBytes {\n // value length must be 4 bytes.\n optional bytes value = 1 [(buf.validate.field).bytes.len = 4];\n }\n ```\n"},{"path":[4,17,2,1,4],"span":[3319,2,10]},{"path":[4,17,2,1,5],"span":[3319,11,17]},{"path":[4,17,2,1,1],"span":[3319,18,21]},{"path":[4,17,2,1,3],"span":[3319,24,26]},{"path":[4,17,2,1,8],"span":[3319,27,3322,4]},{"path":[4,17,2,1,8,1160,1,0],"span":[3319,28,3322,3]},{"path":[4,17,2,1,8,1160,1,0,1],"span":[3320,4,19]},{"path":[4,17,2,1,8,1160,1,0,3],"span":[3321,4,107]},{"path":[4,17,2,2],"span":[3334,2,3337,5],"leadingComments":" `min_len` requires the field value to have at least the specified minimum\n length in bytes.\n If the field value doesn't meet the requirement, an error message is generated.\n\n ```proto\n message MyBytes {\n // value length must be at least 2 bytes.\n optional bytes value = 1 [(buf.validate.field).bytes.min_len = 2];\n }\n ```\n"},{"path":[4,17,2,2,4],"span":[3334,2,10]},{"path":[4,17,2,2,5],"span":[3334,11,17]},{"path":[4,17,2,2,1],"span":[3334,18,25]},{"path":[4,17,2,2,3],"span":[3334,28,29]},{"path":[4,17,2,2,8],"span":[3334,30,3337,4]},{"path":[4,17,2,2,8,1160,1,0],"span":[3334,31,3337,3]},{"path":[4,17,2,2,8,1160,1,0,1],"span":[3335,4,23]},{"path":[4,17,2,2,8,1160,1,0,3],"span":[3336,4,123]},{"path":[4,17,2,3],"span":[3349,2,3352,5],"leadingComments":" `max_len` requires the field value to have at most the specified maximum\n length in bytes.\n If the field value exceeds the requirement, an error message is generated.\n\n ```proto\n message MyBytes {\n // value must be at most 6 bytes.\n optional bytes value = 1 [(buf.validate.field).bytes.max_len = 6];\n }\n ```\n"},{"path":[4,17,2,3,4],"span":[3349,2,10]},{"path":[4,17,2,3,5],"span":[3349,11,17]},{"path":[4,17,2,3,1],"span":[3349,18,25]},{"path":[4,17,2,3,3],"span":[3349,28,29]},{"path":[4,17,2,3,8],"span":[3349,30,3352,4]},{"path":[4,17,2,3,8,1160,1,0],"span":[3349,31,3352,3]},{"path":[4,17,2,3,8,1160,1,0,1],"span":[3350,4,23]},{"path":[4,17,2,3,8,1160,1,0,3],"span":[3351,4,115]},{"path":[4,17,2,4],"span":[3366,2,3369,5],"leadingComments":" `pattern` requires the field value to match the specified regular\n expression ([RE2 syntax](https://github.com/google/re2/wiki/Syntax)).\n The value of the field must be valid UTF-8 or validation will fail with a\n runtime error.\n If the field value doesn't match the pattern, an error message is generated.\n\n ```proto\n message MyBytes {\n // value must match regex pattern \"^[a-zA-Z0-9]+$\".\n optional bytes value = 1 [(buf.validate.field).bytes.pattern = \"^[a-zA-Z0-9]+$\"];\n }\n ```\n"},{"path":[4,17,2,4,4],"span":[3366,2,10]},{"path":[4,17,2,4,5],"span":[3366,11,17]},{"path":[4,17,2,4,1],"span":[3366,18,25]},{"path":[4,17,2,4,3],"span":[3366,28,29]},{"path":[4,17,2,4,8],"span":[3366,30,3369,4]},{"path":[4,17,2,4,8,1160,1,0],"span":[3366,31,3369,3]},{"path":[4,17,2,4,8,1160,1,0,1],"span":[3367,4,23]},{"path":[4,17,2,4,8,1160,1,0,3],"span":[3368,4,123]},{"path":[4,17,2,5],"span":[3381,2,3384,5],"leadingComments":" `prefix` requires the field value to have the specified bytes at the\n beginning of the string.\n If the field value doesn't meet the requirement, an error message is generated.\n\n ```proto\n message MyBytes {\n // value does not have prefix \\x01\\x02\n optional bytes value = 1 [(buf.validate.field).bytes.prefix = \"\\x01\\x02\"];\n }\n ```\n"},{"path":[4,17,2,5,4],"span":[3381,2,10]},{"path":[4,17,2,5,5],"span":[3381,11,16]},{"path":[4,17,2,5,1],"span":[3381,17,23]},{"path":[4,17,2,5,3],"span":[3381,26,27]},{"path":[4,17,2,5,8],"span":[3381,28,3384,4]},{"path":[4,17,2,5,8,1160,1,0],"span":[3381,29,3384,3]},{"path":[4,17,2,5,8,1160,1,0,1],"span":[3382,4,22]},{"path":[4,17,2,5,8,1160,1,0,3],"span":[3383,4,110]},{"path":[4,17,2,6],"span":[3396,2,3399,5],"leadingComments":" `suffix` requires the field value to have the specified bytes at the end\n of the string.\n If the field value doesn't meet the requirement, an error message is generated.\n\n ```proto\n message MyBytes {\n // value does not have suffix \\x03\\x04\n optional bytes value = 1 [(buf.validate.field).bytes.suffix = \"\\x03\\x04\"];\n }\n ```\n"},{"path":[4,17,2,6,4],"span":[3396,2,10]},{"path":[4,17,2,6,5],"span":[3396,11,16]},{"path":[4,17,2,6,1],"span":[3396,17,23]},{"path":[4,17,2,6,3],"span":[3396,26,27]},{"path":[4,17,2,6,8],"span":[3396,28,3399,4]},{"path":[4,17,2,6,8,1160,1,0],"span":[3396,29,3399,3]},{"path":[4,17,2,6,8,1160,1,0,1],"span":[3397,4,22]},{"path":[4,17,2,6,8,1160,1,0,3],"span":[3398,4,108]},{"path":[4,17,2,7],"span":[3411,2,3414,5],"leadingComments":" `contains` requires the field value to have the specified bytes anywhere in\n the string.\n If the field value doesn't meet the requirement, an error message is generated.\n\n ```protobuf\n message MyBytes {\n // value does not contain \\x02\\x03\n optional bytes value = 1 [(buf.validate.field).bytes.contains = \"\\x02\\x03\"];\n }\n ```\n"},{"path":[4,17,2,7,4],"span":[3411,2,10]},{"path":[4,17,2,7,5],"span":[3411,11,16]},{"path":[4,17,2,7,1],"span":[3411,17,25]},{"path":[4,17,2,7,3],"span":[3411,28,29]},{"path":[4,17,2,7,8],"span":[3411,30,3414,4]},{"path":[4,17,2,7,8,1160,1,0],"span":[3411,31,3414,3]},{"path":[4,17,2,7,8,1160,1,0,1],"span":[3412,4,24]},{"path":[4,17,2,7,8,1160,1,0,3],"span":[3413,4,108]},{"path":[4,17,2,8],"span":[3426,2,3429,5],"leadingComments":" `in` requires the field value to be equal to one of the specified\n values. If the field value doesn't match any of the specified values, an\n error message is generated.\n\n ```protobuf\n message MyBytes {\n // value must in [\"\\x01\\x02\", \"\\x02\\x03\", \"\\x03\\x04\"]\n optional bytes value = 1 [(buf.validate.field).bytes.in = {\"\\x01\\x02\", \"\\x02\\x03\", \"\\x03\\x04\"}];\n }\n ```\n"},{"path":[4,17,2,8,4],"span":[3426,2,10]},{"path":[4,17,2,8,5],"span":[3426,11,16]},{"path":[4,17,2,8,1],"span":[3426,17,19]},{"path":[4,17,2,8,3],"span":[3426,22,23]},{"path":[4,17,2,8,8],"span":[3426,24,3429,4]},{"path":[4,17,2,8,8,1160,1,0],"span":[3426,25,3429,3]},{"path":[4,17,2,8,8,1160,1,0,1],"span":[3427,4,18]},{"path":[4,17,2,8,8,1160,1,0,3],"span":[3428,4,137]},{"path":[4,17,2,9],"span":[3442,2,3445,5],"leadingComments":" `not_in` requires the field value to be not equal to any of the specified\n values.\n If the field value matches any of the specified values, an error message is\n generated.\n\n ```proto\n message MyBytes {\n // value must not in [\"\\x01\\x02\", \"\\x02\\x03\", \"\\x03\\x04\"]\n optional bytes value = 1 [(buf.validate.field).bytes.not_in = {\"\\x01\\x02\", \"\\x02\\x03\", \"\\x03\\x04\"}];\n }\n ```\n"},{"path":[4,17,2,9,4],"span":[3442,2,10]},{"path":[4,17,2,9,5],"span":[3442,11,16]},{"path":[4,17,2,9,1],"span":[3442,17,23]},{"path":[4,17,2,9,3],"span":[3442,26,27]},{"path":[4,17,2,9,8],"span":[3442,28,3445,4]},{"path":[4,17,2,9,8,1160,1,0],"span":[3442,29,3445,3]},{"path":[4,17,2,9,8,1160,1,0,1],"span":[3443,4,22]},{"path":[4,17,2,9,8,1160,1,0,3],"span":[3444,4,99]},{"path":[4,17,8,0],"span":[3449,2,3514,3],"leadingComments":" WellKnown rules provide advanced constraints against common byte\n patterns\n"},{"path":[4,17,8,0,1],"span":[3449,8,18]},{"path":[4,17,2,10],"span":[3459,4,3470,6],"leadingComments":" `ip` ensures that the field `value` is a valid IP address (v4 or v6) in byte format.\n If the field value doesn't meet this constraint, an error message is generated.\n\n ```proto\n message MyBytes {\n // value must be a valid IP address\n optional bytes value = 1 [(buf.validate.field).bytes.ip = true];\n }\n ```\n"},{"path":[4,17,2,10,5],"span":[3459,4,8]},{"path":[4,17,2,10,1],"span":[3459,9,11]},{"path":[4,17,2,10,3],"span":[3459,14,16]},{"path":[4,17,2,10,8],"span":[3459,17,3470,5]},{"path":[4,17,2,10,8,1160,1,0],"span":[3460,6,3464,7]},{"path":[4,17,2,10,8,1160,1,0,1],"span":[3461,8,22]},{"path":[4,17,2,10,8,1160,1,0,2],"span":[3462,8,51]},{"path":[4,17,2,10,8,1160,1,0,3],"span":[3463,8,79]},{"path":[4,17,2,10,8,1160,1,1],"span":[3465,6,3469,7]},{"path":[4,17,2,10,8,1160,1,1,1],"span":[3466,8,28]},{"path":[4,17,2,10,8,1160,1,1,2],"span":[3467,8,66]},{"path":[4,17,2,10,8,1160,1,1,3],"span":[3468,8,38]},{"path":[4,17,2,11],"span":[3481,4,3492,6],"leadingComments":" `ipv4` ensures that the field `value` is a valid IPv4 address in byte format.\n If the field value doesn't meet this constraint, an error message is generated.\n\n ```proto\n message MyBytes {\n // value must be a valid IPv4 address\n optional bytes value = 1 [(buf.validate.field).bytes.ipv4 = true];\n }\n ```\n"},{"path":[4,17,2,11,5],"span":[3481,4,8]},{"path":[4,17,2,11,1],"span":[3481,9,13]},{"path":[4,17,2,11,3],"span":[3481,16,18]},{"path":[4,17,2,11,8],"span":[3481,19,3492,5]},{"path":[4,17,2,11,8,1160,1,0],"span":[3482,6,3486,7]},{"path":[4,17,2,11,8,1160,1,0,1],"span":[3483,8,24]},{"path":[4,17,2,11,8,1160,1,0,2],"span":[3484,8,53]},{"path":[4,17,2,11,8,1160,1,0,3],"span":[3485,8,58]},{"path":[4,17,2,11,8,1160,1,1],"span":[3487,6,3491,7]},{"path":[4,17,2,11,8,1160,1,1,1],"span":[3488,8,30]},{"path":[4,17,2,11,8,1160,1,1,2],"span":[3489,8,68]},{"path":[4,17,2,11,8,1160,1,1,3],"span":[3490,8,38]},{"path":[4,17,2,12],"span":[3502,4,3513,6],"leadingComments":" `ipv6` ensures that the field `value` is a valid IPv6 address in byte format.\n If the field value doesn't meet this constraint, an error message is generated.\n ```proto\n message MyBytes {\n // value must be a valid IPv6 address\n optional bytes value = 1 [(buf.validate.field).bytes.ipv6 = true];\n }\n ```\n"},{"path":[4,17,2,12,5],"span":[3502,4,8]},{"path":[4,17,2,12,1],"span":[3502,9,13]},{"path":[4,17,2,12,3],"span":[3502,16,18]},{"path":[4,17,2,12,8],"span":[3502,19,3513,5]},{"path":[4,17,2,12,8,1160,1,0],"span":[3503,6,3507,7]},{"path":[4,17,2,12,8,1160,1,0,1],"span":[3504,8,24]},{"path":[4,17,2,12,8,1160,1,0,2],"span":[3505,8,53]},{"path":[4,17,2,12,8,1160,1,0,3],"span":[3506,8,59]},{"path":[4,17,2,12,8,1160,1,1],"span":[3508,6,3512,7]},{"path":[4,17,2,12,8,1160,1,1,1],"span":[3509,8,30]},{"path":[4,17,2,12,8,1160,1,1,2],"span":[3510,8,68]},{"path":[4,17,2,12,8,1160,1,1,3],"span":[3511,8,38]},{"path":[4,18],"span":[3518,0,3597,1],"leadingComments":" EnumRules describe the constraints applied to `enum` values.\n"},{"path":[4,18,1],"span":[3518,8,17]},{"path":[4,18,2,0],"span":[3534,2,3537,5],"leadingComments":" `const` requires the field value to exactly match the specified enum value.\n If the field value doesn't match, an error message is generated.\n\n ```proto\n enum MyEnum {\n MY_ENUM_UNSPECIFIED = 0;\n MY_ENUM_VALUE1 = 1;\n MY_ENUM_VALUE2 = 2;\n }\n\n message MyMessage {\n // The field `value` must be exactly MY_ENUM_VALUE1.\n MyEnum value = 1 [(buf.validate.field).enum.const = 1];\n }\n ```\n"},{"path":[4,18,2,0,4],"span":[3534,2,10]},{"path":[4,18,2,0,5],"span":[3534,11,16]},{"path":[4,18,2,0,1],"span":[3534,17,22]},{"path":[4,18,2,0,3],"span":[3534,25,26]},{"path":[4,18,2,0,8],"span":[3534,27,3537,4]},{"path":[4,18,2,0,8,1160,1,0],"span":[3534,28,3537,3]},{"path":[4,18,2,0,8,1160,1,0,1],"span":[3535,4,20]},{"path":[4,18,2,0,8,1160,1,0,3],"span":[3536,4,88]},{"path":[4,18,2,1],"span":[3554,2,33],"leadingComments":" `defined_only` requires the field value to be one of the defined values for\n this enum, failing on any undefined value.\n\n ```proto\n enum MyEnum {\n MY_ENUM_UNSPECIFIED = 0;\n MY_ENUM_VALUE1 = 1;\n MY_ENUM_VALUE2 = 2;\n }\n\n message MyMessage {\n // The field `value` must be a defined value of MyEnum.\n MyEnum value = 1 [(buf.validate.field).enum.defined_only = true];\n }\n ```\n"},{"path":[4,18,2,1,4],"span":[3554,2,10]},{"path":[4,18,2,1,5],"span":[3554,11,15]},{"path":[4,18,2,1,1],"span":[3554,16,28]},{"path":[4,18,2,1,3],"span":[3554,31,32]},{"path":[4,18,2,2],"span":[3572,2,3575,5],"leadingComments":" `in` requires the field value to be equal to one of the\nspecified enum values. If the field value doesn't match any of the\nspecified values, an error message is generated.\n\n ```proto\n enum MyEnum {\n MY_ENUM_UNSPECIFIED = 0;\n MY_ENUM_VALUE1 = 1;\n MY_ENUM_VALUE2 = 2;\n }\n\n message MyMessage {\n // The field `value` must be equal to one of the specified values.\n MyEnum value = 1 [(buf.validate.field).enum = { in: [1, 2]}];\n }\n ```\n"},{"path":[4,18,2,2,4],"span":[3572,2,10]},{"path":[4,18,2,2,5],"span":[3572,11,16]},{"path":[4,18,2,2,1],"span":[3572,17,19]},{"path":[4,18,2,2,3],"span":[3572,22,23]},{"path":[4,18,2,2,8],"span":[3572,24,3575,4]},{"path":[4,18,2,2,8,1160,1,0],"span":[3572,25,3575,3]},{"path":[4,18,2,2,8,1160,1,0,1],"span":[3573,4,17]},{"path":[4,18,2,2,8,1160,1,0,3],"span":[3574,4,106]},{"path":[4,18,2,3],"span":[3593,2,3596,5],"leadingComments":" `not_in` requires the field value to be not equal to any of the\nspecified enum values. If the field value matches one of the specified\n values, an error message is generated.\n\n ```proto\n enum MyEnum {\n MY_ENUM_UNSPECIFIED = 0;\n MY_ENUM_VALUE1 = 1;\n MY_ENUM_VALUE2 = 2;\n }\n\n message MyMessage {\n // The field `value` must not be equal to any of the specified values.\n MyEnum value = 1 [(buf.validate.field).enum = { not_in: [1, 2]}];\n }\n ```\n"},{"path":[4,18,2,3,4],"span":[3593,2,10]},{"path":[4,18,2,3,5],"span":[3593,11,16]},{"path":[4,18,2,3,1],"span":[3593,17,23]},{"path":[4,18,2,3,3],"span":[3593,26,27]},{"path":[4,18,2,3,8],"span":[3593,28,3596,4]},{"path":[4,18,2,3,8,1160,1,0],"span":[3593,29,3596,3]},{"path":[4,18,2,3,8,1160,1,0,1],"span":[3594,4,21]},{"path":[4,18,2,3,8,1160,1,0,3],"span":[3595,4,99]},{"path":[4,19],"span":[3600,0,3665,1],"leadingComments":" RepeatedRules describe the constraints applied to `repeated` values.\n"},{"path":[4,19,1],"span":[3600,8,21]},{"path":[4,19,2,0],"span":[3612,2,3615,5],"leadingComments":" `min_items` requires that this field must contain at least the specified\n minimum number of items.\n\n Note that `min_items = 1` is equivalent to setting a field as `required`.\n\n ```proto\n message MyRepeated {\n // value must contain at least 2 items\n repeated string value = 1 [(buf.validate.field).repeated.min_items = 2];\n }\n ```\n"},{"path":[4,19,2,0,4],"span":[3612,2,10]},{"path":[4,19,2,0,5],"span":[3612,11,17]},{"path":[4,19,2,0,1],"span":[3612,18,27]},{"path":[4,19,2,0,3],"span":[3612,30,31]},{"path":[4,19,2,0,8],"span":[3612,32,3615,4]},{"path":[4,19,2,0,8,1160,1,0],"span":[3612,33,3615,3]},{"path":[4,19,2,0,8,1160,1,0,1],"span":[3613,4,28]},{"path":[4,19,2,0,8,1160,1,0,3],"span":[3614,4,127]},{"path":[4,19,2,1],"span":[3628,2,3631,5],"leadingComments":" `max_items` denotes that this field must not exceed a\n certain number of items as the upper limit. If the field contains more\n items than specified, an error message will be generated, requiring the\n field to maintain no more than the specified number of items.\n\n ```proto\n message MyRepeated {\n // value must contain no more than 3 item(s)\n repeated string value = 1 [(buf.validate.field).repeated.max_items = 3];\n }\n ```\n"},{"path":[4,19,2,1,4],"span":[3628,2,10]},{"path":[4,19,2,1,5],"span":[3628,11,17]},{"path":[4,19,2,1,1],"span":[3628,18,27]},{"path":[4,19,2,1,3],"span":[3628,30,31]},{"path":[4,19,2,1,8],"span":[3628,32,3631,4]},{"path":[4,19,2,1,8,1160,1,0],"span":[3628,33,3631,3]},{"path":[4,19,2,1,8,1160,1,0,1],"span":[3629,4,28]},{"path":[4,19,2,1,8,1160,1,0,3],"span":[3630,4,131]},{"path":[4,19,2,2],"span":[3643,2,3647,5],"leadingComments":" `unique` indicates that all elements in this field must\n be unique. This constraint is strictly applicable to scalar and enum\n types, with message types not being supported.\n\n ```proto\n message MyRepeated {\n // repeated value must contain unique items\n repeated string value = 1 [(buf.validate.field).repeated.unique = true];\n }\n ```\n"},{"path":[4,19,2,2,4],"span":[3643,2,10]},{"path":[4,19,2,2,5],"span":[3643,11,15]},{"path":[4,19,2,2,1],"span":[3643,16,22]},{"path":[4,19,2,2,3],"span":[3643,25,26]},{"path":[4,19,2,2,8],"span":[3643,27,3647,4]},{"path":[4,19,2,2,8,1160,1,0],"span":[3643,28,3647,3]},{"path":[4,19,2,2,8,1160,1,0,1],"span":[3644,4,25]},{"path":[4,19,2,2,8,1160,1,0,2],"span":[3645,4,55]},{"path":[4,19,2,2,8,1160,1,0,3],"span":[3646,4,31]},{"path":[4,19,2,3],"span":[3664,2,38],"leadingComments":" `items` details the constraints to be applied to each item\n in the field. Even for repeated message fields, validation is executed\n against each item unless skip is explicitly specified.\n\n ```proto\n message MyRepeated {\n // The items in the field `value` must follow the specified constraints.\n repeated string value = 1 [(buf.validate.field).repeated.items = {\n string: {\n min_len: 3\n max_len: 10\n }\n }];\n }\n ```\n"},{"path":[4,19,2,3,4],"span":[3664,2,10]},{"path":[4,19,2,3,6],"span":[3664,11,27]},{"path":[4,19,2,3,1],"span":[3664,28,33]},{"path":[4,19,2,3,3],"span":[3664,36,37]},{"path":[4,20],"span":[3668,0,3728,1],"leadingComments":" MapRules describe the constraints applied to `map` values.\n"},{"path":[4,20,1],"span":[3668,8,16]},{"path":[4,20,2,0],"span":[3678,2,3681,5],"leadingComments":"Specifies the minimum number of key-value pairs allowed. If the field has\n fewer key-value pairs than specified, an error message is generated.\n\n ```proto\n message MyMap {\n // The field `value` must have at least 2 key-value pairs.\n map value = 1 [(buf.validate.field).map.min_pairs = 2];\n }\n ```\n"},{"path":[4,20,2,0,4],"span":[3678,2,10]},{"path":[4,20,2,0,5],"span":[3678,11,17]},{"path":[4,20,2,0,1],"span":[3678,18,27]},{"path":[4,20,2,0,3],"span":[3678,30,31]},{"path":[4,20,2,0,8],"span":[3678,32,3681,4]},{"path":[4,20,2,0,8,1160,1,0],"span":[3678,33,3681,3]},{"path":[4,20,2,0,8,1160,1,0,1],"span":[3679,4,23]},{"path":[4,20,2,0,8,1160,1,0,3],"span":[3680,4,120]},{"path":[4,20,2,1],"span":[3692,2,3695,5],"leadingComments":"Specifies the maximum number of key-value pairs allowed. If the field has\n more key-value pairs than specified, an error message is generated.\n\n ```proto\n message MyMap {\n // The field `value` must have at most 3 key-value pairs.\n map value = 1 [(buf.validate.field).map.max_pairs = 3];\n }\n ```\n"},{"path":[4,20,2,1,4],"span":[3692,2,10]},{"path":[4,20,2,1,5],"span":[3692,11,17]},{"path":[4,20,2,1,1],"span":[3692,18,27]},{"path":[4,20,2,1,3],"span":[3692,30,31]},{"path":[4,20,2,1,8],"span":[3692,32,3695,4]},{"path":[4,20,2,1,8,1160,1,0],"span":[3692,33,3695,3]},{"path":[4,20,2,1,8,1160,1,0,1],"span":[3693,4,23]},{"path":[4,20,2,1,8,1160,1,0,3],"span":[3694,4,119]},{"path":[4,20,2,2],"span":[3710,2,37],"leadingComments":"Specifies the constraints to be applied to each key in the field.\n\n ```proto\n message MyMap {\n // The keys in the field `value` must follow the specified constraints.\n map value = 1 [(buf.validate.field).map.keys = {\n string: {\n min_len: 3\n max_len: 10\n }\n }];\n }\n ```\n"},{"path":[4,20,2,2,4],"span":[3710,2,10]},{"path":[4,20,2,2,6],"span":[3710,11,27]},{"path":[4,20,2,2,1],"span":[3710,28,32]},{"path":[4,20,2,2,3],"span":[3710,35,36]},{"path":[4,20,2,3],"span":[3727,2,39],"leadingComments":"Specifies the constraints to be applied to the value of each key in the\n field. Message values will still have their validations evaluated unless\nskip is specified here.\n\n ```proto\n message MyMap {\n // The values in the field `value` must follow the specified constraints.\n map value = 1 [(buf.validate.field).map.values = {\n string: {\n min_len: 5\n max_len: 20\n }\n }];\n }\n ```\n"},{"path":[4,20,2,3,4],"span":[3727,2,10]},{"path":[4,20,2,3,6],"span":[3727,11,27]},{"path":[4,20,2,3,1],"span":[3727,28,34]},{"path":[4,20,2,3,3],"span":[3727,37,38]},{"path":[4,21],"span":[3731,0,3753,1],"leadingComments":" AnyRules describe constraints applied exclusively to the `google.protobuf.Any` well-known type.\n"},{"path":[4,21,1],"span":[3731,8,16]},{"path":[4,21,2,0],"span":[3742,2,25],"leadingComments":" `in` requires the field's `type_url` to be equal to one of the\nspecified values. If it doesn't match any of the specified values, an error\n message is generated.\n\n ```proto\n message MyAny {\n // The `value` field must have a `type_url` equal to one of the specified values.\n google.protobuf.Any value = 1 [(buf.validate.field).any.in = [\"type.googleapis.com/MyType1\", \"type.googleapis.com/MyType2\"]];\n }\n ```\n"},{"path":[4,21,2,0,4],"span":[3742,2,10]},{"path":[4,21,2,0,5],"span":[3742,11,17]},{"path":[4,21,2,0,1],"span":[3742,18,20]},{"path":[4,21,2,0,3],"span":[3742,23,24]},{"path":[4,21,2,1],"span":[3752,2,29],"leadingComments":" requires the field's type_url to be not equal to any of the specified values. If it matches any of the specified values, an error message is generated.\n\n ```proto\n message MyAny {\n // The field `value` must not have a `type_url` equal to any of the specified values.\n google.protobuf.Any value = 1 [(buf.validate.field).any.not_in = [\"type.googleapis.com/ForbiddenType1\", \"type.googleapis.com/ForbiddenType2\"]];\n }\n ```\n"},{"path":[4,21,2,1,4],"span":[3752,2,10]},{"path":[4,21,2,1,5],"span":[3752,11,17]},{"path":[4,21,2,1,1],"span":[3752,18,24]},{"path":[4,21,2,1,3],"span":[3752,27,28]},{"path":[4,22],"span":[3756,0,3940,1],"leadingComments":" DurationRules describe the constraints applied exclusively to the `google.protobuf.Duration` well-known type.\n"},{"path":[4,22,1],"span":[3756,8,21]},{"path":[4,22,2,0],"span":[3767,2,3770,5],"leadingComments":" `const` dictates that the field must match the specified value of the `google.protobuf.Duration` type exactly.\n If the field's value deviates from the specified value, an error message\n will be generated.\n\n ```proto\n message MyDuration {\n // value must equal 5s\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.const = \"5s\"];\n }\n ```\n"},{"path":[4,22,2,0,4],"span":[3767,2,10]},{"path":[4,22,2,0,6],"span":[3767,11,35]},{"path":[4,22,2,0,1],"span":[3767,36,41]},{"path":[4,22,2,0,3],"span":[3767,44,45]},{"path":[4,22,2,0,8],"span":[3767,46,3770,4]},{"path":[4,22,2,0,8,1160,1,0],"span":[3767,47,3770,3]},{"path":[4,22,2,0,8,1160,1,0,1],"span":[3768,4,24]},{"path":[4,22,2,0,8,1160,1,0,3],"span":[3769,4,88]},{"path":[4,22,8,0],"span":[3771,2,3805,3]},{"path":[4,22,8,0,1],"span":[3771,8,17]},{"path":[4,22,2,1],"span":[3782,4,3787,7],"leadingComments":" `lt` stipulates that the field must be less than the specified value of the `google.protobuf.Duration` type,\n exclusive. If the field's value is greater than or equal to the specified\n value, an error message will be generated.\n\n ```proto\n message MyDuration {\n // value must be less than 5s\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.lt = \"5s\"];\n }\n ```\n"},{"path":[4,22,2,1,6],"span":[3782,4,28]},{"path":[4,22,2,1,1],"span":[3782,29,31]},{"path":[4,22,2,1,3],"span":[3782,34,35]},{"path":[4,22,2,1,8],"span":[3782,36,3787,6]},{"path":[4,22,2,1,8,1160,1,0],"span":[3782,37,3787,5]},{"path":[4,22,2,1,8,1160,1,0,1],"span":[3783,6,23]},{"path":[4,22,2,1,8,1160,1,0,3],"span":[3784,6,3786,64]},{"path":[4,22,2,2],"span":[3799,4,3804,7],"leadingComments":" `lte` indicates that the field must be less than or equal to the specified\n value of the `google.protobuf.Duration` type, inclusive. If the field's value is greater than the specified value,\n an error message will be generated.\n\n ```proto\n message MyDuration {\n // value must be less than or equal to 10s\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.lte = \"10s\"];\n }\n ```\n"},{"path":[4,22,2,2,6],"span":[3799,4,28]},{"path":[4,22,2,2,1],"span":[3799,29,32]},{"path":[4,22,2,2,3],"span":[3799,35,36]},{"path":[4,22,2,2,8],"span":[3799,37,3804,6]},{"path":[4,22,2,2,8,1160,1,0],"span":[3799,38,3804,5]},{"path":[4,22,2,2,8,1160,1,0,1],"span":[3800,6,24]},{"path":[4,22,2,2,8,1160,1,0,3],"span":[3801,6,3803,77]},{"path":[4,22,8,1],"span":[3806,2,3908,3]},{"path":[4,22,8,1,1],"span":[3806,8,20]},{"path":[4,22,2,3],"span":[3825,4,3856,6],"leadingComments":" `gt` requires the duration field value to be greater than the specified\n value (exclusive). If the value of `gt` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyDuration {\n // duration must be greater than 5s [duration.gt]\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.gt = { seconds: 5 }];\n\n // duration must be greater than 5s and less than 10s [duration.gt_lt]\n google.protobuf.Duration another_value = 2 [(buf.validate.field).duration = { gt: { seconds: 5 }, lt: { seconds: 10 } }];\n\n // duration must be greater than 10s or less than 5s [duration.gt_lt_exclusive]\n google.protobuf.Duration other_value = 3 [(buf.validate.field).duration = { gt: { seconds: 10 }, lt: { seconds: 5 } }];\n }\n ```\n"},{"path":[4,22,2,3,6],"span":[3825,4,28]},{"path":[4,22,2,3,1],"span":[3825,29,31]},{"path":[4,22,2,3,3],"span":[3825,34,35]},{"path":[4,22,2,3,8],"span":[3825,36,3856,5]},{"path":[4,22,2,3,8,1160,1,0],"span":[3826,6,3831,7]},{"path":[4,22,2,3,8,1160,1,0,1],"span":[3827,8,25]},{"path":[4,22,2,3,8,1160,1,0,3],"span":[3828,8,3830,69]},{"path":[4,22,2,3,8,1160,1,1],"span":[3832,6,3837,7]},{"path":[4,22,2,3,8,1160,1,1,1],"span":[3833,8,28]},{"path":[4,22,2,3,8,1160,1,1,3],"span":[3834,8,3836,96]},{"path":[4,22,2,3,8,1160,1,2],"span":[3838,6,3843,7]},{"path":[4,22,2,3,8,1160,1,2,1],"span":[3839,8,38]},{"path":[4,22,2,3,8,1160,1,2,3],"span":[3840,8,3842,95]},{"path":[4,22,2,3,8,1160,1,3],"span":[3844,6,3849,7]},{"path":[4,22,2,3,8,1160,1,3,1],"span":[3845,8,29]},{"path":[4,22,2,3,8,1160,1,3,3],"span":[3846,8,3848,109]},{"path":[4,22,2,3,8,1160,1,4],"span":[3850,6,3855,7]},{"path":[4,22,2,3,8,1160,1,4,1],"span":[3851,8,39]},{"path":[4,22,2,3,8,1160,1,4,3],"span":[3852,8,3854,108]},{"path":[4,22,2,4],"span":[3876,4,3907,6],"leadingComments":" `gte` requires the duration field value to be greater than or equal to the\n specified value (exclusive). If the value of `gte` is larger than a\n specified `lt` or `lte`, the range is reversed, and the field value must\n be outside the specified range. If the field value doesn't meet the\n required conditions, an error message is generated.\n\n ```proto\n message MyDuration {\n // duration must be greater than or equal to 5s [duration.gte]\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.gte = { seconds: 5 }];\n\n // duration must be greater than or equal to 5s and less than 10s [duration.gte_lt]\n google.protobuf.Duration another_value = 2 [(buf.validate.field).duration = { gte: { seconds: 5 }, lt: { seconds: 10 } }];\n\n // duration must be greater than or equal to 10s or less than 5s [duration.gte_lt_exclusive]\n google.protobuf.Duration other_value = 3 [(buf.validate.field).duration = { gte: { seconds: 10 }, lt: { seconds: 5 } }];\n }\n ```\n"},{"path":[4,22,2,4,6],"span":[3876,4,28]},{"path":[4,22,2,4,1],"span":[3876,29,32]},{"path":[4,22,2,4,3],"span":[3876,35,36]},{"path":[4,22,2,4,8],"span":[3876,37,3907,5]},{"path":[4,22,2,4,8,1160,1,0],"span":[3877,6,3882,7]},{"path":[4,22,2,4,8,1160,1,0,1],"span":[3878,8,26]},{"path":[4,22,2,4,8,1160,1,0,3],"span":[3879,8,3881,82]},{"path":[4,22,2,4,8,1160,1,1],"span":[3883,6,3888,7]},{"path":[4,22,2,4,8,1160,1,1,1],"span":[3884,8,29]},{"path":[4,22,2,4,8,1160,1,1,3],"span":[3885,8,3887,109]},{"path":[4,22,2,4,8,1160,1,2],"span":[3889,6,3894,7]},{"path":[4,22,2,4,8,1160,1,2,1],"span":[3890,8,39]},{"path":[4,22,2,4,8,1160,1,2,3],"span":[3891,8,3893,108]},{"path":[4,22,2,4,8,1160,1,3],"span":[3895,6,3900,7]},{"path":[4,22,2,4,8,1160,1,3,1],"span":[3896,8,30]},{"path":[4,22,2,4,8,1160,1,3,3],"span":[3897,8,3899,122]},{"path":[4,22,2,4,8,1160,1,4],"span":[3901,6,3906,7]},{"path":[4,22,2,4,8,1160,1,4,1],"span":[3902,8,40]},{"path":[4,22,2,4,8,1160,1,4,3],"span":[3903,8,3905,121]},{"path":[4,22,2,5],"span":[3920,2,3923,5],"leadingComments":" `in` asserts that the field must be equal to one of the specified values of the `google.protobuf.Duration` type.\n If the field's value doesn't correspond to any of the specified values,\n an error message will be generated.\n\n ```proto\n message MyDuration {\n // value must be in list [1s, 2s, 3s]\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.in = [\"1s\", \"2s\", \"3s\"]];\n }\n ```\n"},{"path":[4,22,2,5,4],"span":[3920,2,10]},{"path":[4,22,2,5,6],"span":[3920,11,35]},{"path":[4,22,2,5,1],"span":[3920,36,38]},{"path":[4,22,2,5,3],"span":[3920,41,42]},{"path":[4,22,2,5,8],"span":[3920,43,3923,4]},{"path":[4,22,2,5,8,1160,1,0],"span":[3920,44,3923,3]},{"path":[4,22,2,5,8,1160,1,0,1],"span":[3921,4,21]},{"path":[4,22,2,5,8,1160,1,0,3],"span":[3922,4,106]},{"path":[4,22,2,6],"span":[3936,2,3939,5],"leadingComments":" `not_in` denotes that the field must not be equal to\n any of the specified values of the `google.protobuf.Duration` type.\n If the field's value matches any of these values, an error message will be\n generated.\n\n ```proto\n message MyDuration {\n // value must not be in list [1s, 2s, 3s]\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.not_in = [\"1s\", \"2s\", \"3s\"]];\n }\n ```\n"},{"path":[4,22,2,6,4],"span":[3936,2,10]},{"path":[4,22,2,6,6],"span":[3936,11,35]},{"path":[4,22,2,6,1],"span":[3936,36,42]},{"path":[4,22,2,6,3],"span":[3936,45,46]},{"path":[4,22,2,6,8],"span":[3936,47,3939,4]},{"path":[4,22,2,6,8,1160,1,0],"span":[3936,48,3939,3]},{"path":[4,22,2,6,8,1160,1,0,1],"span":[3937,4,25]},{"path":[4,22,2,6,8,1160,1,0,3],"span":[3938,4,99]},{"path":[4,23],"span":[3943,0,4129,1],"leadingComments":" TimestampRules describe the constraints applied exclusively to the `google.protobuf.Timestamp` well-known type.\n"},{"path":[4,23,1],"span":[3943,8,22]},{"path":[4,23,2,0],"span":[3952,2,3955,5],"leadingComments":" `const` dictates that this field, of the `google.protobuf.Timestamp` type, must exactly match the specified value. If the field value doesn't correspond to the specified timestamp, an error message will be generated.\n\n ```proto\n message MyTimestamp {\n // value must equal 2023-05-03T10:00:00Z\n google.protobuf.Timestamp created_at = 1 [(buf.validate.field).timestamp.const = {seconds: 1727998800}];\n }\n ```\n"},{"path":[4,23,2,0,4],"span":[3952,2,10]},{"path":[4,23,2,0,6],"span":[3952,11,36]},{"path":[4,23,2,0,1],"span":[3952,37,42]},{"path":[4,23,2,0,3],"span":[3952,45,46]},{"path":[4,23,2,0,8],"span":[3952,47,3955,4]},{"path":[4,23,2,0,8,1160,1,0],"span":[3952,48,3955,3]},{"path":[4,23,2,0,8,1160,1,0,1],"span":[3953,4,25]},{"path":[4,23,2,0,8,1160,1,0,3],"span":[3954,4,88]},{"path":[4,23,8,0],"span":[3956,2,3999,3]},{"path":[4,23,8,0,1],"span":[3956,8,17]},{"path":[4,23,2,1],"span":[3965,4,3970,7],"leadingComments":" requires the duration field value to be less than the specified value (field < value). If the field value doesn't meet the required conditions, an error message is generated.\n\n ```proto\n message MyDuration {\n // duration must be less than 'P3D' [duration.lt]\n google.protobuf.Duration value = 1 [(buf.validate.field).duration.lt = { seconds: 259200 }];\n }\n ```\n"},{"path":[4,23,2,1,6],"span":[3965,4,29]},{"path":[4,23,2,1,1],"span":[3965,30,32]},{"path":[4,23,2,1,3],"span":[3965,35,36]},{"path":[4,23,2,1,8],"span":[3965,37,3970,6]},{"path":[4,23,2,1,8,1160,1,0],"span":[3965,38,3970,5]},{"path":[4,23,2,1,8,1160,1,0,1],"span":[3966,6,24]},{"path":[4,23,2,1,8,1160,1,0,3],"span":[3967,6,3969,64]},{"path":[4,23,2,2],"span":[3980,4,3985,7],"leadingComments":" requires the timestamp field value to be less than or equal to the specified value (field <= value). If the field value doesn't meet the required conditions, an error message is generated.\n\n ```proto\n message MyTimestamp {\n // timestamp must be less than or equal to '2023-05-14T00:00:00Z' [timestamp.lte]\n google.protobuf.Timestamp value = 1 [(buf.validate.field).timestamp.lte = { seconds: 1678867200 }];\n }\n ```\n"},{"path":[4,23,2,2,6],"span":[3980,4,29]},{"path":[4,23,2,2,1],"span":[3980,30,33]},{"path":[4,23,2,2,3],"span":[3980,36,37]},{"path":[4,23,2,2,8],"span":[3980,38,3985,6]},{"path":[4,23,2,2,8,1160,1,0],"span":[3980,39,3985,5]},{"path":[4,23,2,2,8,1160,1,0,1],"span":[3981,6,25]},{"path":[4,23,2,2,8,1160,1,0,3],"span":[3982,6,3984,77]},{"path":[4,23,2,3],"span":[3995,4,3998,7],"leadingComments":" `lt_now` specifies that this field, of the `google.protobuf.Timestamp` type, must be less than the current time. `lt_now` can only be used with the `within` rule.\n\n ```proto\n message MyTimestamp {\n // value must be less than now\n google.protobuf.Timestamp created_at = 1 [(buf.validate.field).timestamp.lt_now = true];\n }\n ```\n"},{"path":[4,23,2,3,5],"span":[3995,4,8]},{"path":[4,23,2,3,1],"span":[3995,9,15]},{"path":[4,23,2,3,3],"span":[3995,18,19]},{"path":[4,23,2,3,8],"span":[3995,20,3998,6]},{"path":[4,23,2,3,8,1160,1,0],"span":[3995,21,3998,5]},{"path":[4,23,2,3,8,1160,1,0,1],"span":[3996,6,28]},{"path":[4,23,2,3,8,1160,1,0,3],"span":[3997,6,67]},{"path":[4,23,8,1],"span":[4000,2,4115,3]},{"path":[4,23,8,1,1],"span":[4000,8,20]},{"path":[4,23,2,4],"span":[4019,4,4050,6],"leadingComments":" `gt` requires the timestamp field value to be greater than the specified\n value (exclusive). If the value of `gt` is larger than a specified `lt`\n or `lte`, the range is reversed, and the field value must be outside the\n specified range. If the field value doesn't meet the required conditions,\n an error message is generated.\n\n ```proto\n message MyTimestamp {\n // timestamp must be greater than '2023-01-01T00:00:00Z' [timestamp.gt]\n google.protobuf.Timestamp value = 1 [(buf.validate.field).timestamp.gt = { seconds: 1672444800 }];\n\n // timestamp must be greater than '2023-01-01T00:00:00Z' and less than '2023-01-02T00:00:00Z' [timestamp.gt_lt]\n google.protobuf.Timestamp another_value = 2 [(buf.validate.field).timestamp = { gt: { seconds: 1672444800 }, lt: { seconds: 1672531200 } }];\n\n // timestamp must be greater than '2023-01-02T00:00:00Z' or less than '2023-01-01T00:00:00Z' [timestamp.gt_lt_exclusive]\n google.protobuf.Timestamp other_value = 3 [(buf.validate.field).timestamp = { gt: { seconds: 1672531200 }, lt: { seconds: 1672444800 } }];\n }\n ```\n"},{"path":[4,23,2,4,6],"span":[4019,4,29]},{"path":[4,23,2,4,1],"span":[4019,30,32]},{"path":[4,23,2,4,3],"span":[4019,35,36]},{"path":[4,23,2,4,8],"span":[4019,37,4050,5]},{"path":[4,23,2,4,8,1160,1,0],"span":[4020,6,4025,7]},{"path":[4,23,2,4,8,1160,1,0,1],"span":[4021,8,26]},{"path":[4,23,2,4,8,1160,1,0,3],"span":[4022,8,4024,69]},{"path":[4,23,2,4,8,1160,1,1],"span":[4026,6,4031,7]},{"path":[4,23,2,4,8,1160,1,1,1],"span":[4027,8,29]},{"path":[4,23,2,4,8,1160,1,1,3],"span":[4028,8,4030,96]},{"path":[4,23,2,4,8,1160,1,2],"span":[4032,6,4037,7]},{"path":[4,23,2,4,8,1160,1,2,1],"span":[4033,8,39]},{"path":[4,23,2,4,8,1160,1,2,3],"span":[4034,8,4036,95]},{"path":[4,23,2,4,8,1160,1,3],"span":[4038,6,4043,7]},{"path":[4,23,2,4,8,1160,1,3,1],"span":[4039,8,30]},{"path":[4,23,2,4,8,1160,1,3,3],"span":[4040,8,4042,109]},{"path":[4,23,2,4,8,1160,1,4],"span":[4044,6,4049,7]},{"path":[4,23,2,4,8,1160,1,4,1],"span":[4045,8,40]},{"path":[4,23,2,4,8,1160,1,4,3],"span":[4046,8,4048,108]},{"path":[4,23,2,5],"span":[4070,4,4101,6],"leadingComments":" `gte` requires the timestamp field value to be greater than or equal to the\n specified value (exclusive). If the value of `gte` is larger than a\n specified `lt` or `lte`, the range is reversed, and the field value\n must be outside the specified range. If the field value doesn't meet\n the required conditions, an error message is generated.\n\n ```proto\n message MyTimestamp {\n // timestamp must be greater than or equal to '2023-01-01T00:00:00Z' [timestamp.gte]\n google.protobuf.Timestamp value = 1 [(buf.validate.field).timestamp.gte = { seconds: 1672444800 }];\n\n // timestamp must be greater than or equal to '2023-01-01T00:00:00Z' and less than '2023-01-02T00:00:00Z' [timestamp.gte_lt]\n google.protobuf.Timestamp another_value = 2 [(buf.validate.field).timestamp = { gte: { seconds: 1672444800 }, lt: { seconds: 1672531200 } }];\n\n // timestamp must be greater than or equal to '2023-01-02T00:00:00Z' or less than '2023-01-01T00:00:00Z' [timestamp.gte_lt_exclusive]\n google.protobuf.Timestamp other_value = 3 [(buf.validate.field).timestamp = { gte: { seconds: 1672531200 }, lt: { seconds: 1672444800 } }];\n }\n ```\n"},{"path":[4,23,2,5,6],"span":[4070,4,29]},{"path":[4,23,2,5,1],"span":[4070,30,33]},{"path":[4,23,2,5,3],"span":[4070,36,37]},{"path":[4,23,2,5,8],"span":[4070,38,4101,5]},{"path":[4,23,2,5,8,1160,1,0],"span":[4071,6,4076,7]},{"path":[4,23,2,5,8,1160,1,0,1],"span":[4072,8,27]},{"path":[4,23,2,5,8,1160,1,0,3],"span":[4073,8,4075,82]},{"path":[4,23,2,5,8,1160,1,1],"span":[4077,6,4082,7]},{"path":[4,23,2,5,8,1160,1,1,1],"span":[4078,8,30]},{"path":[4,23,2,5,8,1160,1,1,3],"span":[4079,8,4081,109]},{"path":[4,23,2,5,8,1160,1,2],"span":[4083,6,4088,7]},{"path":[4,23,2,5,8,1160,1,2,1],"span":[4084,8,40]},{"path":[4,23,2,5,8,1160,1,2,3],"span":[4085,8,4087,108]},{"path":[4,23,2,5,8,1160,1,3],"span":[4089,6,4094,7]},{"path":[4,23,2,5,8,1160,1,3,1],"span":[4090,8,31]},{"path":[4,23,2,5,8,1160,1,3,3],"span":[4091,8,4093,122]},{"path":[4,23,2,5,8,1160,1,4],"span":[4095,6,4100,7]},{"path":[4,23,2,5,8,1160,1,4,1],"span":[4096,8,41]},{"path":[4,23,2,5,8,1160,1,4,3],"span":[4097,8,4099,121]},{"path":[4,23,2,6],"span":[4111,4,4114,7],"leadingComments":" `gt_now` specifies that this field, of the `google.protobuf.Timestamp` type, must be greater than the current time. `gt_now` can only be used with the `within` rule.\n\n ```proto\n message MyTimestamp {\n // value must be greater than now\n google.protobuf.Timestamp created_at = 1 [(buf.validate.field).timestamp.gt_now = true];\n }\n ```\n"},{"path":[4,23,2,6,5],"span":[4111,4,8]},{"path":[4,23,2,6,1],"span":[4111,9,15]},{"path":[4,23,2,6,3],"span":[4111,18,19]},{"path":[4,23,2,6,8],"span":[4111,20,4114,6]},{"path":[4,23,2,6,8,1160,1,0],"span":[4111,21,4114,5]},{"path":[4,23,2,6,8,1160,1,0,1],"span":[4112,6,28]},{"path":[4,23,2,6,8,1160,1,0,3],"span":[4113,6,70]},{"path":[4,23,2,7],"span":[4125,2,4128,5],"leadingComments":" `within` specifies that this field, of the `google.protobuf.Timestamp` type, must be within the specified duration of the current time. If the field value isn't within the duration, an error message is generated.\n\n ```proto\n message MyTimestamp {\n // value must be within 1 hour of now\n google.protobuf.Timestamp created_at = 1 [(buf.validate.field).timestamp.within = {seconds: 3600}];\n }\n ```\n"},{"path":[4,23,2,7,4],"span":[4125,2,10]},{"path":[4,23,2,7,6],"span":[4125,11,35]},{"path":[4,23,2,7,1],"span":[4125,36,42]},{"path":[4,23,2,7,3],"span":[4125,45,46]},{"path":[4,23,2,7,8],"span":[4125,47,4128,4]},{"path":[4,23,2,7,8,1160,1,0],"span":[4125,48,4128,3]},{"path":[4,23,2,7,8,1160,1,0,1],"span":[4126,4,26]},{"path":[4,23,2,7,8,1160,1,0,3],"span":[4127,4,131]}]},"syntax":"proto3","bufExtension":{"isImport":true,"moduleInfo":{"name":{"remote":"buf.build","owner":"bufbuild","repository":"protovalidate"},"commit":"b983156c5e994cc9892e0ce3e64e17e0"},"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,161,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,67]},{"path":[8,11],"span":[34,0,67]},{"path":[8],"span":[35,0,44]},{"path":[8,1],"span":[35,0,44]},{"path":[8],"span":[36,0,41]},{"path":[8,8],"span":[36,0,41]},{"path":[8],"span":[37,0,34]},{"path":[8,10],"span":[37,0,34]},{"path":[8],"span":[38,0,33]},{"path":[8,36],"span":[38,0,33]},{"path":[8],"span":[39,0,59]},{"path":[8,37],"span":[39,0,59]},{"path":[4,0],"span":[127,0,161,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n // or ...\n if (any.isSameTypeAs(Foo.getDefaultInstance())) {\n foo = any.unpack(Foo.getDefaultInstance());\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": ,\n \"lastName\": \n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[127,8,11]},{"path":[4,0,2,0],"span":[157,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com. As of May 2023, there are no widely used type server\n implementations and no plans to implement one.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[157,2,8]},{"path":[4,0,2,0,1],"span":[157,9,17]},{"path":[4,0,2,0,3],"span":[157,20,21]},{"path":[4,0,2,1],"span":[160,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[160,2,7]},{"path":[4,0,2,1,1],"span":[160,8,13]},{"path":[4,0,2,1,3],"span":[160,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/struct.proto","package":"google.protobuf","messageType":[{"name":"Struct","field":[{"name":"fields","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct.FieldsEntry","jsonName":"fields"}],"nestedType":[{"name":"FieldsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"Value","field":[{"name":"null_value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","oneofIndex":0,"jsonName":"nullValue"},{"name":"number_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":0,"jsonName":"numberValue"},{"name":"string_value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"stringValue"},{"name":"bool_value","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"boolValue"},{"name":"struct_value","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","oneofIndex":0,"jsonName":"structValue"},{"name":"list_value","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","oneofIndex":0,"jsonName":"listValue"}],"oneofDecl":[{"name":"kind"}]},{"name":"ListValue","field":[{"name":"values","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"values"}]}],"enumType":[{"name":"NullValue","value":[{"name":"NULL_VALUE","number":0}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"StructProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/structpb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,94,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,31]},{"path":[8,31],"span":[34,0,31]},{"path":[8],"span":[35,0,70]},{"path":[8,11],"span":[35,0,70]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,44]},{"path":[8,8],"span":[37,0,44]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[8],"span":[40,0,59]},{"path":[8,37],"span":[40,0,59]},{"path":[4,0],"span":[50,0,53,1],"leadingComments":" `Struct` represents a structured data value, consisting of fields\n which map to dynamically typed values. In some languages, `Struct`\n might be supported by a native representation. For example, in\n scripting languages like JS a struct is represented as an\n object. The details of that representation are described together\n with the proto support for the language.\n\n The JSON representation for `Struct` is JSON object.\n"},{"path":[4,0,1],"span":[50,8,14]},{"path":[4,0,2,0],"span":[52,2,32],"leadingComments":" Unordered map of dynamically typed values.\n"},{"path":[4,0,2,0,6],"span":[52,2,20]},{"path":[4,0,2,0,1],"span":[52,21,27]},{"path":[4,0,2,0,3],"span":[52,30,31]},{"path":[4,1],"span":[61,0,77,1],"leadingComments":" `Value` represents a dynamically typed value which can be either\n null, a number, a string, a boolean, a recursive struct value, or a\n list of values. A producer of value is expected to set one of these\n variants. Absence of any variant indicates an error.\n\n The JSON representation for `Value` is JSON value.\n"},{"path":[4,1,1],"span":[61,8,13]},{"path":[4,1,8,0],"span":[63,2,76,3],"leadingComments":" The kind of value.\n"},{"path":[4,1,8,0,1],"span":[63,8,12]},{"path":[4,1,2,0],"span":[65,4,29],"leadingComments":" Represents a null value.\n"},{"path":[4,1,2,0,6],"span":[65,4,13]},{"path":[4,1,2,0,1],"span":[65,14,24]},{"path":[4,1,2,0,3],"span":[65,27,28]},{"path":[4,1,2,1],"span":[67,4,28],"leadingComments":" Represents a double value.\n"},{"path":[4,1,2,1,5],"span":[67,4,10]},{"path":[4,1,2,1,1],"span":[67,11,23]},{"path":[4,1,2,1,3],"span":[67,26,27]},{"path":[4,1,2,2],"span":[69,4,28],"leadingComments":" Represents a string value.\n"},{"path":[4,1,2,2,5],"span":[69,4,10]},{"path":[4,1,2,2,1],"span":[69,11,23]},{"path":[4,1,2,2,3],"span":[69,26,27]},{"path":[4,1,2,3],"span":[71,4,24],"leadingComments":" Represents a boolean value.\n"},{"path":[4,1,2,3,5],"span":[71,4,8]},{"path":[4,1,2,3,1],"span":[71,9,19]},{"path":[4,1,2,3,3],"span":[71,22,23]},{"path":[4,1,2,4],"span":[73,4,28],"leadingComments":" Represents a structured value.\n"},{"path":[4,1,2,4,6],"span":[73,4,10]},{"path":[4,1,2,4,1],"span":[73,11,23]},{"path":[4,1,2,4,3],"span":[73,26,27]},{"path":[4,1,2,5],"span":[75,4,29],"leadingComments":" Represents a repeated `Value`.\n"},{"path":[4,1,2,5,6],"span":[75,4,13]},{"path":[4,1,2,5,1],"span":[75,14,24]},{"path":[4,1,2,5,3],"span":[75,27,28]},{"path":[5,0],"span":[83,0,86,1],"leadingComments":" `NullValue` is a singleton enumeration to represent the null value for the\n `Value` type union.\n\n The JSON representation for `NullValue` is JSON `null`.\n"},{"path":[5,0,1],"span":[83,5,14]},{"path":[5,0,2,0],"span":[85,2,17],"leadingComments":" Null value.\n"},{"path":[5,0,2,0,1],"span":[85,2,12]},{"path":[5,0,2,0,2],"span":[85,15,16]},{"path":[4,2],"span":[91,0,94,1],"leadingComments":" `ListValue` is a wrapper around a repeated field of values.\n\n The JSON representation for `ListValue` is JSON array.\n"},{"path":[4,2,1],"span":[91,8,17]},{"path":[4,2,2,0],"span":[93,2,28],"leadingComments":" Repeated field of dynamically typed values.\n"},{"path":[4,2,2,0,4],"span":[93,2,10]},{"path":[4,2,2,0,6],"span":[93,11,16]},{"path":[4,2,2,0,1],"span":[93,17,23]},{"path":[4,2,2,0,3],"span":[93,26,27]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/wrappers.proto","package":"google.protobuf","messageType":[{"name":"DoubleValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}]},{"name":"FloatValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}]},{"name":"Int64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}]},{"name":"UInt64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}]},{"name":"Int32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}]},{"name":"UInt32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}]},{"name":"BoolValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}]},{"name":"StringValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"BytesValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"WrappersProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/wrapperspb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[40,0,122,1]},{"path":[12],"span":[40,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n Wrappers for primitive (non-message) types. These types are useful\n for embedding primitives in the `google.protobuf.Any` type and for places\n where we need to distinguish between the absence of a primitive\n typed field and its default value.\n\n These wrappers have no meaningful use within repeated fields as they lack\n the ability to detect presence on individual elements.\n These wrappers have no meaningful use within a map or a oneof since\n individual entries of a map or fields of a oneof can already detect presence.\n"]},{"path":[2],"span":[42,0,24]},{"path":[8],"span":[44,0,31]},{"path":[8,31],"span":[44,0,31]},{"path":[8],"span":[45,0,72]},{"path":[8,11],"span":[45,0,72]},{"path":[8],"span":[46,0,44]},{"path":[8,1],"span":[46,0,44]},{"path":[8],"span":[47,0,46]},{"path":[8,8],"span":[47,0,46]},{"path":[8],"span":[48,0,34]},{"path":[8,10],"span":[48,0,34]},{"path":[8],"span":[49,0,33]},{"path":[8,36],"span":[49,0,33]},{"path":[8],"span":[50,0,59]},{"path":[8,37],"span":[50,0,59]},{"path":[4,0],"span":[55,0,58,1],"leadingComments":" Wrapper message for `double`.\n\n The JSON representation for `DoubleValue` is JSON number.\n"},{"path":[4,0,1],"span":[55,8,19]},{"path":[4,0,2,0],"span":[57,2,19],"leadingComments":" The double value.\n"},{"path":[4,0,2,0,5],"span":[57,2,8]},{"path":[4,0,2,0,1],"span":[57,9,14]},{"path":[4,0,2,0,3],"span":[57,17,18]},{"path":[4,1],"span":[63,0,66,1],"leadingComments":" Wrapper message for `float`.\n\n The JSON representation for `FloatValue` is JSON number.\n"},{"path":[4,1,1],"span":[63,8,18]},{"path":[4,1,2,0],"span":[65,2,18],"leadingComments":" The float value.\n"},{"path":[4,1,2,0,5],"span":[65,2,7]},{"path":[4,1,2,0,1],"span":[65,8,13]},{"path":[4,1,2,0,3],"span":[65,16,17]},{"path":[4,2],"span":[71,0,74,1],"leadingComments":" Wrapper message for `int64`.\n\n The JSON representation for `Int64Value` is JSON string.\n"},{"path":[4,2,1],"span":[71,8,18]},{"path":[4,2,2,0],"span":[73,2,18],"leadingComments":" The int64 value.\n"},{"path":[4,2,2,0,5],"span":[73,2,7]},{"path":[4,2,2,0,1],"span":[73,8,13]},{"path":[4,2,2,0,3],"span":[73,16,17]},{"path":[4,3],"span":[79,0,82,1],"leadingComments":" Wrapper message for `uint64`.\n\n The JSON representation for `UInt64Value` is JSON string.\n"},{"path":[4,3,1],"span":[79,8,19]},{"path":[4,3,2,0],"span":[81,2,19],"leadingComments":" The uint64 value.\n"},{"path":[4,3,2,0,5],"span":[81,2,8]},{"path":[4,3,2,0,1],"span":[81,9,14]},{"path":[4,3,2,0,3],"span":[81,17,18]},{"path":[4,4],"span":[87,0,90,1],"leadingComments":" Wrapper message for `int32`.\n\n The JSON representation for `Int32Value` is JSON number.\n"},{"path":[4,4,1],"span":[87,8,18]},{"path":[4,4,2,0],"span":[89,2,18],"leadingComments":" The int32 value.\n"},{"path":[4,4,2,0,5],"span":[89,2,7]},{"path":[4,4,2,0,1],"span":[89,8,13]},{"path":[4,4,2,0,3],"span":[89,16,17]},{"path":[4,5],"span":[95,0,98,1],"leadingComments":" Wrapper message for `uint32`.\n\n The JSON representation for `UInt32Value` is JSON number.\n"},{"path":[4,5,1],"span":[95,8,19]},{"path":[4,5,2,0],"span":[97,2,19],"leadingComments":" The uint32 value.\n"},{"path":[4,5,2,0,5],"span":[97,2,8]},{"path":[4,5,2,0,1],"span":[97,9,14]},{"path":[4,5,2,0,3],"span":[97,17,18]},{"path":[4,6],"span":[103,0,106,1],"leadingComments":" Wrapper message for `bool`.\n\n The JSON representation for `BoolValue` is JSON `true` and `false`.\n"},{"path":[4,6,1],"span":[103,8,17]},{"path":[4,6,2,0],"span":[105,2,17],"leadingComments":" The bool value.\n"},{"path":[4,6,2,0,5],"span":[105,2,6]},{"path":[4,6,2,0,1],"span":[105,7,12]},{"path":[4,6,2,0,3],"span":[105,15,16]},{"path":[4,7],"span":[111,0,114,1],"leadingComments":" Wrapper message for `string`.\n\n The JSON representation for `StringValue` is JSON string.\n"},{"path":[4,7,1],"span":[111,8,19]},{"path":[4,7,2,0],"span":[113,2,19],"leadingComments":" The string value.\n"},{"path":[4,7,2,0,5],"span":[113,2,8]},{"path":[4,7,2,0,1],"span":[113,9,14]},{"path":[4,7,2,0,3],"span":[113,17,18]},{"path":[4,8],"span":[119,0,122,1],"leadingComments":" Wrapper message for `bytes`.\n\n The JSON representation for `BytesValue` is JSON string.\n"},{"path":[4,8,1],"span":[119,8,18]},{"path":[4,8,2,0],"span":[121,2,18],"leadingComments":" The bytes value.\n"},{"path":[4,8,2,0,5],"span":[121,2,7]},{"path":[4,8,2,0,1],"span":[121,8,13]},{"path":[4,8,2,0,3],"span":[121,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"bufext/cel/expr/conformance/proto3/test_all_types.proto","package":"bufext.cel.expr.conformance.proto3","dependency":["google/protobuf/any.proto","google/protobuf/duration.proto","google/protobuf/struct.proto","google/protobuf/timestamp.proto","google/protobuf/wrappers.proto"],"messageType":[{"name":"TestAllTypes","field":[{"name":"single_int32","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"singleInt32"},{"name":"single_int64","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"singleInt64"},{"name":"single_uint32","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"singleUint32"},{"name":"single_uint64","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"singleUint64"},{"name":"single_sint32","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_SINT32","jsonName":"singleSint32"},{"name":"single_sint64","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_SINT64","jsonName":"singleSint64"},{"name":"single_fixed32","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED32","jsonName":"singleFixed32"},{"name":"single_fixed64","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_FIXED64","jsonName":"singleFixed64"},{"name":"single_sfixed32","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED32","jsonName":"singleSfixed32"},{"name":"single_sfixed64","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_SFIXED64","jsonName":"singleSfixed64"},{"name":"single_float","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"singleFloat"},{"name":"single_double","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"singleDouble"},{"name":"single_bool","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"singleBool"},{"name":"single_string","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"singleString"},{"name":"single_bytes","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"singleBytes"},{"name":"single_any","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"singleAny"},{"name":"single_duration","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"singleDuration"},{"name":"single_timestamp","number":102,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"singleTimestamp"},{"name":"single_struct","number":103,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"singleStruct"},{"name":"single_value","number":104,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"singleValue"},{"name":"single_int64_wrapper","number":105,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"singleInt64Wrapper"},{"name":"single_int32_wrapper","number":106,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"singleInt32Wrapper"},{"name":"single_double_wrapper","number":107,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"singleDoubleWrapper"},{"name":"single_float_wrapper","number":108,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"singleFloatWrapper"},{"name":"single_uint64_wrapper","number":109,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"singleUint64Wrapper"},{"name":"single_uint32_wrapper","number":110,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"singleUint32Wrapper"},{"name":"single_string_wrapper","number":111,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"singleStringWrapper"},{"name":"single_bool_wrapper","number":112,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"singleBoolWrapper"},{"name":"single_bytes_wrapper","number":113,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"singleBytesWrapper"},{"name":"list_value","number":114,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"listValue"},{"name":"null_value","number":115,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"nullValue"},{"name":"optional_null_value","number":116,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","oneofIndex":1,"jsonName":"optionalNullValue","proto3Optional":true},{"name":"single_nested_message","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","oneofIndex":0,"jsonName":"singleNestedMessage"},{"name":"single_nested_enum","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","oneofIndex":0,"jsonName":"singleNestedEnum"},{"name":"standalone_message","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"standaloneMessage"},{"name":"standalone_enum","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"standaloneEnum"},{"name":"repeated_int32","number":31,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"repeatedInt32"},{"name":"repeated_int64","number":32,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"repeatedInt64"},{"name":"repeated_uint32","number":33,"label":"LABEL_REPEATED","type":"TYPE_UINT32","jsonName":"repeatedUint32"},{"name":"repeated_uint64","number":34,"label":"LABEL_REPEATED","type":"TYPE_UINT64","jsonName":"repeatedUint64"},{"name":"repeated_sint32","number":35,"label":"LABEL_REPEATED","type":"TYPE_SINT32","jsonName":"repeatedSint32"},{"name":"repeated_sint64","number":36,"label":"LABEL_REPEATED","type":"TYPE_SINT64","jsonName":"repeatedSint64"},{"name":"repeated_fixed32","number":37,"label":"LABEL_REPEATED","type":"TYPE_FIXED32","jsonName":"repeatedFixed32"},{"name":"repeated_fixed64","number":38,"label":"LABEL_REPEATED","type":"TYPE_FIXED64","jsonName":"repeatedFixed64"},{"name":"repeated_sfixed32","number":39,"label":"LABEL_REPEATED","type":"TYPE_SFIXED32","jsonName":"repeatedSfixed32"},{"name":"repeated_sfixed64","number":40,"label":"LABEL_REPEATED","type":"TYPE_SFIXED64","jsonName":"repeatedSfixed64"},{"name":"repeated_float","number":41,"label":"LABEL_REPEATED","type":"TYPE_FLOAT","jsonName":"repeatedFloat"},{"name":"repeated_double","number":42,"label":"LABEL_REPEATED","type":"TYPE_DOUBLE","jsonName":"repeatedDouble"},{"name":"repeated_bool","number":43,"label":"LABEL_REPEATED","type":"TYPE_BOOL","jsonName":"repeatedBool"},{"name":"repeated_string","number":44,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"repeatedString"},{"name":"repeated_bytes","number":45,"label":"LABEL_REPEATED","type":"TYPE_BYTES","jsonName":"repeatedBytes"},{"name":"repeated_nested_message","number":51,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"repeatedNestedMessage"},{"name":"repeated_nested_enum","number":52,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"repeatedNestedEnum"},{"name":"repeated_string_piece","number":53,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"repeatedStringPiece","options":{"ctype":"STRING_PIECE"}},{"name":"repeated_cord","number":54,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"repeatedCord","options":{"ctype":"CORD"}},{"name":"repeated_lazy_message","number":55,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"repeatedLazyMessage","options":{"lazy":true}},{"name":"repeated_any","number":120,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"repeatedAny"},{"name":"repeated_duration","number":121,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"repeatedDuration"},{"name":"repeated_timestamp","number":122,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"repeatedTimestamp"},{"name":"repeated_struct","number":123,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"repeatedStruct"},{"name":"repeated_value","number":124,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"repeatedValue"},{"name":"repeated_int64_wrapper","number":125,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"repeatedInt64Wrapper"},{"name":"repeated_int32_wrapper","number":126,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"repeatedInt32Wrapper"},{"name":"repeated_double_wrapper","number":127,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"repeatedDoubleWrapper"},{"name":"repeated_float_wrapper","number":128,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"repeatedFloatWrapper"},{"name":"repeated_uint64_wrapper","number":129,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"repeatedUint64Wrapper"},{"name":"repeated_uint32_wrapper","number":130,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"repeatedUint32Wrapper"},{"name":"repeated_string_wrapper","number":131,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"repeatedStringWrapper"},{"name":"repeated_bool_wrapper","number":132,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"repeatedBoolWrapper"},{"name":"repeated_bytes_wrapper","number":133,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"repeatedBytesWrapper"},{"name":"repeated_list_value","number":134,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"repeatedListValue"},{"name":"repeated_null_value","number":135,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"repeatedNullValue"},{"name":"map_int64_nested_type","number":62,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64NestedTypeEntry","jsonName":"mapInt64NestedType"},{"name":"map_bool_bool","number":63,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBoolEntry","jsonName":"mapBoolBool"},{"name":"map_bool_string","number":64,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolStringEntry","jsonName":"mapBoolString"},{"name":"map_bool_bytes","number":65,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBytesEntry","jsonName":"mapBoolBytes"},{"name":"map_bool_int32","number":66,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt32Entry","jsonName":"mapBoolInt32"},{"name":"map_bool_int64","number":67,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt64Entry","jsonName":"mapBoolInt64"},{"name":"map_bool_uint32","number":68,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint32Entry","jsonName":"mapBoolUint32"},{"name":"map_bool_uint64","number":69,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint64Entry","jsonName":"mapBoolUint64"},{"name":"map_bool_float","number":70,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolFloatEntry","jsonName":"mapBoolFloat"},{"name":"map_bool_double","number":71,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolDoubleEntry","jsonName":"mapBoolDouble"},{"name":"map_bool_enum","number":72,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolEnumEntry","jsonName":"mapBoolEnum"},{"name":"map_bool_message","number":73,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolMessageEntry","jsonName":"mapBoolMessage"},{"name":"map_bool_duration","number":228,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolDurationEntry","jsonName":"mapBoolDuration"},{"name":"map_bool_timestamp","number":229,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolTimestampEntry","jsonName":"mapBoolTimestamp"},{"name":"map_bool_null_value","number":230,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolNullValueEntry","jsonName":"mapBoolNullValue"},{"name":"map_bool_any","number":246,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolAnyEntry","jsonName":"mapBoolAny"},{"name":"map_bool_struct","number":247,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolStructEntry","jsonName":"mapBoolStruct"},{"name":"map_bool_value","number":248,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolValueEntry","jsonName":"mapBoolValue"},{"name":"map_bool_list_value","number":249,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolListValueEntry","jsonName":"mapBoolListValue"},{"name":"map_bool_int64_wrapper","number":250,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt64WrapperEntry","jsonName":"mapBoolInt64Wrapper"},{"name":"map_bool_int32_wrapper","number":251,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolInt32WrapperEntry","jsonName":"mapBoolInt32Wrapper"},{"name":"map_bool_double_wrapper","number":252,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolDoubleWrapperEntry","jsonName":"mapBoolDoubleWrapper"},{"name":"map_bool_float_wrapper","number":253,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolFloatWrapperEntry","jsonName":"mapBoolFloatWrapper"},{"name":"map_bool_uint64_wrapper","number":254,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint64WrapperEntry","jsonName":"mapBoolUint64Wrapper"},{"name":"map_bool_uint32_wrapper","number":255,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolUint32WrapperEntry","jsonName":"mapBoolUint32Wrapper"},{"name":"map_bool_string_wrapper","number":256,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolStringWrapperEntry","jsonName":"mapBoolStringWrapper"},{"name":"map_bool_bool_wrapper","number":257,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBoolWrapperEntry","jsonName":"mapBoolBoolWrapper"},{"name":"map_bool_bytes_wrapper","number":258,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapBoolBytesWrapperEntry","jsonName":"mapBoolBytesWrapper"},{"name":"map_int32_bool","number":74,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BoolEntry","jsonName":"mapInt32Bool"},{"name":"map_int32_string","number":75,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32StringEntry","jsonName":"mapInt32String"},{"name":"map_int32_bytes","number":76,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BytesEntry","jsonName":"mapInt32Bytes"},{"name":"map_int32_int32","number":77,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int32Entry","jsonName":"mapInt32Int32"},{"name":"map_int32_int64","number":78,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int64Entry","jsonName":"mapInt32Int64"},{"name":"map_int32_uint32","number":79,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint32Entry","jsonName":"mapInt32Uint32"},{"name":"map_int32_uint64","number":80,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint64Entry","jsonName":"mapInt32Uint64"},{"name":"map_int32_float","number":81,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32FloatEntry","jsonName":"mapInt32Float"},{"name":"map_int32_double","number":82,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32DoubleEntry","jsonName":"mapInt32Double"},{"name":"map_int32_enum","number":83,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32EnumEntry","jsonName":"mapInt32Enum"},{"name":"map_int32_message","number":84,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32MessageEntry","jsonName":"mapInt32Message"},{"name":"map_int32_duration","number":231,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32DurationEntry","jsonName":"mapInt32Duration"},{"name":"map_int32_timestamp","number":232,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32TimestampEntry","jsonName":"mapInt32Timestamp"},{"name":"map_int32_null_value","number":233,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32NullValueEntry","jsonName":"mapInt32NullValue"},{"name":"map_int32_any","number":259,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32AnyEntry","jsonName":"mapInt32Any"},{"name":"map_int32_struct","number":260,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32StructEntry","jsonName":"mapInt32Struct"},{"name":"map_int32_value","number":261,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32ValueEntry","jsonName":"mapInt32Value"},{"name":"map_int32_list_value","number":262,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32ListValueEntry","jsonName":"mapInt32ListValue"},{"name":"map_int32_int64_wrapper","number":263,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int64WrapperEntry","jsonName":"mapInt32Int64Wrapper"},{"name":"map_int32_int32_wrapper","number":264,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Int32WrapperEntry","jsonName":"mapInt32Int32Wrapper"},{"name":"map_int32_double_wrapper","number":265,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32DoubleWrapperEntry","jsonName":"mapInt32DoubleWrapper"},{"name":"map_int32_float_wrapper","number":266,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32FloatWrapperEntry","jsonName":"mapInt32FloatWrapper"},{"name":"map_int32_uint64_wrapper","number":267,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint64WrapperEntry","jsonName":"mapInt32Uint64Wrapper"},{"name":"map_int32_uint32_wrapper","number":268,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32Uint32WrapperEntry","jsonName":"mapInt32Uint32Wrapper"},{"name":"map_int32_string_wrapper","number":269,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32StringWrapperEntry","jsonName":"mapInt32StringWrapper"},{"name":"map_int32_bool_wrapper","number":270,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BoolWrapperEntry","jsonName":"mapInt32BoolWrapper"},{"name":"map_int32_bytes_wrapper","number":271,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt32BytesWrapperEntry","jsonName":"mapInt32BytesWrapper"},{"name":"map_int64_bool","number":85,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BoolEntry","jsonName":"mapInt64Bool"},{"name":"map_int64_string","number":86,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64StringEntry","jsonName":"mapInt64String"},{"name":"map_int64_bytes","number":87,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BytesEntry","jsonName":"mapInt64Bytes"},{"name":"map_int64_int32","number":88,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int32Entry","jsonName":"mapInt64Int32"},{"name":"map_int64_int64","number":89,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int64Entry","jsonName":"mapInt64Int64"},{"name":"map_int64_uint32","number":90,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint32Entry","jsonName":"mapInt64Uint32"},{"name":"map_int64_uint64","number":91,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint64Entry","jsonName":"mapInt64Uint64"},{"name":"map_int64_float","number":92,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64FloatEntry","jsonName":"mapInt64Float"},{"name":"map_int64_double","number":93,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64DoubleEntry","jsonName":"mapInt64Double"},{"name":"map_int64_enum","number":94,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64EnumEntry","jsonName":"mapInt64Enum"},{"name":"map_int64_message","number":95,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64MessageEntry","jsonName":"mapInt64Message"},{"name":"map_int64_duration","number":234,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64DurationEntry","jsonName":"mapInt64Duration"},{"name":"map_int64_timestamp","number":235,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64TimestampEntry","jsonName":"mapInt64Timestamp"},{"name":"map_int64_null_value","number":236,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64NullValueEntry","jsonName":"mapInt64NullValue"},{"name":"map_int64_any","number":272,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64AnyEntry","jsonName":"mapInt64Any"},{"name":"map_int64_struct","number":273,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64StructEntry","jsonName":"mapInt64Struct"},{"name":"map_int64_value","number":274,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64ValueEntry","jsonName":"mapInt64Value"},{"name":"map_int64_list_value","number":275,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64ListValueEntry","jsonName":"mapInt64ListValue"},{"name":"map_int64_int64_wrapper","number":276,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int64WrapperEntry","jsonName":"mapInt64Int64Wrapper"},{"name":"map_int64_int32_wrapper","number":277,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Int32WrapperEntry","jsonName":"mapInt64Int32Wrapper"},{"name":"map_int64_double_wrapper","number":278,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64DoubleWrapperEntry","jsonName":"mapInt64DoubleWrapper"},{"name":"map_int64_float_wrapper","number":279,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64FloatWrapperEntry","jsonName":"mapInt64FloatWrapper"},{"name":"map_int64_uint64_wrapper","number":280,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint64WrapperEntry","jsonName":"mapInt64Uint64Wrapper"},{"name":"map_int64_uint32_wrapper","number":281,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64Uint32WrapperEntry","jsonName":"mapInt64Uint32Wrapper"},{"name":"map_int64_string_wrapper","number":282,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64StringWrapperEntry","jsonName":"mapInt64StringWrapper"},{"name":"map_int64_bool_wrapper","number":283,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BoolWrapperEntry","jsonName":"mapInt64BoolWrapper"},{"name":"map_int64_bytes_wrapper","number":284,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapInt64BytesWrapperEntry","jsonName":"mapInt64BytesWrapper"},{"name":"map_uint32_bool","number":96,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BoolEntry","jsonName":"mapUint32Bool"},{"name":"map_uint32_string","number":97,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32StringEntry","jsonName":"mapUint32String"},{"name":"map_uint32_bytes","number":98,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BytesEntry","jsonName":"mapUint32Bytes"},{"name":"map_uint32_int32","number":99,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int32Entry","jsonName":"mapUint32Int32"},{"name":"map_uint32_int64","number":200,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int64Entry","jsonName":"mapUint32Int64"},{"name":"map_uint32_uint32","number":201,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint32Entry","jsonName":"mapUint32Uint32"},{"name":"map_uint32_uint64","number":202,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint64Entry","jsonName":"mapUint32Uint64"},{"name":"map_uint32_float","number":203,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32FloatEntry","jsonName":"mapUint32Float"},{"name":"map_uint32_double","number":204,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32DoubleEntry","jsonName":"mapUint32Double"},{"name":"map_uint32_enum","number":205,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32EnumEntry","jsonName":"mapUint32Enum"},{"name":"map_uint32_message","number":206,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32MessageEntry","jsonName":"mapUint32Message"},{"name":"map_uint32_duration","number":237,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32DurationEntry","jsonName":"mapUint32Duration"},{"name":"map_uint32_timestamp","number":238,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32TimestampEntry","jsonName":"mapUint32Timestamp"},{"name":"map_uint32_null_value","number":239,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32NullValueEntry","jsonName":"mapUint32NullValue"},{"name":"map_uint32_any","number":285,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32AnyEntry","jsonName":"mapUint32Any"},{"name":"map_uint32_struct","number":286,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32StructEntry","jsonName":"mapUint32Struct"},{"name":"map_uint32_value","number":287,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32ValueEntry","jsonName":"mapUint32Value"},{"name":"map_uint32_list_value","number":288,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32ListValueEntry","jsonName":"mapUint32ListValue"},{"name":"map_uint32_int64_wrapper","number":289,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int64WrapperEntry","jsonName":"mapUint32Int64Wrapper"},{"name":"map_uint32_int32_wrapper","number":290,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Int32WrapperEntry","jsonName":"mapUint32Int32Wrapper"},{"name":"map_uint32_double_wrapper","number":291,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32DoubleWrapperEntry","jsonName":"mapUint32DoubleWrapper"},{"name":"map_uint32_float_wrapper","number":292,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32FloatWrapperEntry","jsonName":"mapUint32FloatWrapper"},{"name":"map_uint32_uint64_wrapper","number":293,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint64WrapperEntry","jsonName":"mapUint32Uint64Wrapper"},{"name":"map_uint32_uint32_wrapper","number":294,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32Uint32WrapperEntry","jsonName":"mapUint32Uint32Wrapper"},{"name":"map_uint32_string_wrapper","number":295,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32StringWrapperEntry","jsonName":"mapUint32StringWrapper"},{"name":"map_uint32_bool_wrapper","number":296,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BoolWrapperEntry","jsonName":"mapUint32BoolWrapper"},{"name":"map_uint32_bytes_wrapper","number":297,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint32BytesWrapperEntry","jsonName":"mapUint32BytesWrapper"},{"name":"map_uint64_bool","number":207,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BoolEntry","jsonName":"mapUint64Bool"},{"name":"map_uint64_string","number":208,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64StringEntry","jsonName":"mapUint64String"},{"name":"map_uint64_bytes","number":209,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BytesEntry","jsonName":"mapUint64Bytes"},{"name":"map_uint64_int32","number":210,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int32Entry","jsonName":"mapUint64Int32"},{"name":"map_uint64_int64","number":211,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int64Entry","jsonName":"mapUint64Int64"},{"name":"map_uint64_uint32","number":212,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint32Entry","jsonName":"mapUint64Uint32"},{"name":"map_uint64_uint64","number":213,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint64Entry","jsonName":"mapUint64Uint64"},{"name":"map_uint64_float","number":214,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64FloatEntry","jsonName":"mapUint64Float"},{"name":"map_uint64_double","number":215,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64DoubleEntry","jsonName":"mapUint64Double"},{"name":"map_uint64_enum","number":216,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64EnumEntry","jsonName":"mapUint64Enum"},{"name":"map_uint64_message","number":217,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64MessageEntry","jsonName":"mapUint64Message"},{"name":"map_uint64_duration","number":240,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64DurationEntry","jsonName":"mapUint64Duration"},{"name":"map_uint64_timestamp","number":241,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64TimestampEntry","jsonName":"mapUint64Timestamp"},{"name":"map_uint64_null_value","number":242,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64NullValueEntry","jsonName":"mapUint64NullValue"},{"name":"map_uint64_any","number":298,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64AnyEntry","jsonName":"mapUint64Any"},{"name":"map_uint64_struct","number":299,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64StructEntry","jsonName":"mapUint64Struct"},{"name":"map_uint64_value","number":300,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64ValueEntry","jsonName":"mapUint64Value"},{"name":"map_uint64_list_value","number":301,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64ListValueEntry","jsonName":"mapUint64ListValue"},{"name":"map_uint64_int64_wrapper","number":302,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int64WrapperEntry","jsonName":"mapUint64Int64Wrapper"},{"name":"map_uint64_int32_wrapper","number":303,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Int32WrapperEntry","jsonName":"mapUint64Int32Wrapper"},{"name":"map_uint64_double_wrapper","number":304,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64DoubleWrapperEntry","jsonName":"mapUint64DoubleWrapper"},{"name":"map_uint64_float_wrapper","number":305,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64FloatWrapperEntry","jsonName":"mapUint64FloatWrapper"},{"name":"map_uint64_uint64_wrapper","number":306,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint64WrapperEntry","jsonName":"mapUint64Uint64Wrapper"},{"name":"map_uint64_uint32_wrapper","number":307,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64Uint32WrapperEntry","jsonName":"mapUint64Uint32Wrapper"},{"name":"map_uint64_string_wrapper","number":308,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64StringWrapperEntry","jsonName":"mapUint64StringWrapper"},{"name":"map_uint64_bool_wrapper","number":309,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BoolWrapperEntry","jsonName":"mapUint64BoolWrapper"},{"name":"map_uint64_bytes_wrapper","number":310,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapUint64BytesWrapperEntry","jsonName":"mapUint64BytesWrapper"},{"name":"map_string_bool","number":218,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBoolEntry","jsonName":"mapStringBool"},{"name":"map_string_string","number":61,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringStringEntry","jsonName":"mapStringString"},{"name":"map_string_bytes","number":219,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBytesEntry","jsonName":"mapStringBytes"},{"name":"map_string_int32","number":220,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt32Entry","jsonName":"mapStringInt32"},{"name":"map_string_int64","number":221,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt64Entry","jsonName":"mapStringInt64"},{"name":"map_string_uint32","number":222,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint32Entry","jsonName":"mapStringUint32"},{"name":"map_string_uint64","number":223,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint64Entry","jsonName":"mapStringUint64"},{"name":"map_string_float","number":224,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringFloatEntry","jsonName":"mapStringFloat"},{"name":"map_string_double","number":225,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringDoubleEntry","jsonName":"mapStringDouble"},{"name":"map_string_enum","number":226,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringEnumEntry","jsonName":"mapStringEnum"},{"name":"map_string_message","number":227,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringMessageEntry","jsonName":"mapStringMessage"},{"name":"map_string_duration","number":243,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringDurationEntry","jsonName":"mapStringDuration"},{"name":"map_string_timestamp","number":244,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringTimestampEntry","jsonName":"mapStringTimestamp"},{"name":"map_string_null_value","number":245,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringNullValueEntry","jsonName":"mapStringNullValue"},{"name":"map_string_any","number":311,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringAnyEntry","jsonName":"mapStringAny"},{"name":"map_string_struct","number":312,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringStructEntry","jsonName":"mapStringStruct"},{"name":"map_string_value","number":313,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringValueEntry","jsonName":"mapStringValue"},{"name":"map_string_list_value","number":314,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringListValueEntry","jsonName":"mapStringListValue"},{"name":"map_string_int64_wrapper","number":315,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt64WrapperEntry","jsonName":"mapStringInt64Wrapper"},{"name":"map_string_int32_wrapper","number":316,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringInt32WrapperEntry","jsonName":"mapStringInt32Wrapper"},{"name":"map_string_double_wrapper","number":317,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringDoubleWrapperEntry","jsonName":"mapStringDoubleWrapper"},{"name":"map_string_float_wrapper","number":318,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringFloatWrapperEntry","jsonName":"mapStringFloatWrapper"},{"name":"map_string_uint64_wrapper","number":319,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint64WrapperEntry","jsonName":"mapStringUint64Wrapper"},{"name":"map_string_uint32_wrapper","number":320,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringUint32WrapperEntry","jsonName":"mapStringUint32Wrapper"},{"name":"map_string_string_wrapper","number":321,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringStringWrapperEntry","jsonName":"mapStringStringWrapper"},{"name":"map_string_bool_wrapper","number":322,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBoolWrapperEntry","jsonName":"mapStringBoolWrapper"},{"name":"map_string_bytes_wrapper","number":323,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.MapStringBytesWrapperEntry","jsonName":"mapStringBytesWrapper"}],"nestedType":[{"name":"NestedMessage","field":[{"name":"bb","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"bb"}]},{"name":"MapInt64NestedTypeEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.NestedTestAllTypes","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolStringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolFloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolDoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolEnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolMessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolDurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolTimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolNullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolAnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolStructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolInt32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolDoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolFloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolUint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolStringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapBoolBytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt32BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapInt64BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint32BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64StringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64FloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64DoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64EnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64MessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64DurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64TimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64NullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64AnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64StructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64ValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64ListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Int32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64DoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64FloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64Uint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64StringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapUint64BytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBoolEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringStringEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBytesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint32Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint64Entry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringFloatEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringDoubleEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringEnumEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedEnum","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringMessageEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringDurationEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Duration","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringTimestampEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringNullValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".google.protobuf.NullValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringAnyEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringStructEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Struct","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringListValueEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.ListValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringInt32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringDoubleWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.DoubleValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringFloatWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.FloatValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint64WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt64Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringUint32WrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.UInt32Value","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringStringWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBoolWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"value"}],"options":{"mapEntry":true}},{"name":"MapStringBytesWrapperEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"value"}],"options":{"mapEntry":true}}],"enumType":[{"name":"NestedEnum","value":[{"name":"FOO","number":0},{"name":"BAR","number":1},{"name":"BAZ","number":2}]}],"oneofDecl":[{"name":"nested_type"},{"name":"_optional_null_value"}]},{"name":"NestedTestAllTypes","field":[{"name":"child","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.NestedTestAllTypes","jsonName":"child"},{"name":"payload","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes","jsonName":"payload"}]}],"enumType":[{"name":"GlobalEnum","value":[{"name":"GOO","number":0},{"name":"GAR","number":1},{"name":"GAZ","number":2}]}],"options":{"javaPackage":"dev.cel.expr.conformance.proto3","javaOuterClassname":"TestAllTypesProto","javaMultipleFiles":true,"goPackage":"cel.dev/expr/conformance/proto3","ccEnableArenas":true},"sourceCodeInfo":{"location":[{"span":[17,0,318,1]},{"path":[12],"span":[17,0,18],"leadingDetachedComments":[" Copyright 2024 Buf Technologies, Inc.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"," Mostly originally copied from https://github.com/google/cel-spec/blob/ed066e332b7acc3dbf68e65e0001061539d25e83/proto/cel/expr/conformance/proto3/test_all_types.proto.\n See the license at https://github.com/google/cel-spec/blob/ed066e332b7acc3dbf68e65e0001061539d25e83/LICENSE.\n"]},{"path":[2],"span":[19,0,43]},{"path":[3,0],"span":[21,0,35]},{"path":[3,1],"span":[22,0,40]},{"path":[3,2],"span":[23,0,38]},{"path":[3,3],"span":[24,0,41]},{"path":[3,4],"span":[25,0,40]},{"path":[8],"span":[27,0,31]},{"path":[8,31],"span":[27,0,31]},{"path":[8],"span":[28,0,54]},{"path":[8,11],"span":[28,0,54]},{"path":[8],"span":[29,0,34]},{"path":[8,10],"span":[29,0,34]},{"path":[8],"span":[30,0,50]},{"path":[8,8],"span":[30,0,50]},{"path":[8],"span":[31,0,56]},{"path":[8,1],"span":[31,0,56]},{"path":[4,0],"span":[35,0,305,1],"leadingComments":" This proto includes every type of field in both singular and repeated\n forms.\n"},{"path":[4,0,1],"span":[35,8,20]},{"path":[4,0,3,0],"span":[36,2,41,3]},{"path":[4,0,3,0,1],"span":[36,10,23]},{"path":[4,0,3,0,2,0],"span":[40,4,17],"leadingComments":" The field name \"b\" fails to compile in proto1 because it conflicts with\n a local variable named \"b\" in one of the generated methods.\n This file needs to compile in proto1 to test backwards-compatibility.\n"},{"path":[4,0,3,0,2,0,5],"span":[40,4,9]},{"path":[4,0,3,0,2,0,1],"span":[40,10,12]},{"path":[4,0,3,0,2,0,3],"span":[40,15,16]},{"path":[4,0,4,0],"span":[43,2,47,3]},{"path":[4,0,4,0,1],"span":[43,7,17]},{"path":[4,0,4,0,2,0],"span":[44,4,12]},{"path":[4,0,4,0,2,0,1],"span":[44,4,7]},{"path":[4,0,4,0,2,0,2],"span":[44,10,11]},{"path":[4,0,4,0,2,1],"span":[45,4,12]},{"path":[4,0,4,0,2,1,1],"span":[45,4,7]},{"path":[4,0,4,0,2,1,2],"span":[45,10,11]},{"path":[4,0,4,0,2,2],"span":[46,4,12]},{"path":[4,0,4,0,2,2,1],"span":[46,4,7]},{"path":[4,0,4,0,2,2,2],"span":[46,10,11]},{"path":[4,0,2,0],"span":[50,2,25],"leadingComments":" Singular\n"},{"path":[4,0,2,0,5],"span":[50,2,7]},{"path":[4,0,2,0,1],"span":[50,8,20]},{"path":[4,0,2,0,3],"span":[50,23,24]},{"path":[4,0,2,1],"span":[51,2,25]},{"path":[4,0,2,1,5],"span":[51,2,7]},{"path":[4,0,2,1,1],"span":[51,8,20]},{"path":[4,0,2,1,3],"span":[51,23,24]},{"path":[4,0,2,2],"span":[52,2,27]},{"path":[4,0,2,2,5],"span":[52,2,8]},{"path":[4,0,2,2,1],"span":[52,9,22]},{"path":[4,0,2,2,3],"span":[52,25,26]},{"path":[4,0,2,3],"span":[53,2,27]},{"path":[4,0,2,3,5],"span":[53,2,8]},{"path":[4,0,2,3,1],"span":[53,9,22]},{"path":[4,0,2,3,3],"span":[53,25,26]},{"path":[4,0,2,4],"span":[54,2,27]},{"path":[4,0,2,4,5],"span":[54,2,8]},{"path":[4,0,2,4,1],"span":[54,9,22]},{"path":[4,0,2,4,3],"span":[54,25,26]},{"path":[4,0,2,5],"span":[55,2,27]},{"path":[4,0,2,5,5],"span":[55,2,8]},{"path":[4,0,2,5,1],"span":[55,9,22]},{"path":[4,0,2,5,3],"span":[55,25,26]},{"path":[4,0,2,6],"span":[56,2,29]},{"path":[4,0,2,6,5],"span":[56,2,9]},{"path":[4,0,2,6,1],"span":[56,10,24]},{"path":[4,0,2,6,3],"span":[56,27,28]},{"path":[4,0,2,7],"span":[57,2,29]},{"path":[4,0,2,7,5],"span":[57,2,9]},{"path":[4,0,2,7,1],"span":[57,10,24]},{"path":[4,0,2,7,3],"span":[57,27,28]},{"path":[4,0,2,8],"span":[58,2,31]},{"path":[4,0,2,8,5],"span":[58,2,10]},{"path":[4,0,2,8,1],"span":[58,11,26]},{"path":[4,0,2,8,3],"span":[58,29,30]},{"path":[4,0,2,9],"span":[59,2,32]},{"path":[4,0,2,9,5],"span":[59,2,10]},{"path":[4,0,2,9,1],"span":[59,11,26]},{"path":[4,0,2,9,3],"span":[59,29,31]},{"path":[4,0,2,10],"span":[60,2,26]},{"path":[4,0,2,10,5],"span":[60,2,7]},{"path":[4,0,2,10,1],"span":[60,8,20]},{"path":[4,0,2,10,3],"span":[60,23,25]},{"path":[4,0,2,11],"span":[61,2,28]},{"path":[4,0,2,11,5],"span":[61,2,8]},{"path":[4,0,2,11,1],"span":[61,9,22]},{"path":[4,0,2,11,3],"span":[61,25,27]},{"path":[4,0,2,12],"span":[62,2,24]},{"path":[4,0,2,12,5],"span":[62,2,6]},{"path":[4,0,2,12,1],"span":[62,7,18]},{"path":[4,0,2,12,3],"span":[62,21,23]},{"path":[4,0,2,13],"span":[63,2,28]},{"path":[4,0,2,13,5],"span":[63,2,8]},{"path":[4,0,2,13,1],"span":[63,9,22]},{"path":[4,0,2,13,3],"span":[63,25,27]},{"path":[4,0,2,14],"span":[64,2,26]},{"path":[4,0,2,14,5],"span":[64,2,7]},{"path":[4,0,2,14,1],"span":[64,8,20]},{"path":[4,0,2,14,3],"span":[64,23,25]},{"path":[4,0,2,15],"span":[67,2,39],"leadingComments":" Wellknown.\n"},{"path":[4,0,2,15,6],"span":[67,2,21]},{"path":[4,0,2,15,1],"span":[67,22,32]},{"path":[4,0,2,15,3],"span":[67,35,38]},{"path":[4,0,2,16],"span":[68,2,49]},{"path":[4,0,2,16,6],"span":[68,2,26]},{"path":[4,0,2,16,1],"span":[68,27,42]},{"path":[4,0,2,16,3],"span":[68,45,48]},{"path":[4,0,2,17],"span":[69,2,51]},{"path":[4,0,2,17,6],"span":[69,2,27]},{"path":[4,0,2,17,1],"span":[69,28,44]},{"path":[4,0,2,17,3],"span":[69,47,50]},{"path":[4,0,2,18],"span":[70,2,45]},{"path":[4,0,2,18,6],"span":[70,2,24]},{"path":[4,0,2,18,1],"span":[70,25,38]},{"path":[4,0,2,18,3],"span":[70,41,44]},{"path":[4,0,2,19],"span":[71,2,43]},{"path":[4,0,2,19,6],"span":[71,2,23]},{"path":[4,0,2,19,1],"span":[71,24,36]},{"path":[4,0,2,19,3],"span":[71,39,42]},{"path":[4,0,2,20],"span":[72,2,56]},{"path":[4,0,2,20,6],"span":[72,2,28]},{"path":[4,0,2,20,1],"span":[72,29,49]},{"path":[4,0,2,20,3],"span":[72,52,55]},{"path":[4,0,2,21],"span":[73,2,56]},{"path":[4,0,2,21,6],"span":[73,2,28]},{"path":[4,0,2,21,1],"span":[73,29,49]},{"path":[4,0,2,21,3],"span":[73,52,55]},{"path":[4,0,2,22],"span":[74,2,58]},{"path":[4,0,2,22,6],"span":[74,2,29]},{"path":[4,0,2,22,1],"span":[74,30,51]},{"path":[4,0,2,22,3],"span":[74,54,57]},{"path":[4,0,2,23],"span":[75,2,56]},{"path":[4,0,2,23,6],"span":[75,2,28]},{"path":[4,0,2,23,1],"span":[75,29,49]},{"path":[4,0,2,23,3],"span":[75,52,55]},{"path":[4,0,2,24],"span":[76,2,58]},{"path":[4,0,2,24,6],"span":[76,2,29]},{"path":[4,0,2,24,1],"span":[76,30,51]},{"path":[4,0,2,24,3],"span":[76,54,57]},{"path":[4,0,2,25],"span":[77,2,58]},{"path":[4,0,2,25,6],"span":[77,2,29]},{"path":[4,0,2,25,1],"span":[77,30,51]},{"path":[4,0,2,25,3],"span":[77,54,57]},{"path":[4,0,2,26],"span":[78,2,58]},{"path":[4,0,2,26,6],"span":[78,2,29]},{"path":[4,0,2,26,1],"span":[78,30,51]},{"path":[4,0,2,26,3],"span":[78,54,57]},{"path":[4,0,2,27],"span":[79,2,54]},{"path":[4,0,2,27,6],"span":[79,2,27]},{"path":[4,0,2,27,1],"span":[79,28,47]},{"path":[4,0,2,27,3],"span":[79,50,53]},{"path":[4,0,2,28],"span":[80,2,56]},{"path":[4,0,2,28,6],"span":[80,2,28]},{"path":[4,0,2,28,1],"span":[80,29,49]},{"path":[4,0,2,28,3],"span":[80,52,55]},{"path":[4,0,2,29],"span":[81,2,45]},{"path":[4,0,2,29,6],"span":[81,2,27]},{"path":[4,0,2,29,1],"span":[81,28,38]},{"path":[4,0,2,29,3],"span":[81,41,44]},{"path":[4,0,2,30],"span":[82,2,45]},{"path":[4,0,2,30,6],"span":[82,2,27]},{"path":[4,0,2,30,1],"span":[82,28,38]},{"path":[4,0,2,30,3],"span":[82,41,44]},{"path":[4,0,2,31],"span":[83,2,63]},{"path":[4,0,2,31,4],"span":[83,2,10]},{"path":[4,0,2,31,6],"span":[83,11,36]},{"path":[4,0,2,31,1],"span":[83,37,56]},{"path":[4,0,2,31,3],"span":[83,59,62]},{"path":[4,0,8,0],"span":[86,2,89,3],"leadingComments":" Nested messages\n"},{"path":[4,0,8,0,1],"span":[86,8,19]},{"path":[4,0,2,32],"span":[87,4,45]},{"path":[4,0,2,32,6],"span":[87,4,17]},{"path":[4,0,2,32,1],"span":[87,18,39]},{"path":[4,0,2,32,3],"span":[87,42,44]},{"path":[4,0,2,33],"span":[88,4,39]},{"path":[4,0,2,33,6],"span":[88,4,14]},{"path":[4,0,2,33,1],"span":[88,15,33]},{"path":[4,0,2,33,3],"span":[88,36,38]},{"path":[4,0,2,34],"span":[90,2,40]},{"path":[4,0,2,34,6],"span":[90,2,15]},{"path":[4,0,2,34,1],"span":[90,16,34]},{"path":[4,0,2,34,3],"span":[90,37,39]},{"path":[4,0,2,35],"span":[91,2,34]},{"path":[4,0,2,35,6],"span":[91,2,12]},{"path":[4,0,2,35,1],"span":[91,13,28]},{"path":[4,0,2,35,3],"span":[91,31,33]},{"path":[4,0,2,36],"span":[94,2,37],"leadingComments":" Repeated\n"},{"path":[4,0,2,36,4],"span":[94,2,10]},{"path":[4,0,2,36,5],"span":[94,11,16]},{"path":[4,0,2,36,1],"span":[94,17,31]},{"path":[4,0,2,36,3],"span":[94,34,36]},{"path":[4,0,2,37],"span":[95,2,37]},{"path":[4,0,2,37,4],"span":[95,2,10]},{"path":[4,0,2,37,5],"span":[95,11,16]},{"path":[4,0,2,37,1],"span":[95,17,31]},{"path":[4,0,2,37,3],"span":[95,34,36]},{"path":[4,0,2,38],"span":[96,2,39]},{"path":[4,0,2,38,4],"span":[96,2,10]},{"path":[4,0,2,38,5],"span":[96,11,17]},{"path":[4,0,2,38,1],"span":[96,18,33]},{"path":[4,0,2,38,3],"span":[96,36,38]},{"path":[4,0,2,39],"span":[97,2,39]},{"path":[4,0,2,39,4],"span":[97,2,10]},{"path":[4,0,2,39,5],"span":[97,11,17]},{"path":[4,0,2,39,1],"span":[97,18,33]},{"path":[4,0,2,39,3],"span":[97,36,38]},{"path":[4,0,2,40],"span":[98,2,39]},{"path":[4,0,2,40,4],"span":[98,2,10]},{"path":[4,0,2,40,5],"span":[98,11,17]},{"path":[4,0,2,40,1],"span":[98,18,33]},{"path":[4,0,2,40,3],"span":[98,36,38]},{"path":[4,0,2,41],"span":[99,2,39]},{"path":[4,0,2,41,4],"span":[99,2,10]},{"path":[4,0,2,41,5],"span":[99,11,17]},{"path":[4,0,2,41,1],"span":[99,18,33]},{"path":[4,0,2,41,3],"span":[99,36,38]},{"path":[4,0,2,42],"span":[100,2,41]},{"path":[4,0,2,42,4],"span":[100,2,10]},{"path":[4,0,2,42,5],"span":[100,11,18]},{"path":[4,0,2,42,1],"span":[100,19,35]},{"path":[4,0,2,42,3],"span":[100,38,40]},{"path":[4,0,2,43],"span":[101,2,41]},{"path":[4,0,2,43,4],"span":[101,2,10]},{"path":[4,0,2,43,5],"span":[101,11,18]},{"path":[4,0,2,43,1],"span":[101,19,35]},{"path":[4,0,2,43,3],"span":[101,38,40]},{"path":[4,0,2,44],"span":[102,2,43]},{"path":[4,0,2,44,4],"span":[102,2,10]},{"path":[4,0,2,44,5],"span":[102,11,19]},{"path":[4,0,2,44,1],"span":[102,20,37]},{"path":[4,0,2,44,3],"span":[102,40,42]},{"path":[4,0,2,45],"span":[103,2,43]},{"path":[4,0,2,45,4],"span":[103,2,10]},{"path":[4,0,2,45,5],"span":[103,11,19]},{"path":[4,0,2,45,1],"span":[103,20,37]},{"path":[4,0,2,45,3],"span":[103,40,42]},{"path":[4,0,2,46],"span":[104,2,37]},{"path":[4,0,2,46,4],"span":[104,2,10]},{"path":[4,0,2,46,5],"span":[104,11,16]},{"path":[4,0,2,46,1],"span":[104,17,31]},{"path":[4,0,2,46,3],"span":[104,34,36]},{"path":[4,0,2,47],"span":[105,2,39]},{"path":[4,0,2,47,4],"span":[105,2,10]},{"path":[4,0,2,47,5],"span":[105,11,17]},{"path":[4,0,2,47,1],"span":[105,18,33]},{"path":[4,0,2,47,3],"span":[105,36,38]},{"path":[4,0,2,48],"span":[106,2,35]},{"path":[4,0,2,48,4],"span":[106,2,10]},{"path":[4,0,2,48,5],"span":[106,11,15]},{"path":[4,0,2,48,1],"span":[106,16,29]},{"path":[4,0,2,48,3],"span":[106,32,34]},{"path":[4,0,2,49],"span":[107,2,39]},{"path":[4,0,2,49,4],"span":[107,2,10]},{"path":[4,0,2,49,5],"span":[107,11,17]},{"path":[4,0,2,49,1],"span":[107,18,33]},{"path":[4,0,2,49,3],"span":[107,36,38]},{"path":[4,0,2,50],"span":[108,2,37]},{"path":[4,0,2,50,4],"span":[108,2,10]},{"path":[4,0,2,50,5],"span":[108,11,16]},{"path":[4,0,2,50,1],"span":[108,17,31]},{"path":[4,0,2,50,3],"span":[108,34,36]},{"path":[4,0,2,51],"span":[111,2,54],"leadingComments":" Repeated and nested\n"},{"path":[4,0,2,51,4],"span":[111,2,10]},{"path":[4,0,2,51,6],"span":[111,11,24]},{"path":[4,0,2,51,1],"span":[111,25,48]},{"path":[4,0,2,51,3],"span":[111,51,53]},{"path":[4,0,2,52],"span":[112,2,48]},{"path":[4,0,2,52,4],"span":[112,2,10]},{"path":[4,0,2,52,6],"span":[112,11,21]},{"path":[4,0,2,52,1],"span":[112,22,42]},{"path":[4,0,2,52,3],"span":[112,45,47]},{"path":[4,0,2,53],"span":[113,2,68]},{"path":[4,0,2,53,4],"span":[113,2,10]},{"path":[4,0,2,53,5],"span":[113,11,17]},{"path":[4,0,2,53,1],"span":[113,18,39]},{"path":[4,0,2,53,3],"span":[113,42,44]},{"path":[4,0,2,53,8],"span":[113,45,67]},{"path":[4,0,2,53,8,1],"span":[113,46,66]},{"path":[4,0,2,54],"span":[114,2,52]},{"path":[4,0,2,54,4],"span":[114,2,10]},{"path":[4,0,2,54,5],"span":[114,11,17]},{"path":[4,0,2,54,1],"span":[114,18,31]},{"path":[4,0,2,54,3],"span":[114,34,36]},{"path":[4,0,2,54,8],"span":[114,37,51]},{"path":[4,0,2,54,8,1],"span":[114,38,50]},{"path":[4,0,2,55],"span":[115,2,66]},{"path":[4,0,2,55,4],"span":[115,2,10]},{"path":[4,0,2,55,6],"span":[115,11,24]},{"path":[4,0,2,55,1],"span":[115,25,46]},{"path":[4,0,2,55,3],"span":[115,49,51]},{"path":[4,0,2,55,8],"span":[115,52,65]},{"path":[4,0,2,55,8,5],"span":[115,53,64]},{"path":[4,0,2,56],"span":[118,2,50],"leadingComments":" Repeated wellknown.\n"},{"path":[4,0,2,56,4],"span":[118,2,10]},{"path":[4,0,2,56,6],"span":[118,11,30]},{"path":[4,0,2,56,1],"span":[118,31,43]},{"path":[4,0,2,56,3],"span":[118,46,49]},{"path":[4,0,2,57],"span":[119,2,60]},{"path":[4,0,2,57,4],"span":[119,2,10]},{"path":[4,0,2,57,6],"span":[119,11,35]},{"path":[4,0,2,57,1],"span":[119,36,53]},{"path":[4,0,2,57,3],"span":[119,56,59]},{"path":[4,0,2,58],"span":[120,2,62]},{"path":[4,0,2,58,4],"span":[120,2,10]},{"path":[4,0,2,58,6],"span":[120,11,36]},{"path":[4,0,2,58,1],"span":[120,37,55]},{"path":[4,0,2,58,3],"span":[120,58,61]},{"path":[4,0,2,59],"span":[121,2,56]},{"path":[4,0,2,59,4],"span":[121,2,10]},{"path":[4,0,2,59,6],"span":[121,11,33]},{"path":[4,0,2,59,1],"span":[121,34,49]},{"path":[4,0,2,59,3],"span":[121,52,55]},{"path":[4,0,2,60],"span":[122,2,54]},{"path":[4,0,2,60,4],"span":[122,2,10]},{"path":[4,0,2,60,6],"span":[122,11,32]},{"path":[4,0,2,60,1],"span":[122,33,47]},{"path":[4,0,2,60,3],"span":[122,50,53]},{"path":[4,0,2,61],"span":[123,2,67]},{"path":[4,0,2,61,4],"span":[123,2,10]},{"path":[4,0,2,61,6],"span":[123,11,37]},{"path":[4,0,2,61,1],"span":[123,38,60]},{"path":[4,0,2,61,3],"span":[123,63,66]},{"path":[4,0,2,62],"span":[124,2,67]},{"path":[4,0,2,62,4],"span":[124,2,10]},{"path":[4,0,2,62,6],"span":[124,11,37]},{"path":[4,0,2,62,1],"span":[124,38,60]},{"path":[4,0,2,62,3],"span":[124,63,66]},{"path":[4,0,2,63],"span":[125,2,69]},{"path":[4,0,2,63,4],"span":[125,2,10]},{"path":[4,0,2,63,6],"span":[125,11,38]},{"path":[4,0,2,63,1],"span":[125,39,62]},{"path":[4,0,2,63,3],"span":[125,65,68]},{"path":[4,0,2,64],"span":[126,2,67]},{"path":[4,0,2,64,4],"span":[126,2,10]},{"path":[4,0,2,64,6],"span":[126,11,37]},{"path":[4,0,2,64,1],"span":[126,38,60]},{"path":[4,0,2,64,3],"span":[126,63,66]},{"path":[4,0,2,65],"span":[127,2,69]},{"path":[4,0,2,65,4],"span":[127,2,10]},{"path":[4,0,2,65,6],"span":[127,11,38]},{"path":[4,0,2,65,1],"span":[127,39,62]},{"path":[4,0,2,65,3],"span":[127,65,68]},{"path":[4,0,2,66],"span":[128,2,69]},{"path":[4,0,2,66,4],"span":[128,2,10]},{"path":[4,0,2,66,6],"span":[128,11,38]},{"path":[4,0,2,66,1],"span":[128,39,62]},{"path":[4,0,2,66,3],"span":[128,65,68]},{"path":[4,0,2,67],"span":[129,2,69]},{"path":[4,0,2,67,4],"span":[129,2,10]},{"path":[4,0,2,67,6],"span":[129,11,38]},{"path":[4,0,2,67,1],"span":[129,39,62]},{"path":[4,0,2,67,3],"span":[129,65,68]},{"path":[4,0,2,68],"span":[130,2,65]},{"path":[4,0,2,68,4],"span":[130,2,10]},{"path":[4,0,2,68,6],"span":[130,11,36]},{"path":[4,0,2,68,1],"span":[130,37,58]},{"path":[4,0,2,68,3],"span":[130,61,64]},{"path":[4,0,2,69],"span":[131,2,67]},{"path":[4,0,2,69,4],"span":[131,2,10]},{"path":[4,0,2,69,6],"span":[131,11,37]},{"path":[4,0,2,69,1],"span":[131,38,60]},{"path":[4,0,2,69,3],"span":[131,63,66]},{"path":[4,0,2,70],"span":[132,2,63]},{"path":[4,0,2,70,4],"span":[132,2,10]},{"path":[4,0,2,70,6],"span":[132,11,36]},{"path":[4,0,2,70,1],"span":[132,37,56]},{"path":[4,0,2,70,3],"span":[132,59,62]},{"path":[4,0,2,71],"span":[133,2,63]},{"path":[4,0,2,71,4],"span":[133,2,10]},{"path":[4,0,2,71,6],"span":[133,11,36]},{"path":[4,0,2,71,1],"span":[133,37,56]},{"path":[4,0,2,71,3],"span":[133,59,62]},{"path":[4,0,2,72],"span":[136,2,60],"leadingComments":" Map\n"},{"path":[4,0,2,72,6],"span":[136,2,32]},{"path":[4,0,2,72,1],"span":[136,33,54]},{"path":[4,0,2,72,3],"span":[136,57,59]},{"path":[4,0,2,73],"span":[138,2,37]},{"path":[4,0,2,73,6],"span":[138,2,17]},{"path":[4,0,2,73,1],"span":[138,18,31]},{"path":[4,0,2,73,3],"span":[138,34,36]},{"path":[4,0,2,74],"span":[139,2,41]},{"path":[4,0,2,74,6],"span":[139,2,19]},{"path":[4,0,2,74,1],"span":[139,20,35]},{"path":[4,0,2,74,3],"span":[139,38,40]},{"path":[4,0,2,75],"span":[140,2,39]},{"path":[4,0,2,75,6],"span":[140,2,18]},{"path":[4,0,2,75,1],"span":[140,19,33]},{"path":[4,0,2,75,3],"span":[140,36,38]},{"path":[4,0,2,76],"span":[141,2,39]},{"path":[4,0,2,76,6],"span":[141,2,18]},{"path":[4,0,2,76,1],"span":[141,19,33]},{"path":[4,0,2,76,3],"span":[141,36,38]},{"path":[4,0,2,77],"span":[142,2,39]},{"path":[4,0,2,77,6],"span":[142,2,18]},{"path":[4,0,2,77,1],"span":[142,19,33]},{"path":[4,0,2,77,3],"span":[142,36,38]},{"path":[4,0,2,78],"span":[143,2,41]},{"path":[4,0,2,78,6],"span":[143,2,19]},{"path":[4,0,2,78,1],"span":[143,20,35]},{"path":[4,0,2,78,3],"span":[143,38,40]},{"path":[4,0,2,79],"span":[144,2,41]},{"path":[4,0,2,79,6],"span":[144,2,19]},{"path":[4,0,2,79,1],"span":[144,20,35]},{"path":[4,0,2,79,3],"span":[144,38,40]},{"path":[4,0,2,80],"span":[145,2,39]},{"path":[4,0,2,80,6],"span":[145,2,18]},{"path":[4,0,2,80,1],"span":[145,19,33]},{"path":[4,0,2,80,3],"span":[145,36,38]},{"path":[4,0,2,81],"span":[146,2,41]},{"path":[4,0,2,81,6],"span":[146,2,19]},{"path":[4,0,2,81,1],"span":[146,20,35]},{"path":[4,0,2,81,3],"span":[146,38,40]},{"path":[4,0,2,82],"span":[147,2,43]},{"path":[4,0,2,82,6],"span":[147,2,23]},{"path":[4,0,2,82,1],"span":[147,24,37]},{"path":[4,0,2,82,3],"span":[147,40,42]},{"path":[4,0,2,83],"span":[148,2,49]},{"path":[4,0,2,83,6],"span":[148,2,26]},{"path":[4,0,2,83,1],"span":[148,27,43]},{"path":[4,0,2,83,3],"span":[148,46,48]},{"path":[4,0,2,84],"span":[149,2,62]},{"path":[4,0,2,84,6],"span":[149,2,37]},{"path":[4,0,2,84,1],"span":[149,38,55]},{"path":[4,0,2,84,3],"span":[149,58,61]},{"path":[4,0,2,85],"span":[150,2,64]},{"path":[4,0,2,85,6],"span":[150,2,38]},{"path":[4,0,2,85,1],"span":[150,39,57]},{"path":[4,0,2,85,3],"span":[150,60,63]},{"path":[4,0,2,86],"span":[151,2,65]},{"path":[4,0,2,86,6],"span":[151,2,38]},{"path":[4,0,2,86,1],"span":[151,39,58]},{"path":[4,0,2,86,3],"span":[151,61,64]},{"path":[4,0,2,87],"span":[152,2,52]},{"path":[4,0,2,87,6],"span":[152,2,32]},{"path":[4,0,2,87,1],"span":[152,33,45]},{"path":[4,0,2,87,3],"span":[152,48,51]},{"path":[4,0,2,88],"span":[153,2,58]},{"path":[4,0,2,88,6],"span":[153,2,35]},{"path":[4,0,2,88,1],"span":[153,36,51]},{"path":[4,0,2,88,3],"span":[153,54,57]},{"path":[4,0,2,89],"span":[154,2,56]},{"path":[4,0,2,89,6],"span":[154,2,34]},{"path":[4,0,2,89,1],"span":[154,35,49]},{"path":[4,0,2,89,3],"span":[154,52,55]},{"path":[4,0,2,90],"span":[155,2,65]},{"path":[4,0,2,90,6],"span":[155,2,38]},{"path":[4,0,2,90,1],"span":[155,39,58]},{"path":[4,0,2,90,3],"span":[155,61,64]},{"path":[4,0,2,91],"span":[156,2,69]},{"path":[4,0,2,91,6],"span":[156,2,39]},{"path":[4,0,2,91,1],"span":[156,40,62]},{"path":[4,0,2,91,3],"span":[156,65,68]},{"path":[4,0,2,92],"span":[157,2,69]},{"path":[4,0,2,92,6],"span":[157,2,39]},{"path":[4,0,2,92,1],"span":[157,40,62]},{"path":[4,0,2,92,3],"span":[157,65,68]},{"path":[4,0,2,93],"span":[158,2,71]},{"path":[4,0,2,93,6],"span":[158,2,40]},{"path":[4,0,2,93,1],"span":[158,41,64]},{"path":[4,0,2,93,3],"span":[158,67,70]},{"path":[4,0,2,94],"span":[159,2,69]},{"path":[4,0,2,94,6],"span":[159,2,39]},{"path":[4,0,2,94,1],"span":[159,40,62]},{"path":[4,0,2,94,3],"span":[159,65,68]},{"path":[4,0,2,95],"span":[160,2,71]},{"path":[4,0,2,95,6],"span":[160,2,40]},{"path":[4,0,2,95,1],"span":[160,41,64]},{"path":[4,0,2,95,3],"span":[160,67,70]},{"path":[4,0,2,96],"span":[161,2,71]},{"path":[4,0,2,96,6],"span":[161,2,40]},{"path":[4,0,2,96,1],"span":[161,41,64]},{"path":[4,0,2,96,3],"span":[161,67,70]},{"path":[4,0,2,97],"span":[162,2,71]},{"path":[4,0,2,97,6],"span":[162,2,40]},{"path":[4,0,2,97,1],"span":[162,41,64]},{"path":[4,0,2,97,3],"span":[162,67,70]},{"path":[4,0,2,98],"span":[163,2,67]},{"path":[4,0,2,98,6],"span":[163,2,38]},{"path":[4,0,2,98,1],"span":[163,39,60]},{"path":[4,0,2,98,3],"span":[163,63,66]},{"path":[4,0,2,99],"span":[164,2,69]},{"path":[4,0,2,99,6],"span":[164,2,39]},{"path":[4,0,2,99,1],"span":[164,40,62]},{"path":[4,0,2,99,3],"span":[164,65,68]},{"path":[4,0,2,100],"span":[166,2,39]},{"path":[4,0,2,100,6],"span":[166,2,18]},{"path":[4,0,2,100,1],"span":[166,19,33]},{"path":[4,0,2,100,3],"span":[166,36,38]},{"path":[4,0,2,101],"span":[167,2,43]},{"path":[4,0,2,101,6],"span":[167,2,20]},{"path":[4,0,2,101,1],"span":[167,21,37]},{"path":[4,0,2,101,3],"span":[167,40,42]},{"path":[4,0,2,102],"span":[168,2,41]},{"path":[4,0,2,102,6],"span":[168,2,19]},{"path":[4,0,2,102,1],"span":[168,20,35]},{"path":[4,0,2,102,3],"span":[168,38,40]},{"path":[4,0,2,103],"span":[169,2,41]},{"path":[4,0,2,103,6],"span":[169,2,19]},{"path":[4,0,2,103,1],"span":[169,20,35]},{"path":[4,0,2,103,3],"span":[169,38,40]},{"path":[4,0,2,104],"span":[170,2,41]},{"path":[4,0,2,104,6],"span":[170,2,19]},{"path":[4,0,2,104,1],"span":[170,20,35]},{"path":[4,0,2,104,3],"span":[170,38,40]},{"path":[4,0,2,105],"span":[171,2,43]},{"path":[4,0,2,105,6],"span":[171,2,20]},{"path":[4,0,2,105,1],"span":[171,21,37]},{"path":[4,0,2,105,3],"span":[171,40,42]},{"path":[4,0,2,106],"span":[172,2,43]},{"path":[4,0,2,106,6],"span":[172,2,20]},{"path":[4,0,2,106,1],"span":[172,21,37]},{"path":[4,0,2,106,3],"span":[172,40,42]},{"path":[4,0,2,107],"span":[173,2,41]},{"path":[4,0,2,107,6],"span":[173,2,19]},{"path":[4,0,2,107,1],"span":[173,20,35]},{"path":[4,0,2,107,3],"span":[173,38,40]},{"path":[4,0,2,108],"span":[174,2,43]},{"path":[4,0,2,108,6],"span":[174,2,20]},{"path":[4,0,2,108,1],"span":[174,21,37]},{"path":[4,0,2,108,3],"span":[174,40,42]},{"path":[4,0,2,109],"span":[175,2,45]},{"path":[4,0,2,109,6],"span":[175,2,24]},{"path":[4,0,2,109,1],"span":[175,25,39]},{"path":[4,0,2,109,3],"span":[175,42,44]},{"path":[4,0,2,110],"span":[176,2,51]},{"path":[4,0,2,110,6],"span":[176,2,27]},{"path":[4,0,2,110,1],"span":[176,28,45]},{"path":[4,0,2,110,3],"span":[176,48,50]},{"path":[4,0,2,111],"span":[177,2,64]},{"path":[4,0,2,111,6],"span":[177,2,38]},{"path":[4,0,2,111,1],"span":[177,39,57]},{"path":[4,0,2,111,3],"span":[177,60,63]},{"path":[4,0,2,112],"span":[178,2,66]},{"path":[4,0,2,112,6],"span":[178,2,39]},{"path":[4,0,2,112,1],"span":[178,40,59]},{"path":[4,0,2,112,3],"span":[178,62,65]},{"path":[4,0,2,113],"span":[179,2,67]},{"path":[4,0,2,113,6],"span":[179,2,39]},{"path":[4,0,2,113,1],"span":[179,40,60]},{"path":[4,0,2,113,3],"span":[179,63,66]},{"path":[4,0,2,114],"span":[180,2,54]},{"path":[4,0,2,114,6],"span":[180,2,33]},{"path":[4,0,2,114,1],"span":[180,34,47]},{"path":[4,0,2,114,3],"span":[180,50,53]},{"path":[4,0,2,115],"span":[181,2,60]},{"path":[4,0,2,115,6],"span":[181,2,36]},{"path":[4,0,2,115,1],"span":[181,37,53]},{"path":[4,0,2,115,3],"span":[181,56,59]},{"path":[4,0,2,116],"span":[182,2,58]},{"path":[4,0,2,116,6],"span":[182,2,35]},{"path":[4,0,2,116,1],"span":[182,36,51]},{"path":[4,0,2,116,3],"span":[182,54,57]},{"path":[4,0,2,117],"span":[183,2,67]},{"path":[4,0,2,117,6],"span":[183,2,39]},{"path":[4,0,2,117,1],"span":[183,40,60]},{"path":[4,0,2,117,3],"span":[183,63,66]},{"path":[4,0,2,118],"span":[184,2,71]},{"path":[4,0,2,118,6],"span":[184,2,40]},{"path":[4,0,2,118,1],"span":[184,41,64]},{"path":[4,0,2,118,3],"span":[184,67,70]},{"path":[4,0,2,119],"span":[185,2,71]},{"path":[4,0,2,119,6],"span":[185,2,40]},{"path":[4,0,2,119,1],"span":[185,41,64]},{"path":[4,0,2,119,3],"span":[185,67,70]},{"path":[4,0,2,120],"span":[186,2,73]},{"path":[4,0,2,120,6],"span":[186,2,41]},{"path":[4,0,2,120,1],"span":[186,42,66]},{"path":[4,0,2,120,3],"span":[186,69,72]},{"path":[4,0,2,121],"span":[187,2,71]},{"path":[4,0,2,121,6],"span":[187,2,40]},{"path":[4,0,2,121,1],"span":[187,41,64]},{"path":[4,0,2,121,3],"span":[187,67,70]},{"path":[4,0,2,122],"span":[188,2,73]},{"path":[4,0,2,122,6],"span":[188,2,41]},{"path":[4,0,2,122,1],"span":[188,42,66]},{"path":[4,0,2,122,3],"span":[188,69,72]},{"path":[4,0,2,123],"span":[189,2,73]},{"path":[4,0,2,123,6],"span":[189,2,41]},{"path":[4,0,2,123,1],"span":[189,42,66]},{"path":[4,0,2,123,3],"span":[189,69,72]},{"path":[4,0,2,124],"span":[190,2,73]},{"path":[4,0,2,124,6],"span":[190,2,41]},{"path":[4,0,2,124,1],"span":[190,42,66]},{"path":[4,0,2,124,3],"span":[190,69,72]},{"path":[4,0,2,125],"span":[191,2,69]},{"path":[4,0,2,125,6],"span":[191,2,39]},{"path":[4,0,2,125,1],"span":[191,40,62]},{"path":[4,0,2,125,3],"span":[191,65,68]},{"path":[4,0,2,126],"span":[192,2,71]},{"path":[4,0,2,126,6],"span":[192,2,40]},{"path":[4,0,2,126,1],"span":[192,41,64]},{"path":[4,0,2,126,3],"span":[192,67,70]},{"path":[4,0,2,127],"span":[194,2,39]},{"path":[4,0,2,127,6],"span":[194,2,18]},{"path":[4,0,2,127,1],"span":[194,19,33]},{"path":[4,0,2,127,3],"span":[194,36,38]},{"path":[4,0,2,128],"span":[195,2,43]},{"path":[4,0,2,128,6],"span":[195,2,20]},{"path":[4,0,2,128,1],"span":[195,21,37]},{"path":[4,0,2,128,3],"span":[195,40,42]},{"path":[4,0,2,129],"span":[196,2,41]},{"path":[4,0,2,129,6],"span":[196,2,19]},{"path":[4,0,2,129,1],"span":[196,20,35]},{"path":[4,0,2,129,3],"span":[196,38,40]},{"path":[4,0,2,130],"span":[197,2,41]},{"path":[4,0,2,130,6],"span":[197,2,19]},{"path":[4,0,2,130,1],"span":[197,20,35]},{"path":[4,0,2,130,3],"span":[197,38,40]},{"path":[4,0,2,131],"span":[198,2,41]},{"path":[4,0,2,131,6],"span":[198,2,19]},{"path":[4,0,2,131,1],"span":[198,20,35]},{"path":[4,0,2,131,3],"span":[198,38,40]},{"path":[4,0,2,132],"span":[199,2,43]},{"path":[4,0,2,132,6],"span":[199,2,20]},{"path":[4,0,2,132,1],"span":[199,21,37]},{"path":[4,0,2,132,3],"span":[199,40,42]},{"path":[4,0,2,133],"span":[200,2,43]},{"path":[4,0,2,133,6],"span":[200,2,20]},{"path":[4,0,2,133,1],"span":[200,21,37]},{"path":[4,0,2,133,3],"span":[200,40,42]},{"path":[4,0,2,134],"span":[201,2,41]},{"path":[4,0,2,134,6],"span":[201,2,19]},{"path":[4,0,2,134,1],"span":[201,20,35]},{"path":[4,0,2,134,3],"span":[201,38,40]},{"path":[4,0,2,135],"span":[202,2,43]},{"path":[4,0,2,135,6],"span":[202,2,20]},{"path":[4,0,2,135,1],"span":[202,21,37]},{"path":[4,0,2,135,3],"span":[202,40,42]},{"path":[4,0,2,136],"span":[203,2,45]},{"path":[4,0,2,136,6],"span":[203,2,24]},{"path":[4,0,2,136,1],"span":[203,25,39]},{"path":[4,0,2,136,3],"span":[203,42,44]},{"path":[4,0,2,137],"span":[204,2,51]},{"path":[4,0,2,137,6],"span":[204,2,27]},{"path":[4,0,2,137,1],"span":[204,28,45]},{"path":[4,0,2,137,3],"span":[204,48,50]},{"path":[4,0,2,138],"span":[205,2,64]},{"path":[4,0,2,138,6],"span":[205,2,38]},{"path":[4,0,2,138,1],"span":[205,39,57]},{"path":[4,0,2,138,3],"span":[205,60,63]},{"path":[4,0,2,139],"span":[206,2,66]},{"path":[4,0,2,139,6],"span":[206,2,39]},{"path":[4,0,2,139,1],"span":[206,40,59]},{"path":[4,0,2,139,3],"span":[206,62,65]},{"path":[4,0,2,140],"span":[207,2,67]},{"path":[4,0,2,140,6],"span":[207,2,39]},{"path":[4,0,2,140,1],"span":[207,40,60]},{"path":[4,0,2,140,3],"span":[207,63,66]},{"path":[4,0,2,141],"span":[208,2,54]},{"path":[4,0,2,141,6],"span":[208,2,33]},{"path":[4,0,2,141,1],"span":[208,34,47]},{"path":[4,0,2,141,3],"span":[208,50,53]},{"path":[4,0,2,142],"span":[209,2,60]},{"path":[4,0,2,142,6],"span":[209,2,36]},{"path":[4,0,2,142,1],"span":[209,37,53]},{"path":[4,0,2,142,3],"span":[209,56,59]},{"path":[4,0,2,143],"span":[210,2,58]},{"path":[4,0,2,143,6],"span":[210,2,35]},{"path":[4,0,2,143,1],"span":[210,36,51]},{"path":[4,0,2,143,3],"span":[210,54,57]},{"path":[4,0,2,144],"span":[211,2,67]},{"path":[4,0,2,144,6],"span":[211,2,39]},{"path":[4,0,2,144,1],"span":[211,40,60]},{"path":[4,0,2,144,3],"span":[211,63,66]},{"path":[4,0,2,145],"span":[212,2,71]},{"path":[4,0,2,145,6],"span":[212,2,40]},{"path":[4,0,2,145,1],"span":[212,41,64]},{"path":[4,0,2,145,3],"span":[212,67,70]},{"path":[4,0,2,146],"span":[213,2,71]},{"path":[4,0,2,146,6],"span":[213,2,40]},{"path":[4,0,2,146,1],"span":[213,41,64]},{"path":[4,0,2,146,3],"span":[213,67,70]},{"path":[4,0,2,147],"span":[214,2,73]},{"path":[4,0,2,147,6],"span":[214,2,41]},{"path":[4,0,2,147,1],"span":[214,42,66]},{"path":[4,0,2,147,3],"span":[214,69,72]},{"path":[4,0,2,148],"span":[215,2,71]},{"path":[4,0,2,148,6],"span":[215,2,40]},{"path":[4,0,2,148,1],"span":[215,41,64]},{"path":[4,0,2,148,3],"span":[215,67,70]},{"path":[4,0,2,149],"span":[216,2,73]},{"path":[4,0,2,149,6],"span":[216,2,41]},{"path":[4,0,2,149,1],"span":[216,42,66]},{"path":[4,0,2,149,3],"span":[216,69,72]},{"path":[4,0,2,150],"span":[217,2,73]},{"path":[4,0,2,150,6],"span":[217,2,41]},{"path":[4,0,2,150,1],"span":[217,42,66]},{"path":[4,0,2,150,3],"span":[217,69,72]},{"path":[4,0,2,151],"span":[218,2,73]},{"path":[4,0,2,151,6],"span":[218,2,41]},{"path":[4,0,2,151,1],"span":[218,42,66]},{"path":[4,0,2,151,3],"span":[218,69,72]},{"path":[4,0,2,152],"span":[219,2,69]},{"path":[4,0,2,152,6],"span":[219,2,39]},{"path":[4,0,2,152,1],"span":[219,40,62]},{"path":[4,0,2,152,3],"span":[219,65,68]},{"path":[4,0,2,153],"span":[220,2,71]},{"path":[4,0,2,153,6],"span":[220,2,40]},{"path":[4,0,2,153,1],"span":[220,41,64]},{"path":[4,0,2,153,3],"span":[220,67,70]},{"path":[4,0,2,154],"span":[222,2,41]},{"path":[4,0,2,154,6],"span":[222,2,19]},{"path":[4,0,2,154,1],"span":[222,20,35]},{"path":[4,0,2,154,3],"span":[222,38,40]},{"path":[4,0,2,155],"span":[223,2,45]},{"path":[4,0,2,155,6],"span":[223,2,21]},{"path":[4,0,2,155,1],"span":[223,22,39]},{"path":[4,0,2,155,3],"span":[223,42,44]},{"path":[4,0,2,156],"span":[224,2,43]},{"path":[4,0,2,156,6],"span":[224,2,20]},{"path":[4,0,2,156,1],"span":[224,21,37]},{"path":[4,0,2,156,3],"span":[224,40,42]},{"path":[4,0,2,157],"span":[225,2,43]},{"path":[4,0,2,157,6],"span":[225,2,20]},{"path":[4,0,2,157,1],"span":[225,21,37]},{"path":[4,0,2,157,3],"span":[225,40,42]},{"path":[4,0,2,158],"span":[226,2,44]},{"path":[4,0,2,158,6],"span":[226,2,20]},{"path":[4,0,2,158,1],"span":[226,21,37]},{"path":[4,0,2,158,3],"span":[226,40,43]},{"path":[4,0,2,159],"span":[227,2,46]},{"path":[4,0,2,159,6],"span":[227,2,21]},{"path":[4,0,2,159,1],"span":[227,22,39]},{"path":[4,0,2,159,3],"span":[227,42,45]},{"path":[4,0,2,160],"span":[228,2,46]},{"path":[4,0,2,160,6],"span":[228,2,21]},{"path":[4,0,2,160,1],"span":[228,22,39]},{"path":[4,0,2,160,3],"span":[228,42,45]},{"path":[4,0,2,161],"span":[229,2,44]},{"path":[4,0,2,161,6],"span":[229,2,20]},{"path":[4,0,2,161,1],"span":[229,21,37]},{"path":[4,0,2,161,3],"span":[229,40,43]},{"path":[4,0,2,162],"span":[230,2,46]},{"path":[4,0,2,162,6],"span":[230,2,21]},{"path":[4,0,2,162,1],"span":[230,22,39]},{"path":[4,0,2,162,3],"span":[230,42,45]},{"path":[4,0,2,163],"span":[231,2,48]},{"path":[4,0,2,163,6],"span":[231,2,25]},{"path":[4,0,2,163,1],"span":[231,26,41]},{"path":[4,0,2,163,3],"span":[231,44,47]},{"path":[4,0,2,164],"span":[232,2,54]},{"path":[4,0,2,164,6],"span":[232,2,28]},{"path":[4,0,2,164,1],"span":[232,29,47]},{"path":[4,0,2,164,3],"span":[232,50,53]},{"path":[4,0,2,165],"span":[233,2,66]},{"path":[4,0,2,165,6],"span":[233,2,39]},{"path":[4,0,2,165,1],"span":[233,40,59]},{"path":[4,0,2,165,3],"span":[233,62,65]},{"path":[4,0,2,166],"span":[234,2,68]},{"path":[4,0,2,166,6],"span":[234,2,40]},{"path":[4,0,2,166,1],"span":[234,41,61]},{"path":[4,0,2,166,3],"span":[234,64,67]},{"path":[4,0,2,167],"span":[235,2,69]},{"path":[4,0,2,167,6],"span":[235,2,40]},{"path":[4,0,2,167,1],"span":[235,41,62]},{"path":[4,0,2,167,3],"span":[235,65,68]},{"path":[4,0,2,168],"span":[236,2,56]},{"path":[4,0,2,168,6],"span":[236,2,34]},{"path":[4,0,2,168,1],"span":[236,35,49]},{"path":[4,0,2,168,3],"span":[236,52,55]},{"path":[4,0,2,169],"span":[237,2,62]},{"path":[4,0,2,169,6],"span":[237,2,37]},{"path":[4,0,2,169,1],"span":[237,38,55]},{"path":[4,0,2,169,3],"span":[237,58,61]},{"path":[4,0,2,170],"span":[238,2,60]},{"path":[4,0,2,170,6],"span":[238,2,36]},{"path":[4,0,2,170,1],"span":[238,37,53]},{"path":[4,0,2,170,3],"span":[238,56,59]},{"path":[4,0,2,171],"span":[239,2,69]},{"path":[4,0,2,171,6],"span":[239,2,40]},{"path":[4,0,2,171,1],"span":[239,41,62]},{"path":[4,0,2,171,3],"span":[239,65,68]},{"path":[4,0,2,172],"span":[240,2,73]},{"path":[4,0,2,172,6],"span":[240,2,41]},{"path":[4,0,2,172,1],"span":[240,42,66]},{"path":[4,0,2,172,3],"span":[240,69,72]},{"path":[4,0,2,173],"span":[241,2,73]},{"path":[4,0,2,173,6],"span":[241,2,41]},{"path":[4,0,2,173,1],"span":[241,42,66]},{"path":[4,0,2,173,3],"span":[241,69,72]},{"path":[4,0,2,174],"span":[242,2,75]},{"path":[4,0,2,174,6],"span":[242,2,42]},{"path":[4,0,2,174,1],"span":[242,43,68]},{"path":[4,0,2,174,3],"span":[242,71,74]},{"path":[4,0,2,175],"span":[243,2,73]},{"path":[4,0,2,175,6],"span":[243,2,41]},{"path":[4,0,2,175,1],"span":[243,42,66]},{"path":[4,0,2,175,3],"span":[243,69,72]},{"path":[4,0,2,176],"span":[244,2,75]},{"path":[4,0,2,176,6],"span":[244,2,42]},{"path":[4,0,2,176,1],"span":[244,43,68]},{"path":[4,0,2,176,3],"span":[244,71,74]},{"path":[4,0,2,177],"span":[245,2,75]},{"path":[4,0,2,177,6],"span":[245,2,42]},{"path":[4,0,2,177,1],"span":[245,43,68]},{"path":[4,0,2,177,3],"span":[245,71,74]},{"path":[4,0,2,178],"span":[246,2,75]},{"path":[4,0,2,178,6],"span":[246,2,42]},{"path":[4,0,2,178,1],"span":[246,43,68]},{"path":[4,0,2,178,3],"span":[246,71,74]},{"path":[4,0,2,179],"span":[247,2,71]},{"path":[4,0,2,179,6],"span":[247,2,40]},{"path":[4,0,2,179,1],"span":[247,41,64]},{"path":[4,0,2,179,3],"span":[247,67,70]},{"path":[4,0,2,180],"span":[248,2,73]},{"path":[4,0,2,180,6],"span":[248,2,41]},{"path":[4,0,2,180,1],"span":[248,42,66]},{"path":[4,0,2,180,3],"span":[248,69,72]},{"path":[4,0,2,181],"span":[250,2,42]},{"path":[4,0,2,181,6],"span":[250,2,19]},{"path":[4,0,2,181,1],"span":[250,20,35]},{"path":[4,0,2,181,3],"span":[250,38,41]},{"path":[4,0,2,182],"span":[251,2,46]},{"path":[4,0,2,182,6],"span":[251,2,21]},{"path":[4,0,2,182,1],"span":[251,22,39]},{"path":[4,0,2,182,3],"span":[251,42,45]},{"path":[4,0,2,183],"span":[252,2,44]},{"path":[4,0,2,183,6],"span":[252,2,20]},{"path":[4,0,2,183,1],"span":[252,21,37]},{"path":[4,0,2,183,3],"span":[252,40,43]},{"path":[4,0,2,184],"span":[253,2,44]},{"path":[4,0,2,184,6],"span":[253,2,20]},{"path":[4,0,2,184,1],"span":[253,21,37]},{"path":[4,0,2,184,3],"span":[253,40,43]},{"path":[4,0,2,185],"span":[254,2,44]},{"path":[4,0,2,185,6],"span":[254,2,20]},{"path":[4,0,2,185,1],"span":[254,21,37]},{"path":[4,0,2,185,3],"span":[254,40,43]},{"path":[4,0,2,186],"span":[255,2,46]},{"path":[4,0,2,186,6],"span":[255,2,21]},{"path":[4,0,2,186,1],"span":[255,22,39]},{"path":[4,0,2,186,3],"span":[255,42,45]},{"path":[4,0,2,187],"span":[256,2,46]},{"path":[4,0,2,187,6],"span":[256,2,21]},{"path":[4,0,2,187,1],"span":[256,22,39]},{"path":[4,0,2,187,3],"span":[256,42,45]},{"path":[4,0,2,188],"span":[257,2,44]},{"path":[4,0,2,188,6],"span":[257,2,20]},{"path":[4,0,2,188,1],"span":[257,21,37]},{"path":[4,0,2,188,3],"span":[257,40,43]},{"path":[4,0,2,189],"span":[258,2,46]},{"path":[4,0,2,189,6],"span":[258,2,21]},{"path":[4,0,2,189,1],"span":[258,22,39]},{"path":[4,0,2,189,3],"span":[258,42,45]},{"path":[4,0,2,190],"span":[259,2,48]},{"path":[4,0,2,190,6],"span":[259,2,25]},{"path":[4,0,2,190,1],"span":[259,26,41]},{"path":[4,0,2,190,3],"span":[259,44,47]},{"path":[4,0,2,191],"span":[260,2,54]},{"path":[4,0,2,191,6],"span":[260,2,28]},{"path":[4,0,2,191,1],"span":[260,29,47]},{"path":[4,0,2,191,3],"span":[260,50,53]},{"path":[4,0,2,192],"span":[261,2,66]},{"path":[4,0,2,192,6],"span":[261,2,39]},{"path":[4,0,2,192,1],"span":[261,40,59]},{"path":[4,0,2,192,3],"span":[261,62,65]},{"path":[4,0,2,193],"span":[262,2,68]},{"path":[4,0,2,193,6],"span":[262,2,40]},{"path":[4,0,2,193,1],"span":[262,41,61]},{"path":[4,0,2,193,3],"span":[262,64,67]},{"path":[4,0,2,194],"span":[263,2,69]},{"path":[4,0,2,194,6],"span":[263,2,40]},{"path":[4,0,2,194,1],"span":[263,41,62]},{"path":[4,0,2,194,3],"span":[263,65,68]},{"path":[4,0,2,195],"span":[264,2,56]},{"path":[4,0,2,195,6],"span":[264,2,34]},{"path":[4,0,2,195,1],"span":[264,35,49]},{"path":[4,0,2,195,3],"span":[264,52,55]},{"path":[4,0,2,196],"span":[265,2,62]},{"path":[4,0,2,196,6],"span":[265,2,37]},{"path":[4,0,2,196,1],"span":[265,38,55]},{"path":[4,0,2,196,3],"span":[265,58,61]},{"path":[4,0,2,197],"span":[266,2,60]},{"path":[4,0,2,197,6],"span":[266,2,36]},{"path":[4,0,2,197,1],"span":[266,37,53]},{"path":[4,0,2,197,3],"span":[266,56,59]},{"path":[4,0,2,198],"span":[267,2,69]},{"path":[4,0,2,198,6],"span":[267,2,40]},{"path":[4,0,2,198,1],"span":[267,41,62]},{"path":[4,0,2,198,3],"span":[267,65,68]},{"path":[4,0,2,199],"span":[268,2,73]},{"path":[4,0,2,199,6],"span":[268,2,41]},{"path":[4,0,2,199,1],"span":[268,42,66]},{"path":[4,0,2,199,3],"span":[268,69,72]},{"path":[4,0,2,200],"span":[269,2,73]},{"path":[4,0,2,200,6],"span":[269,2,41]},{"path":[4,0,2,200,1],"span":[269,42,66]},{"path":[4,0,2,200,3],"span":[269,69,72]},{"path":[4,0,2,201],"span":[270,2,75]},{"path":[4,0,2,201,6],"span":[270,2,42]},{"path":[4,0,2,201,1],"span":[270,43,68]},{"path":[4,0,2,201,3],"span":[270,71,74]},{"path":[4,0,2,202],"span":[271,2,73]},{"path":[4,0,2,202,6],"span":[271,2,41]},{"path":[4,0,2,202,1],"span":[271,42,66]},{"path":[4,0,2,202,3],"span":[271,69,72]},{"path":[4,0,2,203],"span":[272,2,75]},{"path":[4,0,2,203,6],"span":[272,2,42]},{"path":[4,0,2,203,1],"span":[272,43,68]},{"path":[4,0,2,203,3],"span":[272,71,74]},{"path":[4,0,2,204],"span":[273,2,75]},{"path":[4,0,2,204,6],"span":[273,2,42]},{"path":[4,0,2,204,1],"span":[273,43,68]},{"path":[4,0,2,204,3],"span":[273,71,74]},{"path":[4,0,2,205],"span":[274,2,75]},{"path":[4,0,2,205,6],"span":[274,2,42]},{"path":[4,0,2,205,1],"span":[274,43,68]},{"path":[4,0,2,205,3],"span":[274,71,74]},{"path":[4,0,2,206],"span":[275,2,71]},{"path":[4,0,2,206,6],"span":[275,2,40]},{"path":[4,0,2,206,1],"span":[275,41,64]},{"path":[4,0,2,206,3],"span":[275,67,70]},{"path":[4,0,2,207],"span":[276,2,73]},{"path":[4,0,2,207,6],"span":[276,2,41]},{"path":[4,0,2,207,1],"span":[276,42,66]},{"path":[4,0,2,207,3],"span":[276,69,72]},{"path":[4,0,2,208],"span":[278,2,42]},{"path":[4,0,2,208,6],"span":[278,2,19]},{"path":[4,0,2,208,1],"span":[278,20,35]},{"path":[4,0,2,208,3],"span":[278,38,41]},{"path":[4,0,2,209],"span":[279,2,45]},{"path":[4,0,2,209,6],"span":[279,2,21]},{"path":[4,0,2,209,1],"span":[279,22,39]},{"path":[4,0,2,209,3],"span":[279,42,44]},{"path":[4,0,2,210],"span":[280,2,44]},{"path":[4,0,2,210,6],"span":[280,2,20]},{"path":[4,0,2,210,1],"span":[280,21,37]},{"path":[4,0,2,210,3],"span":[280,40,43]},{"path":[4,0,2,211],"span":[281,2,44]},{"path":[4,0,2,211,6],"span":[281,2,20]},{"path":[4,0,2,211,1],"span":[281,21,37]},{"path":[4,0,2,211,3],"span":[281,40,43]},{"path":[4,0,2,212],"span":[282,2,44]},{"path":[4,0,2,212,6],"span":[282,2,20]},{"path":[4,0,2,212,1],"span":[282,21,37]},{"path":[4,0,2,212,3],"span":[282,40,43]},{"path":[4,0,2,213],"span":[283,2,46]},{"path":[4,0,2,213,6],"span":[283,2,21]},{"path":[4,0,2,213,1],"span":[283,22,39]},{"path":[4,0,2,213,3],"span":[283,42,45]},{"path":[4,0,2,214],"span":[284,2,46]},{"path":[4,0,2,214,6],"span":[284,2,21]},{"path":[4,0,2,214,1],"span":[284,22,39]},{"path":[4,0,2,214,3],"span":[284,42,45]},{"path":[4,0,2,215],"span":[285,2,44]},{"path":[4,0,2,215,6],"span":[285,2,20]},{"path":[4,0,2,215,1],"span":[285,21,37]},{"path":[4,0,2,215,3],"span":[285,40,43]},{"path":[4,0,2,216],"span":[286,2,46]},{"path":[4,0,2,216,6],"span":[286,2,21]},{"path":[4,0,2,216,1],"span":[286,22,39]},{"path":[4,0,2,216,3],"span":[286,42,45]},{"path":[4,0,2,217],"span":[287,2,48]},{"path":[4,0,2,217,6],"span":[287,2,25]},{"path":[4,0,2,217,1],"span":[287,26,41]},{"path":[4,0,2,217,3],"span":[287,44,47]},{"path":[4,0,2,218],"span":[288,2,54]},{"path":[4,0,2,218,6],"span":[288,2,28]},{"path":[4,0,2,218,1],"span":[288,29,47]},{"path":[4,0,2,218,3],"span":[288,50,53]},{"path":[4,0,2,219],"span":[289,2,66]},{"path":[4,0,2,219,6],"span":[289,2,39]},{"path":[4,0,2,219,1],"span":[289,40,59]},{"path":[4,0,2,219,3],"span":[289,62,65]},{"path":[4,0,2,220],"span":[290,2,68]},{"path":[4,0,2,220,6],"span":[290,2,40]},{"path":[4,0,2,220,1],"span":[290,41,61]},{"path":[4,0,2,220,3],"span":[290,64,67]},{"path":[4,0,2,221],"span":[291,2,69]},{"path":[4,0,2,221,6],"span":[291,2,40]},{"path":[4,0,2,221,1],"span":[291,41,62]},{"path":[4,0,2,221,3],"span":[291,65,68]},{"path":[4,0,2,222],"span":[292,2,56]},{"path":[4,0,2,222,6],"span":[292,2,34]},{"path":[4,0,2,222,1],"span":[292,35,49]},{"path":[4,0,2,222,3],"span":[292,52,55]},{"path":[4,0,2,223],"span":[293,2,62]},{"path":[4,0,2,223,6],"span":[293,2,37]},{"path":[4,0,2,223,1],"span":[293,38,55]},{"path":[4,0,2,223,3],"span":[293,58,61]},{"path":[4,0,2,224],"span":[294,2,60]},{"path":[4,0,2,224,6],"span":[294,2,36]},{"path":[4,0,2,224,1],"span":[294,37,53]},{"path":[4,0,2,224,3],"span":[294,56,59]},{"path":[4,0,2,225],"span":[295,2,69]},{"path":[4,0,2,225,6],"span":[295,2,40]},{"path":[4,0,2,225,1],"span":[295,41,62]},{"path":[4,0,2,225,3],"span":[295,65,68]},{"path":[4,0,2,226],"span":[296,2,73]},{"path":[4,0,2,226,6],"span":[296,2,41]},{"path":[4,0,2,226,1],"span":[296,42,66]},{"path":[4,0,2,226,3],"span":[296,69,72]},{"path":[4,0,2,227],"span":[297,2,73]},{"path":[4,0,2,227,6],"span":[297,2,41]},{"path":[4,0,2,227,1],"span":[297,42,66]},{"path":[4,0,2,227,3],"span":[297,69,72]},{"path":[4,0,2,228],"span":[298,2,75]},{"path":[4,0,2,228,6],"span":[298,2,42]},{"path":[4,0,2,228,1],"span":[298,43,68]},{"path":[4,0,2,228,3],"span":[298,71,74]},{"path":[4,0,2,229],"span":[299,2,73]},{"path":[4,0,2,229,6],"span":[299,2,41]},{"path":[4,0,2,229,1],"span":[299,42,66]},{"path":[4,0,2,229,3],"span":[299,69,72]},{"path":[4,0,2,230],"span":[300,2,75]},{"path":[4,0,2,230,6],"span":[300,2,42]},{"path":[4,0,2,230,1],"span":[300,43,68]},{"path":[4,0,2,230,3],"span":[300,71,74]},{"path":[4,0,2,231],"span":[301,2,75]},{"path":[4,0,2,231,6],"span":[301,2,42]},{"path":[4,0,2,231,1],"span":[301,43,68]},{"path":[4,0,2,231,3],"span":[301,71,74]},{"path":[4,0,2,232],"span":[302,2,75]},{"path":[4,0,2,232,6],"span":[302,2,42]},{"path":[4,0,2,232,1],"span":[302,43,68]},{"path":[4,0,2,232,3],"span":[302,71,74]},{"path":[4,0,2,233],"span":[303,2,71]},{"path":[4,0,2,233,6],"span":[303,2,40]},{"path":[4,0,2,233,1],"span":[303,41,64]},{"path":[4,0,2,233,3],"span":[303,67,70]},{"path":[4,0,2,234],"span":[304,2,73]},{"path":[4,0,2,234,6],"span":[304,2,41]},{"path":[4,0,2,234,1],"span":[304,42,66]},{"path":[4,0,2,234,3],"span":[304,69,72]},{"path":[4,1],"span":[308,0,311,1],"leadingComments":" This proto includes a recursively nested message.\n"},{"path":[4,1,1],"span":[308,8,26]},{"path":[4,1,2,0],"span":[309,2,31]},{"path":[4,1,2,0,6],"span":[309,2,20]},{"path":[4,1,2,0,1],"span":[309,21,26]},{"path":[4,1,2,0,3],"span":[309,29,30]},{"path":[4,1,2,1],"span":[310,2,27]},{"path":[4,1,2,1,6],"span":[310,2,14]},{"path":[4,1,2,1,1],"span":[310,15,22]},{"path":[4,1,2,1,3],"span":[310,25,26]},{"path":[5,0],"span":[314,0,318,1],"leadingComments":" This proto tests that global enums are resolved correctly.\n"},{"path":[5,0,1],"span":[314,5,15]},{"path":[5,0,2,0],"span":[315,2,10]},{"path":[5,0,2,0,1],"span":[315,2,5]},{"path":[5,0,2,0,2],"span":[315,8,9]},{"path":[5,0,2,1],"span":[316,2,10]},{"path":[5,0,2,1,1],"span":[316,2,5]},{"path":[5,0,2,1,2],"span":[316,8,9]},{"path":[5,0,2,2],"span":[317,2,10]},{"path":[5,0,2,2,1],"span":[317,2,5]},{"path":[5,0,2,2,2],"span":[317,8,9]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}},{"name":"buf/protoschema/test/v1/test_cases.proto","package":"buf.protoschema.test.v1","dependency":["buf/validate/validate.proto","bufext/cel/expr/conformance/proto3/test_all_types.proto"],"messageType":[{"name":"NestedReference","field":[{"name":"nested_message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage","jsonName":"nestedMessage"}]},{"name":"CustomOptions","field":[{"name":"int32_field","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT32","jsonName":"int32Field","options":{"packed":true,"[buf.validate.field]":{"cel":[{"id":"int32_field_id","message":"must be true","expression":"1 == 1"}]}}},{"name":"string_field","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"stringField","options":{"[buf.validate.field]":{"cel":[{"id":"string_field_id","message":"must be true","expression":"1 == 1"}]}}}],"oneofDecl":[{"name":"kind","options":{"[buf.validate.oneof]":{"required":true}}}],"options":{"noStandardDescriptorAccessor":true,"[buf.validate.message]":{"cel":[{"id":"custom_option_id","message":"must be true","expression":"1 == 1"}]}}},{"name":"IgnoreField","field":[{"name":"string_field","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"stringField"},{"name":"int32_field","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"int32Field"},{"name":"bool_field","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"boolField"}]}],"sourceCodeInfo":{"location":[{"span":[14,0,57,1]},{"path":[12],"span":[14,0,18],"leadingDetachedComments":[" Copyright 2024 Buf Technologies, Inc.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"]},{"path":[2],"span":[16,0,32]},{"path":[3,0],"span":[18,0,37]},{"path":[3,1],"span":[19,0,65]},{"path":[4,0],"span":[21,0,23,1]},{"path":[4,0,1],"span":[21,8,23]},{"path":[4,0,2,0],"span":[22,2,83]},{"path":[4,0,2,0,6],"span":[22,2,63]},{"path":[4,0,2,0,1],"span":[22,64,78]},{"path":[4,0,2,0,3],"span":[22,81,82]},{"path":[4,1],"span":[25,0,50,1]},{"path":[4,1,1],"span":[25,8,21]},{"path":[4,1,7],"span":[26,2,30,4]},{"path":[4,1,7,1159,3,0],"span":[26,2,30,4]},{"path":[4,1,7,1159,3,0,1],"span":[27,4,26]},{"path":[4,1,7,1159,3,0,3],"span":[28,4,24]},{"path":[4,1,7,1159,3,0,2],"span":[29,4,27]},{"path":[4,1,7],"span":[31,2,48]},{"path":[4,1,7,2],"span":[31,2,48]},{"path":[4,1,2,0],"span":[33,2,40,4]},{"path":[4,1,2,0,4],"span":[33,2,10]},{"path":[4,1,2,0,5],"span":[33,11,16]},{"path":[4,1,2,0,1],"span":[33,17,28]},{"path":[4,1,2,0,3],"span":[33,31,32]},{"path":[4,1,2,0,8],"span":[33,33,40,3]},{"path":[4,1,2,0,8,2],"span":[34,4,17]},{"path":[4,1,2,0,8,1159,23,0],"span":[35,4,39,5]},{"path":[4,1,2,0,8,1159,23,0,1],"span":[36,6,26]},{"path":[4,1,2,0,8,1159,23,0,3],"span":[37,6,26]},{"path":[4,1,2,0,8,1159,23,0,2],"span":[38,6,29]},{"path":[4,1,8,0],"span":[42,2,49,3]},{"path":[4,1,8,0,1],"span":[42,8,12]},{"path":[4,1,8,0,2],"span":[43,4,48]},{"path":[4,1,8,0,2,1159,1],"span":[43,4,48]},{"path":[4,1,2,1],"span":[44,4,48,7]},{"path":[4,1,2,1,5],"span":[44,4,10]},{"path":[4,1,2,1,1],"span":[44,11,23]},{"path":[4,1,2,1,3],"span":[44,26,27]},{"path":[4,1,2,1,8],"span":[44,28,48,6]},{"path":[4,1,2,1,8,1159,23,0],"span":[44,29,48,5]},{"path":[4,1,2,1,8,1159,23,0,1],"span":[45,6,27]},{"path":[4,1,2,1,8,1159,23,0,3],"span":[46,6,26]},{"path":[4,1,2,1,8,1159,23,0,2],"span":[47,6,29]},{"path":[4,2],"span":[52,0,57,1]},{"path":[4,2,1],"span":[52,8,19]},{"path":[4,2,2,0],"span":[53,2,26],"trailingComments":" jsonschema:ignore\n"},{"path":[4,2,2,0,5],"span":[53,2,8]},{"path":[4,2,2,0,1],"span":[53,9,21]},{"path":[4,2,2,0,3],"span":[53,24,25]},{"path":[4,2,2,1],"span":[55,2,24],"leadingComments":" jsonschema:ignore\n"},{"path":[4,2,2,1,5],"span":[55,2,7]},{"path":[4,2,2,1,1],"span":[55,8,19]},{"path":[4,2,2,1,3],"span":[55,22,23]},{"path":[4,2,2,2],"span":[56,2,22]},{"path":[4,2,2,2,5],"span":[56,2,6]},{"path":[4,2,2,2,1],"span":[56,7,17]},{"path":[4,2,2,2,3],"span":[56,20,21]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]} \ No newline at end of file diff --git a/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json b/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json new file mode 100644 index 0000000..32608fe --- /dev/null +++ b/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json @@ -0,0 +1,12 @@ +{ + "$id": "buf.protoschema.test.v1.IgnoreField.schema.json", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "additionalProperties": false, + "properties": { + "bool_field": { + "type": "boolean" + } + }, + "title": "Ignore Field", + "type": "object" +} diff --git a/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json b/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json index 70ac376..e466589 100644 --- a/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json +++ b/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json @@ -2,6 +2,7 @@ "$id": "bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, + "description": "This proto includes a recursively nested message.", "properties": { "child": { "$ref": "bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json" diff --git a/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json b/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json index 26ef65a..9c403a2 100644 --- a/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json +++ b/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json @@ -4,6 +4,7 @@ "additionalProperties": false, "properties": { "bb": { + "description": "The field name \"b\" fails to compile in proto1 because it conflicts with\n a local variable named \"b\" in one of the generated methods.\n This file needs to compile in proto1 to test backwards-compatibility.", "exclusiveMaximum": 2147483648, "minimum": -2147483648, "type": "integer" diff --git a/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json b/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json index 637d30f..34e8dd2 100644 --- a/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json +++ b/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json @@ -2,6 +2,7 @@ "$id": "bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, + "description": "This proto includes every type of field in both singular and repeated\n forms.", "properties": { "list_value": { "$ref": "google.protobuf.ListValue.schema.json" @@ -1081,6 +1082,7 @@ "additionalProperties": { "$ref": "bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json" }, + "description": "Map", "propertyNames": { "anyOf": [ { @@ -2398,6 +2400,7 @@ ] }, "repeated_any": { + "description": "Repeated wellknown.", "items": { "$ref": "google.protobuf.Any.schema.json" }, @@ -2511,6 +2514,7 @@ "type": "array" }, "repeated_int32": { + "description": "Repeated", "items": { "exclusiveMaximum": 2147483648, "minimum": -2147483648, @@ -2580,6 +2584,7 @@ "type": "array" }, "repeated_nested_message": { + "description": "Repeated and nested", "items": { "$ref": "bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json" }, @@ -2717,7 +2722,8 @@ "type": "array" }, "single_any": { - "$ref": "google.protobuf.Any.schema.json" + "$ref": "google.protobuf.Any.schema.json", + "description": "Wellknown." }, "single_bool": { "type": "boolean" @@ -2788,6 +2794,7 @@ "$ref": "google.protobuf.FloatValue.schema.json" }, "single_int32": { + "description": "Singular", "exclusiveMaximum": 2147483648, "minimum": -2147483648, "type": "integer" diff --git a/internal/testdata/jsonschema/google.protobuf.BoolValue.schema.json b/internal/testdata/jsonschema/google.protobuf.BoolValue.schema.json index 1536e27..00b3846 100644 --- a/internal/testdata/jsonschema/google.protobuf.BoolValue.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.BoolValue.schema.json @@ -1,6 +1,7 @@ { "$id": "google.protobuf.BoolValue.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", + "description": "The bool value.", "title": "Bool Value", "type": "boolean" } diff --git a/internal/testdata/jsonschema/google.protobuf.BytesValue.schema.json b/internal/testdata/jsonschema/google.protobuf.BytesValue.schema.json index e240460..7abb2b9 100644 --- a/internal/testdata/jsonschema/google.protobuf.BytesValue.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.BytesValue.schema.json @@ -1,6 +1,7 @@ { "$id": "google.protobuf.BytesValue.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", + "description": "The bytes value.", "pattern": "^[A-Za-z0-9+/]*={0,2}$", "title": "Bytes Value", "type": "string" diff --git a/internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.json b/internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.json index 0498254..e7ca350 100644 --- a/internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.json @@ -17,5 +17,6 @@ "type": "string" } ], + "description": "The double value.", "title": "Double Value" } diff --git a/internal/testdata/jsonschema/google.protobuf.FloatValue.schema.json b/internal/testdata/jsonschema/google.protobuf.FloatValue.schema.json index 8f71f3f..071c7b9 100644 --- a/internal/testdata/jsonschema/google.protobuf.FloatValue.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.FloatValue.schema.json @@ -17,5 +17,6 @@ "type": "string" } ], + "description": "The float value.", "title": "Float Value" } diff --git a/internal/testdata/jsonschema/google.protobuf.Int32Value.schema.json b/internal/testdata/jsonschema/google.protobuf.Int32Value.schema.json index 6a9274d..e5af964 100644 --- a/internal/testdata/jsonschema/google.protobuf.Int32Value.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.Int32Value.schema.json @@ -1,6 +1,7 @@ { "$id": "google.protobuf.Int32Value.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", + "description": "The int32 value.", "exclusiveMaximum": 2147483648, "minimum": -2147483648, "title": "Int32 Value", diff --git a/internal/testdata/jsonschema/google.protobuf.Int64Value.schema.json b/internal/testdata/jsonschema/google.protobuf.Int64Value.schema.json index 9e96427..160d6e3 100644 --- a/internal/testdata/jsonschema/google.protobuf.Int64Value.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.Int64Value.schema.json @@ -12,5 +12,6 @@ "type": "string" } ], + "description": "The int64 value.", "title": "Int64 Value" } diff --git a/internal/testdata/jsonschema/google.protobuf.StringValue.schema.json b/internal/testdata/jsonschema/google.protobuf.StringValue.schema.json index ab61bf6..0ad29ed 100644 --- a/internal/testdata/jsonschema/google.protobuf.StringValue.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.StringValue.schema.json @@ -1,6 +1,7 @@ { "$id": "google.protobuf.StringValue.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", + "description": "The string value.", "title": "String Value", "type": "string" } diff --git a/internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.json b/internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.json index 15c97cf..4f47ac1 100644 --- a/internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.json @@ -1,6 +1,7 @@ { "$id": "google.protobuf.UInt32Value.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", + "description": "The uint32 value.", "exclusiveMaximum": 4294967296, "minimum": 0, "title": "U Int32 Value", diff --git a/internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.json b/internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.json index 07baa2d..22226c9 100644 --- a/internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.json +++ b/internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.json @@ -1,6 +1,7 @@ { "$id": "google.protobuf.UInt64Value.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", + "description": "The uint64 value.", "exclusiveMaximum": 18446744073709552000, "minimum": 0, "title": "U Int64 Value", diff --git a/internal/testdata/pubsub/buf.protoschema.test.v1.IgnoreField.pubsub.proto b/internal/testdata/pubsub/buf.protoschema.test.v1.IgnoreField.pubsub.proto new file mode 100644 index 0000000..34c71bd --- /dev/null +++ b/internal/testdata/pubsub/buf.protoschema.test.v1.IgnoreField.pubsub.proto @@ -0,0 +1,6 @@ +syntax = "proto2"; +message IgnoreField { + optional string string_field = 1; + optional int32 int32_field = 2; + optional bool bool_field = 3; +}