18 lines
809 B
Go
18 lines
809 B
Go
package schema
|
|
|
|
// StoreItem represents an item of store
|
|
type StoreItem struct {
|
|
Icon string `json:"icon"`
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
Image string `json:"image"`
|
|
Name string `json:"name"`
|
|
Fprocess string `json:"fprocess"`
|
|
Network string `json:"network"`
|
|
RepoURL string `json:"repo_url"`
|
|
Environment map[string]string `json:"environment"`
|
|
Labels map[string]string `json:"labels"`
|
|
Annotations map[string]string `json:"annotations"`
|
|
ReadOnlyRootFilesystem bool `json:"readOnlyRootFilesystem"`
|
|
}
|