Skip to content

Commit

Permalink
Fixing the JSON field name
Browse files Browse the repository at this point in the history
Typo is causing issues when trying to mark fields are required.
  • Loading branch information
ryanrolds authored and stevenferrer committed May 8, 2024
1 parent 0f7f3b4 commit 51a28c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type Field struct {
Indexed bool `json:"indexed,omitempty"`
Stored bool `json:"stored,omitempty"`
MultiValued bool `json:"multiValued,omitempty"`
Required bool `json:"requied,omitempty"`
Required bool `json:"required,omitempty"`
UseDocValuesAsStored bool `json:"useDocValuesAsStored,omitempty"`
}

Expand Down

0 comments on commit 51a28c0

Please sign in to comment.