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

     1  #CaptureMode: {
     2  	"DEFAULT"
     3  	#enumValue: 0
     4  } | {
     5  	"IPTABLES"
     6  	#enumValue: 1
     7  } | {
     8  	"NONE"
     9  	#enumValue: 2
    10  }