github.com/oam-dev/kubevela@v1.9.11/references/cuegen/testdata/nullable.cue (about) 1 package testdata 2 3 Nullable: { 4 field1?: null | string 5 field2?: null | int 6 field3?: null | bool 7 Field4: null | { 8 field1: null | string 9 field2: null | int 10 field3: null | bool 11 } 12 field5?: null | [...string] 13 field6?: null | [...int] 14 }