databricks-cli/libs/template/templates/default-python/databricks_template_schema....

34 lines
1.1 KiB
JSON
Raw Normal View History

{
"properties": {
"project_name": {
"type": "string",
"default": "my_project",
"description": "Unique name for this project",
"order": 1,
"pattern": "^[A-Za-z0-9_]*$",
"pattern_match_failure_message": "Must consist of letter and underscores only."
},
"include_notebook": {
"type": "string",
"default": "yes",
"enum": ["yes", "no"],
"description": "Include a stub (sample) notebook in 'my_project/src'",
"order": 2
},
"include_dlt": {
"type": "string",
"default": "yes",
"enum": ["yes", "no"],
"description": "Include a stub (sample) DLT pipeline in 'my_project/src'",
"order": 3
},
"include_python": {
"type": "string",
"default": "yes",
"enum": ["yes", "no"],
"description": "Include a stub (sample) Python package 'my_project/src'",
"order": 4
}
}
}