2024-11-20 13:31:46 +00:00
|
|
|
package storage
|
|
|
|
|
2025-02-10 11:07:54 +00:00
|
|
|
import "time"
|
|
|
|
|
2024-11-20 13:31:46 +00:00
|
|
|
type Diag struct {
|
2025-02-11 09:16:42 +00:00
|
|
|
ID string `json:"id" bson:"_id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Namespace string `json:"namespace"`
|
|
|
|
Json_schema string `json:"json_schema"`
|
|
|
|
Ui_schema string `json:"ui_schema"`
|
|
|
|
Data map[string]any `json:"data"`
|
|
|
|
Deleted bool `json:"deleted"`
|
|
|
|
Diagdate time.Time `json:"diagdate"`
|
|
|
|
Owners []string `json:"owners"`
|
2024-11-20 13:31:46 +00:00
|
|
|
}
|