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 JsType `json:"type"`
|
||||
Items *Item `json:"item,omitempty"`
|
||||
Items *Item `json:"items,omitempty"`
|
||||
Properities map[string]*Property `json:"properties,omitempty"`
|
||||
AdditionalProperities *Property `json:"additionalProperties,omitempty"`
|
||||
}
|
||||
|
|
|
@ -136,7 +136,7 @@ func TestObjectSchema(t *testing.T) {
|
|||
"properties": {
|
||||
"stakes": {
|
||||
"type": "array",
|
||||
"item": {
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue