blob: 0313e6d34d846354e0884e1c636f0e1b8bf8d437 [file] [log] [blame]
-- emptyanyof.json --
{
"$defs": {
"shell": {
"description": "Specify a shell.",
"type": "string",
"anyOf": [
{
},
{
"enum": [
"bash",
"sh",
"cmd",
"powershell"
]
}
]
}
}
}
-- out.cue --
_
#shell: (string | ("bash" | "sh" | "cmd" | "powershell")) & string