github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/proto3GroupsAvoid/valid.proto (about)

     1  syntax = "proto3";
     2  
     3  message SearchResponse {
     4    message Result {
     5      string url = 1;
     6      optional string title = 2;
     7      repeated string snippets = 3;
     8    }
     9  }