github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/trust/config.go (about) 1 package trust 2 3 // Policy describes a basic trust policy configuration 4 type Policy struct { 5 Name string `json:"name"` 6 RepoName string `json:"repo_name,omitempty"` 7 Keys []string `json:"keys,omitempty"` 8 SignatureStore string `json:"sigstore"` 9 Transport string `json:"transport"` 10 Type string `json:"type"` 11 GPGId string `json:"gpg_id,omitempty"` 12 }