mirror of https://github.com/databricks/cli.git
25 lines
612 B
JSON
25 lines
612 B
JSON
|
{
|
||
|
"properties": {
|
||
|
"int_val": {
|
||
|
"type": "integer",
|
||
|
"description": "This is an integer value",
|
||
|
"default": 123
|
||
|
},
|
||
|
"float_val": {
|
||
|
"type": "number",
|
||
|
"description": "This is a float value",
|
||
|
"default": 123
|
||
|
},
|
||
|
"bool_val": {
|
||
|
"type": "boolean",
|
||
|
"description": "This is a boolean value",
|
||
|
"default": true
|
||
|
},
|
||
|
"string_val": {
|
||
|
"type": "string",
|
||
|
"description": "This is a string value",
|
||
|
"default": "hello"
|
||
|
}
|
||
|
}
|
||
|
}
|