mirror of https://github.com/databricks/cli.git
cleanup todos
This commit is contained in:
parent
ad7503a176
commit
40f4d35c4a
|
@ -27,7 +27,6 @@ func addInterpolationPatterns(typ reflect.Type, s jsonschema.Schema) jsonschema.
|
||||||
return jsonschema.Schema{
|
return jsonschema.Schema{
|
||||||
AnyOf: []jsonschema.Schema{s, {
|
AnyOf: []jsonschema.Schema{s, {
|
||||||
Type: jsonschema.StringType,
|
Type: jsonschema.StringType,
|
||||||
// TODO: Are multi-level complex variable references supported?
|
|
||||||
Pattern: interpolationPattern("var"),
|
Pattern: interpolationPattern("var"),
|
||||||
}},
|
}},
|
||||||
}
|
}
|
||||||
|
@ -36,7 +35,6 @@ func addInterpolationPatterns(typ reflect.Type, s jsonschema.Schema) jsonschema.
|
||||||
// or ${workspace.xyz}
|
// or ${workspace.xyz}
|
||||||
return jsonschema.Schema{
|
return jsonschema.Schema{
|
||||||
AnyOf: []jsonschema.Schema{s,
|
AnyOf: []jsonschema.Schema{s,
|
||||||
// TODO: Is it only resource IDs or is it resources in general?
|
|
||||||
{Type: jsonschema.StringType, Pattern: interpolationPattern("resources")},
|
{Type: jsonschema.StringType, Pattern: interpolationPattern("resources")},
|
||||||
{Type: jsonschema.StringType, Pattern: interpolationPattern("bundle")},
|
{Type: jsonschema.StringType, Pattern: interpolationPattern("bundle")},
|
||||||
{Type: jsonschema.StringType, Pattern: interpolationPattern("workspace")},
|
{Type: jsonschema.StringType, Pattern: interpolationPattern("workspace")},
|
||||||
|
|
|
@ -13,7 +13,8 @@ import (
|
||||||
|
|
||||||
// defines schema for a json object
|
// defines schema for a json object
|
||||||
type Schema struct {
|
type Schema struct {
|
||||||
// TODO: Comments for this field
|
// Definitions that can be reused and referenced throughout the schema. The
|
||||||
|
// syntax for a reference is $ref: #/$defs/<path.to.definition>
|
||||||
Definitions any `json:"$defs,omitempty"`
|
Definitions any `json:"$defs,omitempty"`
|
||||||
|
|
||||||
// Type of the object
|
// Type of the object
|
||||||
|
|
Loading…
Reference in New Issue