From 93b5f1860fed0e5f556720892ea6fe2afeed92c0 Mon Sep 17 00:00:00 2001 From: Dave Cunningham Date: Wed, 16 Mar 2016 23:38:33 -0400 Subject: [PATCH] Adjust chart representation to have schema as a separate file on disk. --- pkg/common/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/common/types.go b/pkg/common/types.go index b7dbe6fc0..2693f8910 100644 --- a/pkg/common/types.go +++ b/pkg/common/types.go @@ -115,7 +115,7 @@ type ChartFile struct { type Chart struct { Name string `json:"name"` Expander *Expander `json:"expander"` - Schema interface{} `json:"schema"` + Schema string `json:"schema"` Files []*ChartFile `json:"files"` }