60 lines
2.1 KiB
Go
60 lines
2.1 KiB
Go
|
package schema
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type DashboardCreateRequest struct {
|
||
|
Dashboard any `json:"dasboard"`
|
||
|
FolderID uint `json:"folderId,omitempty"`
|
||
|
FolderUID string `json:"folderUid"`
|
||
|
Message string `json:"message,omitempty"`
|
||
|
Overwrite bool `json:"overwrite"`
|
||
|
}
|
||
|
|
||
|
type DashboardCreateResponse struct {
|
||
|
DashboardID uint `json:"id"`
|
||
|
DashboardUID string `json:"uid"`
|
||
|
URL string `json:"url"`
|
||
|
Status string `json:"status"`
|
||
|
Version uint `json:"version"`
|
||
|
Slug string `json:"slug"`
|
||
|
}
|
||
|
|
||
|
type DashboardMeta struct {
|
||
|
IsStarred bool `json:"isStarred"`
|
||
|
Type string `json:"type"`
|
||
|
CanSave bool `json:"canSave"`
|
||
|
CanEdit bool `json:"canEdit"`
|
||
|
CanAdmin bool `json:"canAdmin"`
|
||
|
CanStar bool `json:"canStar"`
|
||
|
CanDelete bool `json:"canDelete"`
|
||
|
Slug string `json:"slug"`
|
||
|
URL string `json:"url"`
|
||
|
Expires time.Time `json:"expires"`
|
||
|
Created time.Time `json:"created"`
|
||
|
Updated time.Time `json:"updated"`
|
||
|
UpdatedBy string `json:"updatedBy"`
|
||
|
CreatedBy string `json:"createdBy"`
|
||
|
Version uint `json:"version"`
|
||
|
HasACL bool `json:"hasAcl"`
|
||
|
IsFolder bool `json:"isFolder"`
|
||
|
FolderID uint `json:"folderId"`
|
||
|
FolderUID string `json:"folderUid"`
|
||
|
FolderTitle string `json:"folderTitle"`
|
||
|
FolderURL string `json:"folderUrl"`
|
||
|
Provisioned bool `json:"provisioned"`
|
||
|
ProvisionedExternalID string `json:"provisionedExternalId"`
|
||
|
AnnotationsPermissions struct {
|
||
|
Dashboard struct {
|
||
|
CanAdd bool `json:"canAdd"`
|
||
|
CanEdit bool `json:"canEdit"`
|
||
|
CanDelete bool `json:"canDelete"`
|
||
|
} `json:"dashboard"`
|
||
|
Organization struct {
|
||
|
CanAdd bool `json:"canAdd"`
|
||
|
CanEdit bool `json:"canEdit"`
|
||
|
CanDelete bool `json:"canDelete"`
|
||
|
} `json:"organization"`
|
||
|
} `json:"annotationsPermissions"`
|
||
|
Dashboard any `json:"dashboard"`
|
||
|
}
|