osbuild: name in containers input is not optional
Remove the `omitempty` from the name field in the containers input. It is required.
This commit is contained in:
parent
7edbaf6b43
commit
ad2a5bff7c
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ type ContainersInputReferences interface {
|
|||
}
|
||||
|
||||
type ContainersInputSourceRef struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
type ContainersInputSourceMap map[string]ContainersInputSourceRef
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue