Browse Source

Fix JSON Casing (#3462)

Signed-off-by: Nik Willwerth <nwillwerth@kubecost.com>
nik-kc 6 months ago
parent
commit
e5e045db86
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/cloudcost/status.go

+ 1 - 1
pkg/cloudcost/status.go

@@ -15,7 +15,7 @@ type Status struct {
 	Valid            bool               `json:"valid"`
 	Valid            bool               `json:"valid"`
 	LastRun          time.Time          `json:"lastRun"`
 	LastRun          time.Time          `json:"lastRun"`
 	NextRun          time.Time          `json:"nextRun"`
 	NextRun          time.Time          `json:"nextRun"`
-	RefreshRate      string             `json:"RefreshRate"`
+	RefreshRate      string             `json:"refreshRate"`
 	Created          time.Time          `json:"created"`
 	Created          time.Time          `json:"created"`
 	Runs             int                `json:"runs"`
 	Runs             int                `json:"runs"`
 	Coverage         string             `json:"coverage"`
 	Coverage         string             `json:"coverage"`