From 387b9d40c31b1cb15f88379339df8bd385a5bc6f Mon Sep 17 00:00:00 2001 From: Brandon Mitchell Date: Tue, 31 May 2022 15:05:55 -0400 Subject: [PATCH] Refers is a pointer Signed-off-by: Brandon Mitchell --- specs-go/v1/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs-go/v1/manifest.go b/specs-go/v1/manifest.go index cd595625..1cfaf3f4 100644 --- a/specs-go/v1/manifest.go +++ b/specs-go/v1/manifest.go @@ -34,5 +34,5 @@ type Manifest struct { Annotations map[string]string `json:"annotations,omitempty"` // Refers links a manifest to another existing manifest. - Refers Descriptor `json:"refers,omitempty"` + Refers *Descriptor `json:"refers,omitempty"` }