github.com/solo-io/cue@v0.4.7/encoding/openapi/testdata/nested-in-oneof.cue (about)

     1  
     2  #A: {
     3  	#B: {}
     4  	#C: {
     5  		b?: #B @protobuf(1,B)
     6  	}
     7  	{} | {
     8  		c: #C @protobuf(1,C)
     9  	}
    10  }