mirror of https://github.com/databricks/cli.git
20 lines
393 B
JSON
20 lines
393 B
JSON
|
{
|
||
|
"properties": {
|
||
|
"int_val": {
|
||
|
"type": "integer",
|
||
|
"default": 123
|
||
|
},
|
||
|
"float_val": {
|
||
|
"type": "number"
|
||
|
},
|
||
|
"bool_val": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"string_val": {
|
||
|
"type": "string",
|
||
|
"default": "abc"
|
||
|
}
|
||
|
},
|
||
|
"required": ["int_val", "float_val", "bool_val"]
|
||
|
}
|