github.com/solo-io/cue@v0.4.7/encoding/protobuf/jsonpb/testdata/encoder/struct.txtar (about)

     1  -- schema.cue --
     2  a: {
     3      {b: int @protobuf(1,int64)}
     4  
     5      c: int @protobuf(1,int64)
     6  
     7      {d: int @protobuf(1,int32)}
     8  
     9      e: int @protobuf(1,int32)
    10  
    11  }
    12  -- value.cue --
    13  // Hello
    14  a: {
    15      b: 1
    16      c: 2
    17      d: 3
    18      e: 4
    19  }
    20  
    21  -- out/jsonpb --
    22  // Hello
    23  a: {
    24  	b: "1"
    25  	c: "2"
    26  	d: 3
    27  	e: 4
    28  }