mirror of https://github.com/databricks/cli.git
32 lines
648 B
JSON
32 lines
648 B
JSON
|
{
|
||
|
"anyOf": [
|
||
|
{
|
||
|
"properties": {
|
||
|
"foo": {
|
||
|
"type": "string",
|
||
|
"const": "abc"
|
||
|
},
|
||
|
"bar": {
|
||
|
"type": "string",
|
||
|
"const": "abc"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"foo",
|
||
|
"bar"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"properties": {
|
||
|
"bar": {
|
||
|
"type": "string",
|
||
|
"const": "def"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"foo"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|