Files
kubevela/references/cuegen/testdata/nullable.cue
2023-03-24 16:24:05 +08:00

15 lines
243 B
CUE

package testdata
Nullable: {
field1?: null | string
field2?: null | int
field3?: null | bool
Field4: null | {
field1: null | string
field2: null | int
field3: null | bool
}
field5?: null | [...string]
field6?: null | [...int]
}