mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-19 07:46:51 +00:00
15 lines
243 B
CUE
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]
|
|
}
|