databricks-cli/cmd/init/Untitled-1.json

22 lines
445 B
JSON
Raw Normal View History

2023-05-15 09:25:01 +00:00
{
"foo": {
"type": "string",
"default": "abc",
"validation": ["regex ^[abcd]*$"]
},
"bar": {
"type": "integer",
"default": 123,
"validation": ["greaterThan 5", "lessThan 10"]
},
"isAws": {
"type": "boolean",
"default": true
},
"project_name": {
"type": "string",
"default": "my_project",
"validation": ["startsWith my_"]
}
}