mirror of https://github.com/databricks/cli.git
12 lines
236 B
Go
12 lines
236 B
Go
|
package schema
|
||
|
|
||
|
import "github.com/databricks/cli/libs/jsonschema"
|
||
|
|
||
|
type Specification struct {
|
||
|
Components *Components `json:"components"`
|
||
|
}
|
||
|
|
||
|
type Components struct {
|
||
|
Schemas map[string]*jsonschema.Schema `json:"schemas,omitempty"`
|
||
|
}
|