Add Owners in Diags
Build and Push Docker Image / build_and_push (push) Successful in 1m31s
Details
Build and Push Docker Image / build_and_push (push) Successful in 1m31s
Details
This commit is contained in:
parent
291671c295
commit
56bd7af62d
|
@ -3,13 +3,13 @@ package storage
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
type Diag struct {
|
type Diag struct {
|
||||||
ID string `json:"id" bson:"_id"`
|
ID string `json:"id" bson:"_id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Namespace string `json:"namespace"`
|
Namespace string `json:"namespace"`
|
||||||
Json_schema string `json:"json_schema"`
|
Json_schema string `json:"json_schema"`
|
||||||
Ui_schema string `json:"ui_schema"`
|
Ui_schema string `json:"ui_schema"`
|
||||||
Data map[string]any `json:"data"`
|
Data map[string]any `json:"data"`
|
||||||
Deleted bool `json:"deleted"`
|
Deleted bool `json:"deleted"`
|
||||||
Diagdate time.Time `json:"diagdate"`
|
Diagdate time.Time `json:"diagdate"`
|
||||||
Owners string `json:"owners"`
|
Owners []string `json:"owners"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue