mirror of https://github.com/databricks/cli.git
corrected item typo
This commit is contained in:
parent
cc5ed2bc76
commit
babd7fa4eb
|
@ -17,7 +17,7 @@ type Schema struct {
|
||||||
|
|
||||||
type Property struct {
|
type Property struct {
|
||||||
Type JsType `json:"type"`
|
Type JsType `json:"type"`
|
||||||
Items *Item `json:"item,omitempty"`
|
Items *Item `json:"items,omitempty"`
|
||||||
Properities map[string]*Property `json:"properties,omitempty"`
|
Properities map[string]*Property `json:"properties,omitempty"`
|
||||||
AdditionalProperities *Property `json:"additionalProperties,omitempty"`
|
AdditionalProperities *Property `json:"additionalProperties,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,7 +136,7 @@ func TestObjectSchema(t *testing.T) {
|
||||||
"properties": {
|
"properties": {
|
||||||
"stakes": {
|
"stakes": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"item": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue