14287: Remove omitempty tags so zeroes/nulls appear in responses.
[arvados.git] / sdk / go / arvados / node.go
index cc844fe8253c1684dcec9b006659b8a08e84e8cf..97466eb8ae8bc44863cf4711582268108772bbf6 100644 (file)
@@ -12,10 +12,10 @@ type Node struct {
        Domain     string         `json:"domain"`
        Hostname   string         `json:"hostname"`
        IPAddress  string         `json:"ip_address"`
-       LastPingAt *time.Time     `json:"last_ping_at,omitempty"`
+       LastPingAt *time.Time     `json:"last_ping_at"`
        SlotNumber int            `json:"slot_number"`
        Status     string         `json:"status"`
-       JobUUID    string         `json:"job_uuid,omitempty"`
+       JobUUID    string         `json:"job_uuid"`
        Properties NodeProperties `json:"properties"`
 }